In [1]:
pip install requests
Requirement already satisfied: requests in c:\users\a k sharma\anaconda3\lib\site-packages (2.31.0) Requirement already satisfied: charset-normalizer<4,>=2 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests) (2.0.4) Requirement already satisfied: idna<4,>=2.5 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests) (2.0.7) Requirement already satisfied: certifi>=2017.4.17 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests) (2024.2.2) Note: you may need to restart the kernel to use updated packages.
In [12]:
pip install beautifulsoup4
Requirement already satisfied: beautifulsoup4 in c:\users\a k sharma\anaconda3\lib\site-packages (4.12.2) Requirement already satisfied: soupsieve>1.2 in c:\users\a k sharma\anaconda3\lib\site-packages (from beautifulsoup4) (2.5) Note: you may need to restart the kernel to use updated packages.
In [19]:
import requests
r=requests.get('https://www.imdb.com/list/ls056092300/', headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36', })
from bs4 import BeautifulSoup
soup=BeautifulSoup(r.content, 'html.parser')
titles=soup.find_all('h3',class_='ipc-title__text')
year_of_release=soup.find_all('span',class_='sc-b189961a-8 kLaxqf dli-title-metadata-item')
ratings=soup.find_all('span',class_='ipc-rating-star ipc-rating-star--base ipc-rating-star--imdb ratingGroup--imdb-rating')
title_list=[title.text for title in titles]
year_of_release_list=[year.text.strip('()') for year in year_of_release]
rating_list=[rating.text for rating in ratings]
print(title_list,year_of_release_list,rating_list)
['1. Ship of Theseus', '2. Iruvar', '3. Kaagaz Ke Phool', '4. Lagaan: Once Upon a Time in India', '5. Pather Panchali', '6. Charulata', '7. Rang De Basanti', '8. Dev.D', '9. 3 Idiots', '10. Awaara', '11. Nayakan', '12. Aparajito', '13. Pushpaka Vimana', '14. Pyaasa', '15. Ghatashraddha', '16. Sholay', '17. Aradhana', '18. Do Ankhen Barah Haath', '19. Bombay', '20. Neecha Nagar', '21. Do Bigha Zamin', '22. Garm Hava', '23. Piravi', '24. Mughal-E-Azam', '25. Amma Ariyan', 'More to explore', 'Recently viewed'] ['2012', '2h 19m', 'UA', '1997', '2h 20m', 'UA', '1959', '2h 28m', 'U', '2001', '3h 44m', 'U', '1955', '2h 5m', 'U', '1964', '1h 57m', 'U', '2006', '2h 47m', 'UA', '2009', '2h 24m', 'A', '2009', '2h 50m', 'UA', '1951', '3h 13m', 'U', '1987', '2h 36m', 'A', '1956', '1h 50m', 'U', '1987', '2h 5m', 'U', '1957', '2h 26m', 'U', '1977', '2h 24m', 'A', '1975', '3h 24m', 'U', '1969', '2h 49m', 'U', '1957', '2h 23m', 'U', '1995', '2h 21m', 'U', '1946', '2h 2m', 'U', '1953', '2h 11m', 'U', '1974', '2h 26m', 'Banned', '1989', '1h 50m', 'Unrated', '1960', '3h 17m', 'PG', '1986', '1h 55m'] ['8.0\xa0(7.8K)', '8.4\xa0(7.4K)', '7.8\xa0(2.8K)', '8.1\xa0(121K)', '8.2\xa0(39K)', '8.1\xa0(7.3K)', '8.1\xa0(123K)', '7.9\xa0(32K)', '8.4\xa0(437K)', '7.8\xa0(4.5K)', '8.7\xa0(24K)', '8.2\xa0(16K)', '8.6\xa0(3.8K)', '8.3\xa0(7.3K)', '7.5\xa0(164)', '8.1\xa0(59K)', '7.6\xa0(2K)', '8.4\xa0(1.9K)', '8.1\xa0(14K)', '6.6\xa0(278)', '8.3\xa0(2.3K)', '8.0\xa0(837)', '7.8\xa0(297)', '8.1\xa0(8.9K)', '7.4\xa0(219)']
In [21]:
import re
In [28]:
year_list=', '.join(year_of_release_list)
year_list
Out[28]:
'2012, 2h 19m, UA, 1997, 2h 20m, UA, 1959, 2h 28m, U, 2001, 3h 44m, U, 1955, 2h 5m, U, 1964, 1h 57m, U, 2006, 2h 47m, UA, 2009, 2h 24m, A, 2009, 2h 50m, UA, 1951, 3h 13m, U, 1987, 2h 36m, A, 1956, 1h 50m, U, 1987, 2h 5m, U, 1957, 2h 26m, U, 1977, 2h 24m, A, 1975, 3h 24m, U, 1969, 2h 49m, U, 1957, 2h 23m, U, 1995, 2h 21m, U, 1946, 2h 2m, U, 1953, 2h 11m, U, 1974, 2h 26m, Banned, 1989, 1h 50m, Unrated, 1960, 3h 17m, PG, 1986, 1h 55m'
In [29]:
ratings_list=', '.join(rating_list)
ratings_list
Out[29]:
'8.0\xa0(7.8K), 8.4\xa0(7.4K), 7.8\xa0(2.8K), 8.1\xa0(121K), 8.2\xa0(39K), 8.1\xa0(7.3K), 8.1\xa0(123K), 7.9\xa0(32K), 8.4\xa0(437K), 7.8\xa0(4.5K), 8.7\xa0(24K), 8.2\xa0(16K), 8.6\xa0(3.8K), 8.3\xa0(7.3K), 7.5\xa0(164), 8.1\xa0(59K), 7.6\xa0(2K), 8.4\xa0(1.9K), 8.1\xa0(14K), 6.6\xa0(278), 8.3\xa0(2.3K), 8.0\xa0(837), 7.8\xa0(297), 8.1\xa0(8.9K), 7.4\xa0(219)'
In [30]:
titles_list=', '.join(title_list)
titles_list
Out[30]:
'1. Ship of Theseus, 2. Iruvar, 3. Kaagaz Ke Phool, 4. Lagaan: Once Upon a Time in India, 5. Pather Panchali, 6. Charulata, 7. Rang De Basanti, 8. Dev.D, 9. 3 Idiots, 10. Awaara, 11. Nayakan, 12. Aparajito, 13. Pushpaka Vimana, 14. Pyaasa, 15. Ghatashraddha, 16. Sholay, 17. Aradhana, 18. Do Ankhen Barah Haath, 19. Bombay, 20. Neecha Nagar, 21. Do Bigha Zamin, 22. Garm Hava, 23. Piravi, 24. Mughal-E-Azam, 25. Amma Ariyan, More to explore, Recently viewed'
In [39]:
pattern=re.compile('\d{4}')
yl=pattern.findall(year_list)
print(yl)
['2012', '1997', '1959', '2001', '1955', '1964', '2006', '2009', '2009', '1951', '1987', '1956', '1987', '1957', '1977', '1975', '1969', '1957', '1995', '1946', '1953', '1974', '1989', '1960', '1986']
In [40]:
pattern=re.compile('\d\.\d+(?=\s*\()')
rl=pattern.findall(ratings_list)
print(rl)
['8.0', '8.4', '7.8', '8.1', '8.2', '8.1', '8.1', '7.9', '8.4', '7.8', '8.7', '8.2', '8.6', '8.3', '7.5', '8.1', '7.6', '8.4', '8.1', '6.6', '8.3', '8.0', '7.8', '8.1', '7.4']
In [58]:
pattern=re.compile('\d+\.\s[^,]+')
tl=pattern.findall(titles_list)
print(tl)
['1. Ship of Theseus', '2. Iruvar', '3. Kaagaz Ke Phool', '4. Lagaan: Once Upon a Time in India', '5. Pather Panchali', '6. Charulata', '7. Rang De Basanti', '8. Dev.D', '9. 3 Idiots', '10. Awaara', '11. Nayakan', '12. Aparajito', '13. Pushpaka Vimana', '14. Pyaasa', '15. Ghatashraddha', '16. Sholay', '17. Aradhana', '18. Do Ankhen Barah Haath', '19. Bombay', '20. Neecha Nagar', '21. Do Bigha Zamin', '22. Garm Hava', '23. Piravi', '24. Mughal-E-Azam', '25. Amma Ariyan']
In [52]:
import pandas as pd
In [53]:
movies={'Title':tl,'Year of Release':yl,'Rating':rl}
In [54]:
best_100_movies_list=pd.DataFrame(movies)
best_100_movies_list
Out[54]:
| Title | Year of Release | Rating | |
|---|---|---|---|
| 0 | 1. Ship of Theseus | 2012 | 8.0 |
| 1 | 2. Iruvar | 1997 | 8.4 |
| 2 | 3. Kaagaz Ke Phool | 1959 | 7.8 |
| 3 | 4. Lagaan: Once Upon a Time in India | 2001 | 8.1 |
| 4 | 5. Pather Panchali | 1955 | 8.2 |
| 5 | 6. Charulata | 1964 | 8.1 |
| 6 | 7. Rang De Basanti | 2006 | 8.1 |
| 7 | 8. Dev.D | 2009 | 7.9 |
| 8 | 9. 3 Idiots | 2009 | 8.4 |
| 9 | 10. Awaara | 1951 | 7.8 |
| 10 | 11. Nayakan | 1987 | 8.7 |
| 11 | 12. Aparajito | 1956 | 8.2 |
| 12 | 13. Pushpaka Vimana | 1987 | 8.6 |
| 13 | 14. Pyaasa | 1957 | 8.3 |
| 14 | 15. Ghatashraddha | 1977 | 7.5 |
| 15 | 16. Sholay | 1975 | 8.1 |
| 16 | 17. Aradhana | 1969 | 7.6 |
| 17 | 18. Do Ankhen Barah Haath | 1957 | 8.4 |
| 18 | 19. Bombay | 1995 | 8.1 |
| 19 | 20. Neecha Nagar | 1946 | 6.6 |
| 20 | 21. Do Bigha Zamin | 1953 | 8.3 |
| 21 | 22. Garm Hava | 1974 | 8.0 |
| 22 | 23. Piravi | 1989 | 7.8 |
| 23 | 24. Mughal-E-Azam | 1960 | 8.1 |
| 24 | 25. Amma Ariyan | 1986 | 7.4 |
In [18]:
import requests
from bs4 import BeautifulSoup
r=requests.get('https://www.patreon.com/coreyms/posts', headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36'})
print(r)
<Response [200]>
In [19]:
soup=BeautifulSoup(r.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<script type="text/javascript">
window.patreonConfig = {"apiServer":"www.patreon.com/api","nionDisableDefaultIncludes":true,"formattingLocale":"en-US","eventLoggingPlatform":"Web","isWebView":false,"pathname":"/\u003cstring:campaign_identifier\u003e","is_impersonating":false,"csrfSignature":"RjKS63EcIVt9KEVO0PrFrAQSBbVFSC1ss5Gcy02Fc1k"};
</script>
<meta content="width=device-width, initial-scale=1.0, viewport-fit=cover" name="viewport"/>
<meta content="artists, creators, patron, sponsor, music, videos" name="keywords"/>
<meta content="201564" property="fb:admins"/>
<meta content="130127590512253" property="fb:app_id"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="@Patreon" property="twitter:site"/>
<meta content="Patreon" property="og:site-name"/>
<meta content="Patreon" prefix="og: http://ogp.me/ns#" property="og:site_name"/>
<meta content="Patreon" name="apple-mobile-web-app-title"/>
<meta content="Patreon" name="application-name"/>
<link as="fetch" href="https://www.patreon.com/api/experiments/assignments?json-api-version=1.0&json-api-use-default-includes=false&include=[]" rel="prefetch"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/pwa-192.png?v=af5597c2ef" rel="apple-touch-icon" sizes="180x180"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/favicon-32.png?v=af5597c2ef" rel="icon" sizes="32x32" type="image/png"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/favicon-16.png?v=af5597c2ef" rel="icon" sizes="16x16" type="image/png"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/manifest.json?v=af5597c2ef" rel="manifest"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/favicon.svg?v=af5597c2ef" rel="icon" type="image/svg+xml"/>
<link href="https://c5.patreon.com/external/favicon/rebrand/favicon.ico?v=af5597c2ef" rel="shortcut icon"/>
<meta content="https://c5.patreon.com/external/favicon/rebrand/browserconfig.xml?v=af5597c2ef" name="msapplication-config"/>
<meta content="#f5f5f5" name="theme-color"/>
<meta content="#f5f5f5" name="msapplication-TileColor"/>
<title>
Corey Schafer | creating Programming Tutorials | Patreon
</title>
<meta content="Corey Schafer | creating Programming Tutorials | Patreon" name="title"/>
<meta content="Get more from Corey Schafer on Patreon" property="twitter:title"/>
<meta content="Get more from Corey Schafer on Patreon" prefix="og: http://ogp.me/ns#" property="og:title"/>
<meta content="creating Programming Tutorials" name="description"/>
<meta content="creating Programming Tutorials" property="twitter:description"/>
<meta content="creating Programming Tutorials" prefix="og: http://ogp.me/ns#" property="og:description"/>
<link href="https://www.patreon.com/coreyms" rel="canonical"/>
<meta content="https://www.patreon.com/coreyms" name="canonicalURL"/>
<meta content="https://www.patreon.com/coreyms" prefix="og: http://ogp.me/ns#" property="og:url"/>
<meta content="https://www.patreon.com/coreyms" property="twitter:url"/>
<link href="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png" rel="image_src"/>
<meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png" name="image"/>
<meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png" property="twitter:image"/>
<meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png" prefix="og: http://ogp.me/ns#" property="og:image"/>
<meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png" prefix="og: http://ogp.me/ns#" property="og:image:url"/>
<meta content="summary_large_image" name="twitter:card"/>
<meta content="article" prefix="og: http://ogp.me/ns#" property="og:type"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ProfilePage",
"author": {
"@type": "Person",
"name": "Corey Schafer",
"image": {
"@type": "ImageObject",
"contentUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3Ijo2MjB9/1.jpg?token-time=1719792000&token-hash=NQRp0l4IeeYVLhxmjtRy8757cpkyzvrehe9xWnZ0Ny8%3D",
"thumbnailUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1719792000&token-hash=eOFJMY3eiQ3ECNUnWYcSPjhS1D6u3UaJQj7iaPWyX8s%3D"
}
},
"about": {
"@type": "Thing",
"description": "Hi There,My name is Corey Schafer. I make YouTube tutorials and Write Blog Articles that teach beginner/intermediate programming, software engineering, development, and design.Topics Included in my videos and blog:Python, Software Engineering, Git, Programming Terms, JavaScript, Development Environments, Workflows, Development, Web Design, Geographic Information Systems (GIS), Mac Tips, and more.With your support, I'll be able to produce more high quality educational videos at a faster rate. I am extremely grateful for any support.Thank You!"
},
"primaryImageOfPage": {
"@type": "ImageObject",
"representativeOfPage": true,
"contentUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200&token-hash=r91Ch64NbDLM9k8F_zAjJllFaXB_Vk_QEgMUVooK5w0%3D",
"thumbnailUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200&token-hash=Omn68QvFrKeddWN7usaQupVri_JzSDrHAeXFHvm2biQ%3D"
},
"datePublished": "2014-11-23T23:20:47.000+00:00",
"sameAs": [
"https://www.instagram.com/coreymschafer",
"https://twitter.com/CoreyMSchafer"
]
}
</script>
<script>
// Stub airgap before it's initialized.
self.airgap = {
readyQueue: [],
ready(callback) {
this.readyQueue.push(callback);
},
// Block image requests from airgap telemetry.
suppressTelemetry: {
requestConditions: [({
type
}) => type === 'DOM:image'],
},
};
// Pass user authentication token to Transcend to sync preferences.
self.airgap.ready(async (airgap) => {
await airgap.sync({
auth: ''
});
});
</script>
<meta content="42" name="next-head-count"/>
<link as="font" crossorigin="anonymous" href="https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff2" rel="preload" type="font/woff2"/>
<style>
@font-face {
font-family: 'ABC Oracle Plus Variable';
src: url('https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff2') format('woff2'),
url('https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff') format('woff');
font-weight: 1 999;
font-display: fallback;
font-style: oblique 0deg 20deg;
}
</style>
<script data-nscript="beforeInteractive" id="google-app-id">
google_app_id = "84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com";
</script>
<noscript data-n-css="">
</noscript>
<script defer="" nomodule="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js">
</script>
<script data-backend-sync="on" data-cfasync="false" data-nscript="beforeInteractive" data-prompt="auto" data-protect="off" data-regulate-cookies="on" data-report-only="off" data-unknown-cookie-policy="block" defer="" src="https://transcend-cdn.com/cm/8dec6ba2-a601-4c04-a3ba-e4d5b45000f4/airgap.js">
</script>
<script data-nscript="beforeInteractive" defer="" src="https://apis.google.com/js/api:client.js">
</script>
<script async="" data-nscript="beforeInteractive" defer="" src="https://accounts.google.com/gsi/client">
</script>
<script data-nscript="beforeInteractive" defer="" src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/webpack-a570cd4b003b3f66.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/framework-5b4b4bd7d64ffcfa.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/main-bba07c0d56e4f500.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/pages/_app-a10904ae2f087537.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/2852872c-657a224261f762b2.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/37a763b4-eaaabd946be5e1fa.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/8b11cd73-f09294707b04d014.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/f9afc4fe-6059a26458ac411b.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/30381-6e8e8def86fca9d9.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/91036-75f9a70fd050d3a3.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/48764-06bfc6b2309ec52a.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/58588-e0e06435aa683efe.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/62609-a0237954904514ec.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/92758-c910bd1adf193c73.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/34563-d06188d73fec1f28.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/39174-278290511207d4fc.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/12066-888ee6dc19f282c7.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/15498-92e39fae11cfbc95.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/53435-cd5313d520804ada.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/29152-e2aa4814b4fa9b56.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/80611-8f95bb07559e534c.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/60600-9c2c85607818fad8.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/47489-8521e0f7423c94b7.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/86492-9e3ab8b68bbc8e7b.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/53415-b89e7e49bf0850fa.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/59473-3aa3980c36538b3b.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/41787-1e0f9a647c875c08.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/67643-60d72303d72022f1.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/89019-218a008b7e7687c5.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/9419-bf1a64dc2db1f0a8.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/55732-ad844537a816170f.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/60306-a00da3ef4a243fb6.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/9980-a177b6ee3ae60da7.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/54909-1cb24bff6af5e8c8.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/54988-8c7df644b85e9c70.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/18306-e84b30bf7903ef37.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/44991-ab763c02647f6244.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/61396-94ecdaaf0b0c59a6.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/67244-32de53a24ef3c2eb.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/5285-e1ba974e010bd1f9.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/48874-3c8040ed18dc2fe0.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/74471-f024dcda8a0dab18.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/91912-67b9d5f752812c01.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/6261-23ad522cdd788fb5.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/43528-67b479819286bd2b.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/32270-c467e74569b50d6f.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/95799-22b63e972296e3b9.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/72070-0746f3244c1ff644.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/64602-0f9bacf4aa7a71a0.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/18415-f1359de47ee83731.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/48284-adfecae8bfccefe5.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/75496-9fc10e37f8d8435d.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/68711-d3471e4ea8be1374.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/63379-c4adb749457088e1.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/37578-1512b707c2f0b2ad.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/66352-bd3bfa4369aca34e.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/chunks/pages/creatorPublicPage/%5Bvanity%5D/%5B%5B...tab%5D%5D-3ea6506b06786bf9.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/xoJm4yW90VpIZtaK2qw87/_buildManifest.js">
</script>
<script defer="" src="https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593/_next/static/xoJm4yW90VpIZtaK2qw87/_ssgManifest.js">
</script>
<style data-styled="" data-styled-version="5.3.3">
.lhrfPG{font-family:var(--global-fontStack-body);font-size:var(--global-fontSizes-body-md) !important;font-weight:var(--global-fontWeights-body-default);line-height:var(--global-lineHeights-body) !important;-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.lhrfPG strong,.lhrfPG b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.lhrfPG em{font-style:italic;}/*!sc*/
.lhrfPG s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.eHmEtx{font-family:var(--global-fontStack-body);font-size:var(--global-fontSizes-body-md) !important;font-weight:var(--global-fontWeights-body-default);line-height:var(--global-lineHeights-body) !important;-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-content-muted-default);margin:0;}/*!sc*/
.eHmEtx strong,.eHmEtx b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.eHmEtx em{font-style:italic;}/*!sc*/
.eHmEtx s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.gEPPme{font-family:var(--global-fontStack-body);font-size:var(--global-fontSizes-body-sm) !important;font-weight:var(--global-fontWeights-body-default);line-height:var(--global-lineHeights-body) !important;-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-content-muted-default);margin:0;}/*!sc*/
.gEPPme strong,.gEPPme b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.gEPPme em{font-style:italic;}/*!sc*/
.gEPPme s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
data-styled.g1[id="sc-bdvvtL"]{content:"lhrfPG,eHmEtx,gEPPme,"}/*!sc*/
.mfQLT{display:block;border-radius:inherit;object-fit:cover;background-color:var(--global-constant-white-default);position:absolute;width:100%;height:100%;inset:0;}/*!sc*/
data-styled.g6[id="sc-jRQBWg"]{content:"mfQLT,"}/*!sc*/
.lfJAyE{position:relative;border-radius:clamp(var(--global-radius-sm),15%,var(--global-radius-lg));width:120px;min-width:120px;height:120px;}/*!sc*/
.lfJAyE::after{content:'';position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--global-borderWidth-thin) var(--global-border-muted-default);}/*!sc*/
.gTqok{position:relative;border-radius:var(--global-radius-circle);width:48px;min-width:48px;height:48px;}/*!sc*/
.gTqok::after{content:'';position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--global-borderWidth-thin) var(--global-border-muted-default);}/*!sc*/
data-styled.g7[id="sc-gKclnd"]{content:"lfJAyE,gTqok,"}/*!sc*/
.jgGOTl{display:inline-block;vertical-align:unset;}/*!sc*/
.jgGOTl svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-content-regular-default);}/*!sc*/
.doltXu{display:inline-block;vertical-align:unset;}/*!sc*/
.doltXu svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-content-muted-default);}/*!sc*/
.cpsuPn{display:inline-block;vertical-align:unset;}/*!sc*/
.cpsuPn svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-content-muted-default);}/*!sc*/
@media (min-width:36.75rem){.cpsuPn svg{width:1.25rem;}}/*!sc*/
@media (min-width:36.75rem){.cpsuPn svg{height:1.25rem;}}/*!sc*/
.fkATIY{display:inline-block;vertical-align:unset;}/*!sc*/
.fkATIY svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--icon-color);}/*!sc*/
.dqHdkn{display:inline-block;vertical-align:unset;}/*!sc*/
.dqHdkn svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-primary-onMuted-default);}/*!sc*/
@media (min-width:36.75rem){.dqHdkn svg{width:1.25rem;}}/*!sc*/
@media (min-width:36.75rem){.dqHdkn svg{height:1.25rem;}}/*!sc*/
.ioScqw{display:inline-block;vertical-align:unset;}/*!sc*/
.ioScqw svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-content-regular-default);}/*!sc*/
@media (min-width:36.75rem){.ioScqw svg{width:1.25rem;}}/*!sc*/
@media (min-width:36.75rem){.ioScqw svg{height:1.25rem;}}/*!sc*/
.ZbiwD{display:inline-block;vertical-align:unset;}/*!sc*/
.ZbiwD svg{display:block;width:1.25rem;height:1.25rem;}/*!sc*/
.cJWOyC{display:inline-block;vertical-align:unset;}/*!sc*/
.cJWOyC svg{display:block;width:var(--global-space-24);height:var(--global-space-24);fill:var(--global-constant-black-default);}/*!sc*/
@media (min-width:36.75rem){.cJWOyC svg{width:1.25rem;}}/*!sc*/
@media (min-width:36.75rem){.cJWOyC svg{height:1.25rem;}}/*!sc*/
data-styled.g10[id="sc-pVTFL"]{content:"jgGOTl,doltXu,cpsuPn,fkATIY,dqHdkn,ioScqw,ZbiwD,cJWOyC,"}/*!sc*/
.hZQOBL{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:4px;column-gap:4px;visibility:visible;padding:0;margin:auto 0;}/*!sc*/
data-styled.g14[id="sc-crHmcD"]{content:"hZQOBL,"}/*!sc*/
.cPhYjp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 0;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.cPhYjp{margin:10px 0;}}/*!sc*/
.kfOjYx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 4px;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.kfOjYx{margin:10px 0;}}/*!sc*/
.ekamSg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 0;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.ekamSg{margin:4px 0;}}/*!sc*/
data-styled.g15[id="sc-egiyK"]{content:"cPhYjp,kfOjYx,ekamSg,"}/*!sc*/
.geVJaA{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.geVJaA:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.geVJaA:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.geVJaA:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.geVJaA:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.geVJaA[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.geVJaA{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.byxUM{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-muted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.byxUM:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.byxUM:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.byxUM:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.byxUM:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.byxUM[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.byxUM{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.gmCYiZ{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--component-button-onAction-default);background-color:var(--component-button-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;padding:0 20px;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:100%;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.gmCYiZ:hover{background-color:var(--component-button-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gmCYiZ:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gmCYiZ:active{background-color:var(--component-button-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gmCYiZ[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.gmCYiZ{min-height:40px;max-height:40px;padding:0 20px;}}/*!sc*/
.dgYAtZ{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;cursor:not-allowed;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:var(--global-secondary-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-pill);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.dgYAtZ:hover{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dgYAtZ:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dgYAtZ:active{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dgYAtZ[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.dgYAtZ{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.btjCdZ{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:var(--global-secondary-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-pill);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.btjCdZ:hover{background-color:var(--global-secondary-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.btjCdZ:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.btjCdZ:active{background-color:var(--global-secondary-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.btjCdZ[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.btjCdZ{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.bLNJHK{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-regular-default);background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-default);min-height:44px;max-height:44px;padding:0 20px 0 18px;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:100%;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.bLNJHK:hover{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.bLNJHK:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.bLNJHK:focus{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.bLNJHK:active{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-pressed);}/*!sc*/
.bLNJHK[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.bLNJHK{min-height:40px;max-height:40px;padding:0 20px 0 16px;}}/*!sc*/
.hFZQUx{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-regular-default);background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-default);min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.hFZQUx:hover{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.hFZQUx:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.hFZQUx:focus{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.hFZQUx:active{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-pressed);}/*!sc*/
.hFZQUx[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.hFZQUx{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.ekLksg{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;padding:0;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.ekLksg:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.ekLksg:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.ekLksg:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.ekLksg:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.ekLksg[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.ekLksg{padding:0;}}/*!sc*/
.ctukLy{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-md);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--global-constant-black-default);background-color:var(--global-constant-white-default);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-default);min-height:44px;max-height:44px;padding:0 20px 0 18px;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.ctukLy:hover{background-color:var(--global-constant-white-hover);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-hover);}/*!sc*/
.ctukLy:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-hover);}/*!sc*/
.ctukLy:active{background-color:var(--global-constant-white-pressed);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-pressed);}/*!sc*/
.ctukLy[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.ctukLy{min-height:40px;max-height:40px;padding:0 20px 0 16px;}}/*!sc*/
.hePfFR{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;font-size:var(--component-fontSizes-button-sm);font-weight:var(--component-fontWeights-button-default);font-family:var(--global-fontStack-button);-webkit-text-decoration:none;text-decoration:none;color:var(--component-button-onAction-default);background-color:var(--component-button-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:36px;max-height:36px;padding:0 18px;border-radius:var(--global-radius-md);outline-offset:0;line-height:var(--component-lineHeights-button);width:unset;white-space:unset;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.hePfFR:hover{background-color:var(--component-button-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.hePfFR:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.hePfFR:active{background-color:var(--component-button-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.hePfFR[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.hePfFR{min-height:32px;max-height:32px;padding:0 16px;}}/*!sc*/
data-styled.g16[id="sc-bqiRlB"]{content:"geVJaA,byxUM,gmCYiZ,dgYAtZ,btjCdZ,bLNJHK,hFZQUx,ekLksg,ctukLy,hePfFR,"}/*!sc*/
.fycPQu{font-family:var(--global-fontStack-heading);font-size:var(--global-fontSizes-heading-xl) !important;font-weight:var(--global-fontWeights-heading-default);line-height:var(--global-lineHeights-heading);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.jtatWC{font-family:var(--global-fontStack-heading);font-size:var(--global-fontSizes-heading-xs) !important;font-weight:var(--global-fontWeights-heading-default);line-height:var(--global-lineHeights-heading);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);color:inherit;margin:0;}/*!sc*/
.bovTjV{font-family:var(--global-fontStack-heading);font-size:var(--global-fontSizes-heading-lg) !important;font-weight:var(--global-fontWeights-heading-default);line-height:var(--global-lineHeights-heading);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.flmgFf{font-family:var(--global-fontStack-heading);font-size:var(--global-fontSizes-heading-md) !important;font-weight:var(--global-fontWeights-heading-default);line-height:var(--global-lineHeights-heading);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.jmSjfY{font-family:var(--global-fontStack-heading);font-size:var(--global-fontSizes-heading-sm) !important;font-weight:var(--global-fontWeights-heading-default);line-height:var(--global-lineHeights-heading);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);color:var(--global-content-regular-default);margin:0;}/*!sc*/
data-styled.g23[id="sc-dJjYzT"]{content:"fycPQu,jtatWC,bovTjV,flmgFf,jmSjfY,"}/*!sc*/
.iEJoxd{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-column-gap:4px;column-gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-text-decoration:none;text-decoration:none;font-size:var(--global-fontSizes-body-md);font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);line-height:var(--global-lineHeights-body);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-primary-action-default);border-radius:var(--global-radius-sm);-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.iEJoxd svg{fill:currentColor;}/*!sc*/
.iEJoxd:focus:not(:focus-visible){outline:none;}/*!sc*/
.iEJoxd:hover{color:var(--global-primary-action-hover);}/*!sc*/
.iEJoxd:active{color:var(--global-primary-action-pressed);}/*!sc*/
data-styled.g24[id="sc-hGPBjI"]{content:"iEJoxd,"}/*!sc*/
.fdqpSt{padding:0;border:none;background:none;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-column-gap:4px;column-gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-text-decoration:none;text-decoration:none;font-size:var(--global-fontSizes-body-md);font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);line-height:var(--global-lineHeights-body);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-primary-action-default);border-radius:var(--global-radius-sm);-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.fdqpSt svg{fill:currentColor;}/*!sc*/
.fdqpSt:focus:not(:focus-visible){outline:none;}/*!sc*/
.fdqpSt:hover{color:var(--global-primary-action-hover);}/*!sc*/
.fdqpSt:active{color:var(--global-primary-action-pressed);}/*!sc*/
.djOudb{padding:0;border:none;background:none;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-column-gap:4px;column-gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-text-decoration:none;text-decoration:none;font-size:var(--global-fontSizes-body-md);font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-bold);line-height:var(--global-lineHeights-body);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);color:var(--global-primary-action-default);border-radius:var(--global-radius-sm);-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);}/*!sc*/
.djOudb svg{fill:currentColor;}/*!sc*/
.djOudb:focus:not(:focus-visible){outline:none;}/*!sc*/
.djOudb:hover{color:var(--global-primary-action-hover);}/*!sc*/
.djOudb:active{color:var(--global-primary-action-pressed);}/*!sc*/
data-styled.g25[id="sc-dlVxhl"]{content:"fdqpSt,djOudb,"}/*!sc*/
.htYvUs{box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0.3375rem;padding-bottom:0rem;padding-left:1.0125rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
@media (min-width:61.125rem){.htYvUs{padding-right:0.375rem;}}/*!sc*/
@media (min-width:61.125rem){.htYvUs{padding-left:1.125rem;}}/*!sc*/
.gLRSni{box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0.84375rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
@media (min-width:61.125rem){.gLRSni{padding-right:0rem;}}/*!sc*/
@media (min-width:61.125rem){.gLRSni{padding-left:0.9375rem;}}/*!sc*/
.kWRbaf{box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0.28125rem;padding-bottom:0rem;padding-left:0.84375rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
@media (min-width:61.125rem){.kWRbaf{padding-right:0.3125rem;}}/*!sc*/
@media (min-width:61.125rem){.kWRbaf{padding-left:0.9375rem;}}/*!sc*/
.fSnUNt{box-sizing:border-box;display:block;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
@media (min-width:49.75rem){.fSnUNt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.erZgWg{box-sizing:border-box;-webkit-box-flex:2;-webkit-flex-grow:2;-ms-flex-positive:2;flex-grow:2;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
.gHDUUa{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;box-sizing:border-box;position:relative;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
.jFgHdw{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
.hIBGBn{box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:1.0125rem;margin-top:0rem;margin-right:0rem;margin-bottom:0rem;margin-left:0rem;}/*!sc*/
@media (min-width:61.125rem){.hIBGBn{padding-right:0rem;}}/*!sc*/
@media (min-width:61.125rem){.hIBGBn{padding-left:1.125rem;}}/*!sc*/
data-styled.g35[id="sc-bYoBSM"]{content:"htYvUs,gLRSni,kWRbaf,fSnUNt,erZgWg,gHDUUa,jFgHdw,hIBGBn,"}/*!sc*/
.YCXEB{font-family:var(--global-fontStack-display);font-weight:var(--global-fontWeights-display-default);line-height:var(--global-lineHeights-display) !important;-webkit-letter-spacing:var(--global-letterSpacing-display);-moz-letter-spacing:var(--global-letterSpacing-display);-ms-letter-spacing:var(--global-letterSpacing-display);letter-spacing:var(--global-letterSpacing-display);color:var(--global-content-regular-default);margin:0;font-size:var(--global-fontSizes-display-md);text-align:center;}/*!sc*/
data-styled.g56[id="sc-jgrJph"]{content:"YCXEB,"}/*!sc*/
.kyedVw{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;margin-bottom:0;cursor:pointer;max-width:100%;padding:0;}/*!sc*/
data-styled.g80[id="sc-hOGkXu"]{content:"kyedVw,"}/*!sc*/
body{min-width:320px;background-color:var(--global-bg-base-default);font-feature-settings:"ss15" 1;}/*!sc*/
#component-playground,.reactWrapper{color:var(--global-content-regular-default);font-family:var(--global-fontStack-body);font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;}/*!sc*/
#component-playground ul,.reactWrapper ul{margin:0;}/*!sc*/
#component-playground p,.reactWrapper p{margin:0;}/*!sc*/
#component-playground .containerInner,.reactWrapper .containerInner{box-sizing:border-box;margin-right:auto;margin-left:auto;max-width:71rem;padding-left:var(--global-space-16);padding-right:var(--global-space-16);width:100%;}/*!sc*/
@media (min-width:36.75rem){#component-playground .containerInner .fullWidthMobile,.reactWrapper .containerInner .fullWidthMobile{padding-left:0;padding-right:0;overflow-x:hidden;}}/*!sc*/
#component-playground a,.reactWrapper a{-webkit-text-decoration:none;text-decoration:none;cursor:pointer;}/*!sc*/
#component-playground p,.reactWrapper p,#component-playground ol,.reactWrapper ol{font-size:var(--global-fontSizes-body-md);line-height:1.5;}/*!sc*/
.mt-xs,.reactWrapper .mt-xs{margin-top:var(--global-space-4);}/*!sc*/
.mr-xs,.reactWrapper .mr-xs{margin-right:var(--global-space-4);}/*!sc*/
.mb-xs,.reactWrapper .mb-xs{margin-bottom:var(--global-space-4);}/*!sc*/
.ml-xs,.reactWrapper .ml-xs{margin-left:var(--global-space-4);}/*!sc*/
.mh-xs,.reactWrapper .mh-xs{margin-left:var(--global-space-4);margin-right:var(--global-space-4);}/*!sc*/
.mv-xs,.reactWrapper .mv-xs{margin-top:var(--global-space-4);margin-bottom:var(--global-space-4);}/*!sc*/
.m-xs,.reactWrapper .m-xs{margin:var(--global-space-4);}/*!sc*/
.pt-xs{padding-top:var(--global-space-4);}/*!sc*/
.pr-xs{padding-right:var(--global-space-4);}/*!sc*/
.pb-xs{padding-bottom:var(--global-space-4);}/*!sc*/
.pl-xs{padding-left:var(--global-space-4);}/*!sc*/
.ph-xs{padding-right:var(--global-space-4);padding-left:var(--global-space-4);}/*!sc*/
.pv-xs{padding-top:var(--global-space-4);padding-bottom:var(--global-space-4);}/*!sc*/
.p-xs{padding:var(--global-space-4);}/*!sc*/
.mt-sm,.reactWrapper .mt-sm{margin-top:var(--global-space-8);}/*!sc*/
.mr-sm,.reactWrapper .mr-sm{margin-right:var(--global-space-8);}/*!sc*/
.mb-sm,.reactWrapper .mb-sm{margin-bottom:var(--global-space-8);}/*!sc*/
.ml-sm,.reactWrapper .ml-sm{margin-left:var(--global-space-8);}/*!sc*/
.mh-sm,.reactWrapper .mh-sm{margin-left:var(--global-space-8);margin-right:var(--global-space-8);}/*!sc*/
.mv-sm,.reactWrapper .mv-sm{margin-top:var(--global-space-8);margin-bottom:var(--global-space-8);}/*!sc*/
.m-sm,.reactWrapper .m-sm{margin:var(--global-space-8);}/*!sc*/
.pt-sm{padding-top:var(--global-space-8);}/*!sc*/
.pr-sm{padding-right:var(--global-space-8);}/*!sc*/
.pb-sm{padding-bottom:var(--global-space-8);}/*!sc*/
.pl-sm{padding-left:var(--global-space-8);}/*!sc*/
.ph-sm{padding-right:var(--global-space-8);padding-left:var(--global-space-8);}/*!sc*/
.pv-sm{padding-top:var(--global-space-8);padding-bottom:var(--global-space-8);}/*!sc*/
.p-sm{padding:var(--global-space-8);}/*!sc*/
.mt-md,.reactWrapper .mt-md{margin-top:var(--global-space-16);}/*!sc*/
.mr-md,.reactWrapper .mr-md{margin-right:var(--global-space-16);}/*!sc*/
.mb-md,.reactWrapper .mb-md{margin-bottom:var(--global-space-16);}/*!sc*/
.ml-md,.reactWrapper .ml-md{margin-left:var(--global-space-16);}/*!sc*/
.mh-md,.reactWrapper .mh-md{margin-left:var(--global-space-16);margin-right:var(--global-space-16);}/*!sc*/
.mv-md,.reactWrapper .mv-md{margin-top:var(--global-space-16);margin-bottom:var(--global-space-16);}/*!sc*/
.m-md,.reactWrapper .m-md{margin:var(--global-space-16);}/*!sc*/
.pt-md{padding-top:var(--global-space-16);}/*!sc*/
.pr-md{padding-right:var(--global-space-16);}/*!sc*/
.pb-md{padding-bottom:var(--global-space-16);}/*!sc*/
.pl-md{padding-left:var(--global-space-16);}/*!sc*/
.ph-md{padding-right:var(--global-space-16);padding-left:var(--global-space-16);}/*!sc*/
.pv-md{padding-top:var(--global-space-16);padding-bottom:var(--global-space-16);}/*!sc*/
.p-md{padding:var(--global-space-16);}/*!sc*/
.mt-lg,.reactWrapper .mt-lg{margin-top:var(--global-space-24);}/*!sc*/
.mr-lg,.reactWrapper .mr-lg{margin-right:var(--global-space-24);}/*!sc*/
.mb-lg,.reactWrapper .mb-lg{margin-bottom:var(--global-space-24);}/*!sc*/
.ml-lg,.reactWrapper .ml-lg{margin-left:var(--global-space-24);}/*!sc*/
.mh-lg,.reactWrapper .mh-lg{margin-left:var(--global-space-24);margin-right:var(--global-space-24);}/*!sc*/
.mv-lg,.reactWrapper .mv-lg{margin-top:var(--global-space-24);margin-bottom:var(--global-space-24);}/*!sc*/
.m-lg,.reactWrapper .m-lg{margin:var(--global-space-24);}/*!sc*/
.pt-lg{padding-top:var(--global-space-24);}/*!sc*/
.pr-lg{padding-right:var(--global-space-24);}/*!sc*/
.pb-lg{padding-bottom:var(--global-space-24);}/*!sc*/
.pl-lg{padding-left:var(--global-space-24);}/*!sc*/
.ph-lg{padding-right:var(--global-space-24);padding-left:var(--global-space-24);}/*!sc*/
.pv-lg{padding-top:var(--global-space-24);padding-bottom:var(--global-space-24);}/*!sc*/
.p-lg{padding:var(--global-space-24);}/*!sc*/
.mt-xl,.reactWrapper .mt-xl{margin-top:var(--global-space-32);}/*!sc*/
.mr-xl,.reactWrapper .mr-xl{margin-right:var(--global-space-32);}/*!sc*/
.mb-xl,.reactWrapper .mb-xl{margin-bottom:var(--global-space-32);}/*!sc*/
.ml-xl,.reactWrapper .ml-xl{margin-left:var(--global-space-32);}/*!sc*/
.mh-xl,.reactWrapper .mh-xl{margin-left:var(--global-space-32);margin-right:var(--global-space-32);}/*!sc*/
.mv-xl,.reactWrapper .mv-xl{margin-top:var(--global-space-32);margin-bottom:var(--global-space-32);}/*!sc*/
.m-xl,.reactWrapper .m-xl{margin:var(--global-space-32);}/*!sc*/
.pt-xl{padding-top:var(--global-space-32);}/*!sc*/
.pr-xl{padding-right:var(--global-space-32);}/*!sc*/
.pb-xl{padding-bottom:var(--global-space-32);}/*!sc*/
.pl-xl{padding-left:var(--global-space-32);}/*!sc*/
.ph-xl{padding-right:var(--global-space-32);padding-left:var(--global-space-32);}/*!sc*/
.pv-xl{padding-top:var(--global-space-32);padding-bottom:var(--global-space-32);}/*!sc*/
.p-xl{padding:var(--global-space-32);}/*!sc*/
.mt-xxl,.reactWrapper .mt-xxl{margin-top:var(--global-space-48);}/*!sc*/
.mr-xxl,.reactWrapper .mr-xxl{margin-right:var(--global-space-48);}/*!sc*/
.mb-xxl,.reactWrapper .mb-xxl{margin-bottom:var(--global-space-48);}/*!sc*/
.ml-xxl,.reactWrapper .ml-xxl{margin-left:var(--global-space-48);}/*!sc*/
.mh-xxl,.reactWrapper .mh-xxl{margin-left:var(--global-space-48);margin-right:var(--global-space-48);}/*!sc*/
.mv-xxl,.reactWrapper .mv-xxl{margin-top:var(--global-space-48);margin-bottom:var(--global-space-48);}/*!sc*/
.m-xxl,.reactWrapper .m-xxl{margin:var(--global-space-48);}/*!sc*/
.pt-xxl{padding-top:var(--global-space-48);}/*!sc*/
.pr-xxl{padding-right:var(--global-space-48);}/*!sc*/
.pb-xxl{padding-bottom:var(--global-space-48);}/*!sc*/
.pl-xxl{padding-left:var(--global-space-48);}/*!sc*/
.ph-xxl{padding-right:var(--global-space-48);padding-left:var(--global-space-48);}/*!sc*/
.pv-xxl{padding-top:var(--global-space-48);padding-bottom:var(--global-space-48);}/*!sc*/
.p-xxl{padding:var(--global-space-48);}/*!sc*/
data-styled.g81[id="sc-global-jbWFjL1"]{content:"sc-global-jbWFjL1,"}/*!sc*/
.container,.container-fluid{margin-right:auto;margin-left:auto;}/*!sc*/
.container-fluid{padding-right:0;padding-left:0;}/*!sc*/
.row{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;}/*!sc*/
.row.reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;}/*!sc*/
.col.reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;}/*!sc*/
.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-offset-1,.col-xs-offset-10,.col-xs-offset-11,.col-xs-offset-12,.col-xs-offset-2,.col-xs-offset-3,.col-xs-offset-4,.col-xs-offset-5,.col-xs-offset-6,.col-xs-offset-7,.col-xs-offset-8,.col-xs-offset-9{box-sizing:border-box;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}/*!sc*/
.col-xs{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;}/*!sc*/
.col-xs-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%;}/*!sc*/
.col-xs-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}/*!sc*/
.col-xs-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}/*!sc*/
.col-xs-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}/*!sc*/
.col-xs-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}/*!sc*/
.col-xs-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}/*!sc*/
.col-xs-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%;}/*!sc*/
.col-xs-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}/*!sc*/
.col-xs-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}/*!sc*/
.col-xs-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%;}/*!sc*/
.col-xs-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%;}/*!sc*/
.col-xs-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}/*!sc*/
.col-xs-offset-1{margin-left:8.333%;}/*!sc*/
.col-xs-offset-2{margin-left:16.667%;}/*!sc*/
.col-xs-offset-3{margin-left:25%;}/*!sc*/
.col-xs-offset-4{margin-left:33.333%;}/*!sc*/
.col-xs-offset-5{margin-left:41.667%;}/*!sc*/
.col-xs-offset-6{margin-left:50%;}/*!sc*/
.col-xs-offset-7{margin-left:58.333%;}/*!sc*/
.col-xs-offset-8{margin-left:66.667%;}/*!sc*/
.col-xs-offset-9{margin-left:75%;}/*!sc*/
.col-xs-offset-10{margin-left:83.333%;}/*!sc*/
.col-xs-offset-11{margin-left:91.667%;}/*!sc*/
.start-xs{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}/*!sc*/
.center-xs{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}/*!sc*/
.end-xs{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}/*!sc*/
.top-xs{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/
.middle-xs{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.bottom-xs{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
.around-xs{-webkit-justify-content:space-around;-ms-flex-pack:distribute;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}/*!sc*/
.between-xs{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
.first-xs{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;-webkit-order:-1;-ms-flex-order:-1;order:-1;}/*!sc*/
.last-xs{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;-webkit-order:1;-ms-flex-order:1;order:1;}/*!sc*/
@media only screen and (min-width:30em){.container{width:31rem;}.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-offset-1,.col-sm-offset-10,.col-sm-offset-11,.col-sm-offset-12,.col-sm-offset-2,.col-sm-offset-3,.col-sm-offset-4,.col-sm-offset-5,.col-sm-offset-6,.col-sm-offset-7,.col-sm-offset-8,.col-sm-offset-9{box-sizing:border-box;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-sm{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;}.col-sm-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%;}.col-sm-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}.col-sm-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}.col-sm-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-sm-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}.col-sm-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}.col-sm-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%;}.col-sm-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}.col-sm-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}.col-sm-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%;}.col-sm-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%;}.col-sm-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}.col-sm-offset-1{margin-left:8.333%;}.col-sm-offset-2{margin-left:16.667%;}.col-sm-offset-3{margin-left:25%;}.col-sm-offset-4{margin-left:33.333%;}.col-sm-offset-5{margin-left:41.667%;}.col-sm-offset-6{margin-left:50%;}.col-sm-offset-7{margin-left:58.333%;}.col-sm-offset-8{margin-left:66.667%;}.col-sm-offset-9{margin-left:75%;}.col-sm-offset-10{margin-left:83.333%;}.col-sm-offset-11{margin-left:91.667%;}.start-sm{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}.center-sm{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.end-sm{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}.top-sm{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}.middle-sm{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.bottom-sm{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}.around-sm{-webkit-justify-content:space-around;-ms-flex-pack:distribute;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}.between-sm{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}.first-sm{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;-webkit-order:-1;-ms-flex-order:-1;order:-1;}.last-sm{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;-webkit-order:1;-ms-flex-order:1;order:1;}}/*!sc*/
@media only screen and (min-width:48em){.container{width:49rem;}.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-offset-1,.col-md-offset-10,.col-md-offset-11,.col-md-offset-12,.col-md-offset-2,.col-md-offset-3,.col-md-offset-4,.col-md-offset-5,.col-md-offset-6,.col-md-offset-7,.col-md-offset-8,.col-md-offset-9{box-sizing:border-box;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-md{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;}.col-md-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%;}.col-md-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}.col-md-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}.col-md-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-md-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}.col-md-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}.col-md-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%;}.col-md-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}.col-md-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}.col-md-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%;}.col-md-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%;}.col-md-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}.col-md-offset-1{margin-left:8.333%;}.col-md-offset-2{margin-left:16.667%;}.col-md-offset-3{margin-left:25%;}.col-md-offset-4{margin-left:33.333%;}.col-md-offset-5{margin-left:41.667%;}.col-md-offset-6{margin-left:50%;}.col-md-offset-7{margin-left:58.333%;}.col-md-offset-8{margin-left:66.667%;}.col-md-offset-9{margin-left:75%;}.col-md-offset-10{margin-left:83.333%;}.col-md-offset-11{margin-left:91.667%;}.start-md{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}.center-md{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.end-md{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}.top-md{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}.middle-md{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.bottom-md{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}.around-md{-webkit-justify-content:space-around;-ms-flex-pack:distribute;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}.between-md{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}.first-md{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;-webkit-order:-1;-ms-flex-order:-1;order:-1;}.last-md{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;-webkit-order:1;-ms-flex-order:1;order:1;}}/*!sc*/
@media only screen and (min-width:64em){.container{width:65rem;}.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-offset-1,.col-lg-offset-10,.col-lg-offset-11,.col-lg-offset-12,.col-lg-offset-2,.col-lg-offset-3,.col-lg-offset-4,.col-lg-offset-5,.col-lg-offset-6,.col-lg-offset-7,.col-lg-offset-8,.col-lg-offset-9{box-sizing:border-box;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-lg{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;}.col-lg-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%;}.col-lg-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}.col-lg-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}.col-lg-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-lg-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}.col-lg-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}.col-lg-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%;}.col-lg-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}.col-lg-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}.col-lg-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%;}.col-lg-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%;}.col-lg-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}.col-lg-offset-1{margin-left:8.333%;}.col-lg-offset-2{margin-left:16.667%;}.col-lg-offset-3{margin-left:25%;}.col-lg-offset-4{margin-left:33.333%;}.col-lg-offset-5{margin-left:41.667%;}.col-lg-offset-6{margin-left:50%;}.col-lg-offset-7{margin-left:58.333%;}.col-lg-offset-8{margin-left:66.667%;}.col-lg-offset-9{margin-left:75%;}.col-lg-offset-10{margin-left:83.333%;}.col-lg-offset-11{margin-left:91.667%;}.start-lg{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}.center-lg{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.end-lg{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}.top-lg{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}.middle-lg{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.bottom-lg{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}.around-lg{-webkit-justify-content:space-around;-ms-flex-pack:distribute;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}.between-lg{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}.first-lg{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;-webkit-order:-1;-ms-flex-order:-1;order:-1;}.last-lg{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;-webkit-order:1;-ms-flex-order:1;order:1;}}/*!sc*/
@media only screen and (min-width:85.375rem){.container{width:85.375rem;}.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-offset-1,.col-xl-offset-10,.col-xl-offset-11,.col-xl-offset-12,.col-xl-offset-2,.col-xl-offset-3,.col-xl-offset-4,.col-xl-offset-5,.col-xl-offset-6,.col-xl-offset-7,.col-xl-offset-8,.col-xl-offset-9{box-sizing:border-box;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-xl{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%;}.col-xl-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%;}.col-xl-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}.col-xl-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}.col-xl-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-xl-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}.col-xl-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}.col-xl-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%;}.col-xl-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}.col-xl-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%;}.col-xl-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%;}.col-xl-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%;}.col-xl-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}.col-xl-offset-1{margin-left:8.333%;}.col-xl-offset-2{margin-left:16.667%;}.col-xl-offset-3{margin-left:25%;}.col-xl-offset-4{margin-left:33.333%;}.col-xl-offset-5{margin-left:41.667%;}.col-xl-offset-6{margin-left:50%;}.col-xl-offset-7{margin-left:58.333%;}.col-xl-offset-8{margin-left:66.667%;}.col-xl-offset-9{margin-left:75%;}.col-xl-offset-10{margin-left:83.333%;}.col-xl-offset-11{margin-left:91.667%;}.start-xl{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}.center-xl{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.end-xl{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}.top-xl{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}.middle-xl{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.bottom-xl{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}.around-xl{-webkit-justify-content:space-around;-ms-flex-pack:distribute;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}.between-xl{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}.first-xl{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;-webkit-order:-1;-ms-flex-order:-1;order:-1;}.last-xl{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;-webkit-order:1;-ms-flex-order:1;order:1;}}/*!sc*/
data-styled.g82[id="sc-global-eKCzMx1"]{content:"sc-global-eKCzMx1,"}/*!sc*/
.stackable{margin-bottom:1rem;}/*!sc*/
data-styled.g83[id="sc-global-cCvgBB1"]{content:"sc-global-cCvgBB1,"}/*!sc*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}/*!sc*/
body{margin:0;}/*!sc*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block;}/*!sc*/
audio,canvas,progress,video{display:inline-block;vertical-align:baseline;}/*!sc*/
audio:not([controls]){display:none;height:0;}/*!sc*/
[hidden],template{display:none;}/*!sc*/
a{background-color:transparent;}/*!sc*/
a:active,a:hover{outline:0;}/*!sc*/
abbr[title]{border-bottom:1px dotted;}/*!sc*/
b,strong{font-weight:bold;}/*!sc*/
dfn{font-style:italic;}/*!sc*/
h1{font-size:2em;margin:0.67em 0;}/*!sc*/
mark{background:#ff0;color:#000;}/*!sc*/
small{font-size:80%;}/*!sc*/
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}/*!sc*/
sup{top:-0.5em;}/*!sc*/
sub{bottom:-0.25em;}/*!sc*/
img{border:0;}/*!sc*/
svg:not(:root){overflow:hidden;}/*!sc*/
figure{margin:1em 40px;}/*!sc*/
hr{box-sizing:content-box;height:0;}/*!sc*/
pre{overflow:auto;}/*!sc*/
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em;}/*!sc*/
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;}/*!sc*/
button{overflow:visible;}/*!sc*/
button,select{text-transform:none;}/*!sc*/
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}/*!sc*/
html input[disabled]{cursor:default;}/*!sc*/
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}/*!sc*/
input{line-height:normal;}/*!sc*/
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}/*!sc*/
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto;}/*!sc*/
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}/*!sc*/
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}/*!sc*/
legend{border:0;padding:0;}/*!sc*/
textarea{overflow:auto;}/*!sc*/
optgroup{font-weight:bold;}/*!sc*/
table{border-collapse:collapse;border-spacing:0;}/*!sc*/
td,th{padding:0;}/*!sc*/
data-styled.g84[id="sc-global-keqigg1"]{content:"sc-global-keqigg1,"}/*!sc*/
:root{--global-borderWidth-none:0;--global-borderWidth-thick:2px;--global-borderWidth-thin:1px;--global-boxShadow-high:0px 6px 24px 0px rgba(0,0,0,0.14);--global-boxShadow-low:0px 1px 4px 0px rgba(0,0,0,0.14);--global-boxShadow-mid:0px 4px 14px 0px rgba(0,0,0,0.10);--global-boxShadow-subtle:0px 1px 4px 0px rgba(0,0,0,0.10);--global-brand-discord:#5865f2;--global-brand-facebook:#1877f2;--global-brand-google:#d9453d;--global-brand-memberful:#de5b38;--global-brand-patreon:#f1465a;--global-brand-pinterest:#e60023;--global-brand-reddit:#ff4500;--global-brand-spotify:#00db54;--global-brand-tumblr:#35465c;--global-brand-twitch:#9046ff;--global-brand-twitter:#1da1f2;--global-brand-youtube:#ff0000;--global-brand-youtubeBlack:#282828;--global-constant-black-default:#070707;--global-constant-black-hover:#131313;--global-constant-black-pressed:#252525;--global-constant-blackMuted-default:rgba(0,0,0,0.5);--global-constant-blackMuted-hover:rgba(0,0,0,0.66);--global-constant-blackMuted-pressed:rgba(0,0,0,0.82);--global-constant-blackSubtle-default:rgba(0,0,0,0.14);--global-constant-blackSubtle-hover:rgba(0,0,0,0.2);--global-constant-blackSubtle-pressed:rgba(0,0,0,0.26);--global-constant-white-default:#ffffff;--global-constant-white-hover:#f5f5f5;--global-constant-white-pressed:#e8e8e8;--global-constant-whiteMuted-default:rgba(255,255,255,0.5);--global-constant-whiteMuted-hover:rgba(255,255,255,0.66);--global-constant-whiteMuted-pressed:rgba(255,255,255,0.82);--global-constant-whiteSubtle-default:rgba(255,255,255,0.14);--global-constant-whiteSubtle-hover:rgba(255,255,255,0.2);--global-constant-whiteSubtle-pressed:rgba(255,255,255,0.26);--global-effects-lg:100px;--global-effects-md:50px;--global-effects-sm:20px;--global-fontSettings-fontWidth-mono:'TRIP' .5;--global-fontSettings-fontWidth-regular:'TRIP' 0;--global-icon-lg:32px;--global-icon-md:24px;--global-icon-sm:20px;--global-icon-xl:40px;--global-icon-xs:16px;--global-layer-0:0;--global-layer-1:100;--global-layer-10:1000;--global-layer-11:1100;--global-layer-12:1200;--global-layer-2:200;--global-layer-20:2000;--global-layer-3:300;--global-layer-4:400;--global-layer-5:500;--global-layer-6:600;--global-layer-7:700;--global-layer-8:800;--global-layer-9:900;--global-nonSemantic-blueberry:#1a52a7;--global-nonSemantic-holly:#0cac7e;--global-nonSemantic-honeycomb:#f5b400;--global-nonSemantic-jasper:#f75058;--global-nonSemantic-lavender:#6e479d;--global-nonSemantic-lollipop:#ea1f44;--global-nonSemantic-moonshade:#4f71ba;--global-nonSemantic-ocean:#1d8acb;--global-nonSemantic-pumpkin:#fb790e;--global-nonSemantic-raspberry:#be2a61;--global-opacity-disabled:0.6;--global-opacity-enabled:1;--global-radius-circle:9999px;--global-radius-lg:12px;--global-radius-md:8px;--global-radius-pill:9999px;--global-radius-sm:4px;--global-radius-smMd:6px;--global-radius-xl:16px;--global-space-12:12px;--global-space-16:16px;--global-space-24:24px;--global-space-32:32px;--global-space-4:4px;--global-space-40:40px;--global-space-48:48px;--global-space-56:56px;--global-space-8:8px;--global-transition-fast-duration:200ms;--global-transition-fast-easing:ease;--global-transition-regular-duration:350ms;--global-transition-regular-easing:ease;--global-transition-slow-duration:500ms;--global-transition-slow-easing:ease;}/*!sc*/
:root{--component-data-fontWeights-body-bold:700;--component-data-fontWeights-body-default:325;--component-data-fontWeights-display-default:500;--component-data-fontWeights-heading-default:500;--component-fontFamilies-button:ABC Oracle Plus Variable;--component-fontSizes-button-lg:18px;--component-fontSizes-button-md:16px;--component-fontSizes-button-sm:14px;--component-fontWeights-button-default:700;--component-letterSpacing-button:-0.02em;--component-lineHeights-button:1;--global-fontFamilies-body:ABC Oracle Plus Variable;--global-fontFamilies-data:ABC Oracle Plus Variable;--global-fontFamilies-display:ABC Oracle Plus Variable;--global-fontFamilies-heading:ABC Oracle Plus Variable;--global-fontSizes-body-lg:16px;--global-fontSizes-body-md:16px;--global-fontSizes-body-sm:14px;--global-fontSizes-body-xs:10px;--global-fontSizes-data-md:14px;--global-fontSizes-display-lg:36px;--global-fontSizes-display-md:30px;--global-fontSizes-display-xl:42px;--global-fontSizes-display-xxl:60px;--global-fontSizes-display-xxxl:80px;--global-fontSizes-heading-lg:22px;--global-fontSizes-heading-md:18px;--global-fontSizes-heading-sm:16px;--global-fontSizes-heading-xl:26px;--global-fontSizes-heading-xs:14px;--global-fontWeights-body-bold:700;--global-fontWeights-body-default:325;--global-fontWeights-data-default:500;--global-fontWeights-display-default:500;--global-fontWeights-heading-default:500;--global-letterSpacing-body:-0.01em;--global-letterSpacing-data:0;--global-letterSpacing-display:-0.03em;--global-letterSpacing-heading:-0.02em;--global-lineHeights-body:1.4;--global-lineHeights-data:1.4;--global-lineHeights-display:1.2;--global-lineHeights-heading:1.3;}/*!sc*/
@media (min-width:36.75rem){:root{--component-data-fontWeights-body-bold:700;--component-data-fontWeights-body-default:325;--component-data-fontWeights-display-default:500;--component-data-fontWeights-heading-default:500;--component-fontFamilies-button:ABC Oracle Plus Variable;--component-fontSizes-button-lg:16px;--component-fontSizes-button-md:14px;--component-fontSizes-button-sm:12px;--component-fontWeights-button-default:700;--component-letterSpacing-button:-0.02em;--component-lineHeights-button:1;--global-fontFamilies-body:ABC Oracle Plus Variable;--global-fontFamilies-data:ABC Oracle Plus Variable;--global-fontFamilies-display:ABC Oracle Plus Variable;--global-fontFamilies-heading:ABC Oracle Plus Variable;--global-fontSizes-body-lg:16px;--global-fontSizes-body-md:14px;--global-fontSizes-body-sm:12px;--global-fontSizes-body-xs:10px;--global-fontSizes-data-md:12px;--global-fontSizes-display-lg:40px;--global-fontSizes-display-md:32px;--global-fontSizes-display-xl:48px;--global-fontSizes-display-xxl:60px;--global-fontSizes-display-xxxl:80px;--global-fontSizes-heading-lg:22px;--global-fontSizes-heading-md:16px;--global-fontSizes-heading-sm:14px;--global-fontSizes-heading-xl:26px;--global-fontSizes-heading-xs:12px;--global-fontWeights-body-bold:700;--global-fontWeights-body-default:325;--global-fontWeights-data-default:500;--global-fontWeights-display-default:500;--global-fontWeights-heading-default:500;--global-letterSpacing-body:-0.01em;--global-letterSpacing-data:0;--global-letterSpacing-display:-0.03em;--global-letterSpacing-heading:-0.02em;--global-lineHeights-body:1.4;--global-lineHeights-data:1.4;--global-lineHeights-display:1.2;--global-lineHeights-heading:1.3;}}/*!sc*/
:root{--component-button-action-default:#070707;--component-button-action-hover:#252525;--component-button-action-pressed:#4a4a4a;--component-button-onAction-default:#ffffff;--component-button-onAction-hover:#ffffff;--component-button-onAction-pressed:#ffffff;--component-dialog-overlay-bg:rgba(0,0,0,0.51);--global-bg-base-default:#ffffff;--global-bg-base-hover:#e8e8e8;--global-bg-base-pressed:#dbdbdb;--global-bg-baseAlt-default:#f5f5f5;--global-bg-baseAlt-hover:#e8e8e8;--global-bg-baseAlt-pressed:#dbdbdb;--global-bg-elevated-default:#ffffff;--global-bg-elevated-hover:#f5f5f5;--global-bg-elevated-pressed:#e8e8e8;--global-bg-page-default:#f5f5f5;--global-bg-page-hover:#e8e8e8;--global-bg-page-pressed:#dbdbdb;--global-bg-pageAlt-default:#ffffff;--global-bg-pageAlt-hover:#f5f5f5;--global-bg-pageAlt-pressed:#e8e8e8;--global-border-action-default:rgba(0,0,0,0.2);--global-border-action-hover:rgba(0,0,0,0.28);--global-border-action-pressed:rgba(0,0,0,0.35);--global-border-muted-default:rgba(0,0,0,0.09);--global-border-muted-hover:rgba(0,0,0,0.14);--global-border-muted-pressed:rgba(0,0,0,0.2);--global-content-inverted-default:#ffffff;--global-content-inverted-hover:rgba(255,255,255,0.93);--global-content-inverted-pressed:rgba(255,255,255,0.87);--global-content-invertedMuted-default:rgba(255,255,255,0.6);--global-content-invertedMuted-hover:rgba(255,255,255,0.53);--global-content-invertedMuted-pressed:rgba(255,255,255,0.46);--global-content-invertedSubtle-default:rgba(255,255,255,0.39);--global-content-invertedSubtle-hover:rgba(255,255,255,0.46);--global-content-invertedSubtle-pressed:rgba(255,255,255,0.53);--global-content-muted-default:rgba(0,0,0,0.6);--global-content-muted-hover:rgba(0,0,0,0.51);--global-content-muted-pressed:rgba(0,0,0,0.43);--global-content-regular-default:#000000;--global-content-regular-hover:rgba(0,0,0,0.95);--global-content-regular-pressed:rgba(0,0,0,0.9);--global-content-subtle-default:rgba(0,0,0,0.43);--global-content-subtle-hover:rgba(0,0,0,0.51);--global-content-subtle-pressed:rgba(0,0,0,0.6);--global-critical-action-default:#e54059;--global-critical-action-hover:#c6374d;--global-critical-action-pressed:#a72f41;--global-critical-muted-default:rgba(198,55,77,0.13);--global-critical-muted-hover:rgba(198,55,77,0.2);--global-critical-muted-pressed:rgba(198,55,77,0.27);--global-critical-onAction-default:#ffffff;--global-critical-onAction-hover:#feecef;--global-critical-onAction-pressed:#fedee2;--global-critical-onMuted-default:#a72f41;--global-critical-onMuted-hover:#8a2736;--global-critical-onMuted-pressed:#6e1f2b;--global-primary-action-default:#0b69b7;--global-primary-action-hover:#0d7cd8;--global-primary-action-pressed:#1c8eec;--global-primary-actionBase-default:#0d7cd8;--global-primary-actionBase-hover:#0b69b7;--global-primary-actionBase-pressed:#095696;--global-primary-muted-default:rgba(0,0,0,0.09);--global-primary-muted-hover:rgba(0,0,0,0.14);--global-primary-muted-pressed:rgba(0,0,0,0.2);--global-primary-onActionBase-default:#ffffff;--global-primary-onActionBase-hover:#e7f3fd;--global-primary-onActionBase-pressed:#d4e9fb;--global-primary-onMuted-default:#000000;--global-primary-onMuted-hover:#000000;--global-primary-onMuted-pressed:#000000;--global-primary-onSubtle-default:rgba(0,0,0,0.6);--global-primary-onSubtle-hover:rgba(0,0,0,0.68);--global-primary-onSubtle-pressed:rgba(0,0,0,0.76);--global-primary-subtle-default:rgba(0,0,0,0.04);--global-primary-subtle-hover:rgba(0,0,0,0.09);--global-primary-subtle-pressed:rgba(0,0,0,0.14);--global-secondary-action-default:rgba(0,0,0,0.09);--global-secondary-action-hover:rgba(0,0,0,0.14);--global-secondary-action-pressed:rgba(0,0,0,0.2);--global-secondary-muted-default:rgba(0,0,0,0.04);--global-secondary-muted-hover:rgba(0,0,0,0.09);--global-secondary-muted-pressed:rgba(0,0,0,0.14);--global-secondary-onAction-default:#000000;--global-secondary-onAction-hover:#000000;--global-secondary-onAction-pressed:#000000;--global-secondary-onMuted-default:rgba(0,0,0,0.6);--global-secondary-onMuted-hover:rgba(0,0,0,0.68);--global-secondary-onMuted-pressed:rgba(0,0,0,0.76);--global-success-action-default:#097d3f;--global-success-action-hover:#076232;--global-success-action-pressed:#054724;--global-success-muted-default:rgba(13,180,91,0.13);--global-success-muted-hover:rgba(13,180,91,0.2);--global-success-muted-pressed:rgba(13,180,91,0.27);--global-success-onAction-default:#ffffff;--global-success-onAction-hover:rgba(255,255,255,0.93);--global-success-onAction-pressed:rgba(255,255,255,0.87);--global-success-onMuted-default:#097d3f;--global-success-onMuted-hover:#076232;--global-success-onMuted-pressed:#054724;--global-warning-action-default:#c38b08;--global-warning-action-hover:#a07206;--global-warning-action-pressed:#7d5905;--global-warning-muted-default:rgba(230,164,9,0.13);--global-warning-muted-hover:rgba(230,164,9,0.2);--global-warning-muted-pressed:rgba(230,164,9,0.27);--global-warning-onAction-default:#ffffff;--global-warning-onAction-hover:#fff7e6;--global-warning-onAction-pressed:#fef1d3;--global-warning-onMuted-default:#7d5905;--global-warning-onMuted-hover:#5a4004;--global-warning-onMuted-pressed:#372702;--internal-focusOutline:#8ba9ed;}/*!sc*/
data-styled.g85[id="sc-global-gWmEJC1"]{content:"sc-global-gWmEJC1,"}/*!sc*/
:root{--global-fontStack-fallback:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;--global-fontStack-data-fallback:ui-monospace,Menlo,Monaco,"Cascadia Mono","Segoe UI Mono","Roboto Mono",monospace;--global-fontStack-display:var(--global-fontFamilies-display),var(--global-fontStack-fallback);--global-fontStack-heading:var(--global-fontFamilies-heading),var(--global-fontStack-fallback);--global-fontStack-body:var(--global-fontFamilies-body),var(--global-fontStack-fallback);--global-fontStack-button:var(--component-fontFamilies-button),var(--global-fontStack-fallback);--global-fontStack-data:var(--global-fontFamilies-data),var(--global-fontStack-data-fallback);}/*!sc*/
data-styled.g86[id="sc-global-dGmOaz1"]{content:"sc-global-dGmOaz1,"}/*!sc*/
.esHYKo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.esHYKo,.esHYKo svg{height:var(--global-space-24);width:var(--global-space-24);}/*!sc*/
.esHYKo svg{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;fill:transparent;stroke-width:1.2px;}/*!sc*/
.esHYKo svg *{-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);vector-effect:non-scaling-stroke;}/*!sc*/
.esHYKo svg *[data-color],.esHYKo svg *[data-fill]{fill:var(--global-content-regular-default);}/*!sc*/
data-styled.g95[id="sc-bXTejn"]{content:"esHYKo,"}/*!sc*/
.AnXnO{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;position:relative;box-sizing:border-box;cursor:text;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
data-styled.g109[id="sc-eGPXGI"]{content:"AnXnO,"}/*!sc*/
.TnasG{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;background:var(--global-secondary-muted-default);border-color:transparent;border-style:solid;border-width:1px;border-radius:var(--global-radius-md);box-sizing:border-box;outline-offset:-2px;overflow:hidden;}/*!sc*/
.TnasG:focus-within{outline:solid Highlight;outline:solid -webkit-focus-ring-color;border-color:transparent;}/*!sc*/
.TnasG:focus-within:hover{border-color:transparent;}/*!sc*/
.TnasG:focus-within:active{border-color:transparent;}/*!sc*/
.TnasG:hover{background:var(--global-secondary-muted-hover);border-color:transparent;}/*!sc*/
.TnasG:active{background:var(--global-secondary-muted-pressed);border-color:transparent;}/*!sc*/
data-styled.g110[id="sc-hAcGzb"]{content:"TnasG,"}/*!sc*/
.fghAEj{color:var(--global-content-regular-default);-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;box-sizing:border-box;border:none;display:block;line-height:1.5;resize:none;text-align:left;outline:none;width:100%;min-height:38px;font-size:var(--global-fontSizes-body-md) !important;-webkit-transition:border-color 300ms cubic-bezier(0.19,1,0.22,1);transition:border-color 300ms cubic-bezier(0.19,1,0.22,1);padding:8px 12px 8px;}/*!sc*/
.fghAEj::-webkit-input-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.fghAEj::-moz-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.fghAEj:-ms-input-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.fghAEj::placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
data-styled.g111[id="sc-kYHfwS"]{content:"fghAEj,"}/*!sc*/
.iIZorQ{display:block;width:100%;}/*!sc*/
.iIZorQ:has([data-com-onepassword-filled]) .sc-kYHfwS,.iIZorQ:has([data-com-onepassword-filled]) .sc-hAcGzb{box-shadow:0 0 0 38px #dceeff inset;}/*!sc*/
.iIZorQ:has([data-com-onepassword-filled]) .sc-hAcGzb:focus-within{border-width:2px;}/*!sc*/
data-styled.g112[id="sc-xiLah"]{content:"iIZorQ,"}/*!sc*/
.fJpKwY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1.5;box-sizing:border-box;z-index:1;font-size:var(--global-fontSizes-body-md) !important;padding:8px 0 8px 12px;min-height:40px;color:var(--global-content-muted-default);}/*!sc*/
.fJpKwY svg{fill:var(--global-content-muted-default);}/*!sc*/
.fJpKwY div{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}/*!sc*/
data-styled.g115[id="sc-bQtKYq"]{content:"fJpKwY,"}/*!sc*/
.fhMfRy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:0;margin:0;border:none;background:transparent;}/*!sc*/
data-styled.g116[id="sc-fXEqDS"]{content:"fhMfRy,"}/*!sc*/
.eJRdHZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;position:relative;}/*!sc*/
data-styled.g118[id="sc-jWUzzU"]{content:"eJRdHZ,"}/*!sc*/
.gqUnJB{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:0;pointer-events:none;position:fixed;right:0;top:0;padding:var(--global-space-24);gap:var(--global-space-12);z-index:2000;}/*!sc*/
@media (min-width:49.75rem){.gqUnJB{-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}}/*!sc*/
@media (min-width:49.75rem){.gqUnJB{gap:var(--global-space-16);}}/*!sc*/
data-styled.g119[id="sc-eFegNN"]{content:"gqUnJB,"}/*!sc*/
.irbUzf{margin-bottom:var(--global-space-16);}/*!sc*/
.eEouwY{margin-bottom:var(--global-space-4);}/*!sc*/
.jiJZmg{margin-bottom:var(--global-space-8);}/*!sc*/
.ihieXj{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.bSEuuo{text-transform:uppercase;}/*!sc*/
.haKdsN{margin-top:var(--global-space-32);}/*!sc*/
data-styled.g122[id="sc-jlRLRk"]{content:"cKzFZj,irbUzf,eEouwY,jiJZmg,ihieXj,bSEuuo,haKdsN,"}/*!sc*/
.egHTju{position:relative;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding:var(--global-space-16) 0rem;}/*!sc*/
.egHTju:hover{opacity:0.75;}/*!sc*/
.dDSsRe{position:relative;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding:var(--global-space-16) 0rem;}/*!sc*/
data-styled.g128[id="sc-fXeWAj"]{content:"egHTju,dDSsRe,"}/*!sc*/
.liMwES{color:var(--global-constant-black-default);}/*!sc*/
data-styled.g130[id="sc-gyElHZ"]{content:"liMwES,"}/*!sc*/
.gnJSiD{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;list-style:none;margin:0;padding:0;}/*!sc*/
data-styled.g131[id="sc-gjNHFA"]{content:"gnJSiD,"}/*!sc*/
.guSaTg{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}/*!sc*/
data-styled.g132[id="sc-fmciRz"]{content:"guSaTg,"}/*!sc*/
.gByBpE{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g133[id="sc-eXlEPa"]{content:"gByBpE,"}/*!sc*/
.bfpDsJ{border-radius:var(--global-radius-md);cursor:default;position:absolute;right:0;width:auto;z-index:1000;}/*!sc*/
data-styled.g134[id="sc-iFMAIt"]{content:"bfpDsJ,"}/*!sc*/
.feiJaZ{background-color:var(--global-bg-base-default);color:var(--global-content-regular-default);height:40px;box-sizing:border-box !important;border:1px solid var(--global-border-action-default);border-radius:var(--global-radius-md);font-size:var(--global-fontSizes-heading-sm) !important;line-height:1.5;padding:var(--global-space-4) var(--global-space-12);padding-left:2.25rem;text-overflow:ellipsis;-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);-webkit-transition-property:width;transition-property:width;width:13rem;z-index:900;}/*!sc*/
.feiJaZ::-webkit-input-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.feiJaZ::-moz-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.feiJaZ:-ms-input-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.feiJaZ::placeholder{color:var(--global-content-muted-default);}/*!sc*/
data-styled.g135[id="sc-iqVWFU"]{content:"feiJaZ,"}/*!sc*/
.iPdfKG{position:relative;left:var(--global-space-8);-webkit-transition:all 300ms cubic-bezier(0.19,1,0.22,1);transition:all 300ms cubic-bezier(0.19,1,0.22,1);-webkit-transition-property:left,width;transition-property:left,width;z-index:1000;top:1px;width:0px;}/*!sc*/
data-styled.g136[id="sc-eWfVMQ"]{content:"iPdfKG,"}/*!sc*/
.eXJfwD{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:var(--global-bg-base-default);border-bottom:1px solid var(--global-bg-baseAlt-default);box-sizing:border-box;display:grid;grid-column-gap:var(--global-space-16);grid-template-columns:auto auto;grid-template-rows:64px;padding:0 var(--global-space-16);position:fixed;width:100%;}/*!sc*/
data-styled.g137[id="sc-kTLmzF"]{content:"eXJfwD,"}/*!sc*/
.hSsyeD{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g138[id="sc-dwsnSq"]{content:"hSsyeD,"}/*!sc*/
.kJhvsN{justify-self:end;}/*!sc*/
data-styled.g139[id="sc-jtXEFf"]{content:"kJhvsN,"}/*!sc*/
.kGKkAh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:var(--global-space-16) var(--global-space-16) var(--global-space-16) 0rem;}/*!sc*/
.kGKkAh:hover{opacity:0.8;}/*!sc*/
data-styled.g141[id="sc-kiIyQV"]{content:"kGKkAh,"}/*!sc*/
.kRRHXs{padding-left:var(--global-space-16);padding-right:var(--global-space-16);margin-left:auto;margin-right:auto;}/*!sc*/
.kRRHXs [data-cardlayout-edgeless='true']{margin-left:calc(var(--global-space-16) * -1);width:calc(100% + var(--global-space-16) * 2);}/*!sc*/
.kRRHXs [data-cardlayout-edgeless='true'] [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}/*!sc*/
@media (min-width:36.75rem){.kRRHXs{padding-left:var(--global-space-40);padding-right:var(--global-space-40);}.kRRHXs [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}}/*!sc*/
@media (min-width:61.125rem){.kRRHXs{max-width:984px;}}/*!sc*/
data-styled.g163[id="sc-bSqaIl"]{content:"kRRHXs,"}/*!sc*/
.McnWk{padding-left:var(--global-space-16);padding-right:var(--global-space-16);margin-left:auto;margin-right:auto;}/*!sc*/
.McnWk [data-cardlayout-edgeless='true']{margin-left:calc(var(--global-space-16) * -1);width:calc(100% + var(--global-space-16) * 2);}/*!sc*/
.McnWk [data-cardlayout-edgeless='true'] [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}/*!sc*/
@media (min-width:36.75rem){.McnWk{padding-left:var(--global-space-40);padding-right:var(--global-space-40);}.McnWk [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}}/*!sc*/
@media (min-width:61.125rem){.McnWk{max-width:648px;}}/*!sc*/
data-styled.g164[id="sc-jvvksu"]{content:"McnWk,"}/*!sc*/
body{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);background-color:var(--background-color-fill);--background-color-mobile-fill:var(--global-bg-page-default);--background-color-mobile-transparent:rgba(245,245,245,0);--background-color-desktop-fill:var(--global-bg-page-default);--background-color-desktop-transparent:rgba(245,245,245,0);--background-color-fill:var(--background-color-mobile-fill);--background-color-transparent:var(--background-color-mobile-transparent);}/*!sc*/
@media (min-width:36.75rem){body{--background-color-fill:var(--background-color-desktop-fill);--background-color-transparent:var(--background-color-desktop-transparent);}}/*!sc*/
data-styled.g189[id="sc-global-fRmjWM1"]{content:"sc-global-fRmjWM1,"}/*!sc*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}/*!sc*/
body{min-width:320px;margin:0;color:var(--global-content-regular-default);font-family:var(--global-fontStack-body);font-size:var(--global-fontSizes-body-lg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;}/*!sc*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block;}/*!sc*/
audio,canvas,progress,video{display:inline-block;vertical-align:baseline;}/*!sc*/
audio:not([controls]){display:none;height:0;}/*!sc*/
a{-webkit-text-decoration:none;text-decoration:none;cursor:pointer;background-color:transparent;}/*!sc*/
a:active,a:hover{outline:0;}/*!sc*/
p{margin:0;}/*!sc*/
p,ol{font-size:var(--global-fontSizes-body-md);line-height:1.5;}/*!sc*/
mark{background:var(--global-warning-muted-default);color:var(--global-content-regular-default);}/*!sc*/
img{border:0;}/*!sc*/
svg:not(:root){overflow:hidden;}/*!sc*/
figure{margin:1em 40px;}/*!sc*/
hr{box-sizing:content-box;height:0;}/*!sc*/
pre{overflow:auto;}/*!sc*/
code,kbd,pre,samp{font-family:ui-monospace,monospace;font-size:md:var(--global-fontSizes-data-md);font-feature-settings:normal;font-variation-settings:normal;font-weight:var(--global-fontWeights-data-default);line-height:var(--global-lineHeights-data);-webkit-letter-spacing:var(--global-letterSpacing-data);-moz-letter-spacing:var(--global-letterSpacing-data);-ms-letter-spacing:var(--global-letterSpacing-data);letter-spacing:var(--global-letterSpacing-data);}/*!sc*/
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;}/*!sc*/
button{overflow:visible;}/*!sc*/
button,select{text-transform:none;}/*!sc*/
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;}/*!sc*/
button[disabled],html input[disabled]{cursor:default;}/*!sc*/
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}/*!sc*/
iframe{color-scheme:normal;}/*!sc*/
input{line-height:normal;}/*!sc*/
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}/*!sc*/
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto;}/*!sc*/
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}/*!sc*/
fieldset{border:1px solid var(--global-border-muted-default);margin:0 2px;padding:0.35em 0.625em 0.75em;}/*!sc*/
legend{border:0;padding:0;}/*!sc*/
textarea{overflow:auto;}/*!sc*/
optgroup{font-weight:bold;}/*!sc*/
table{border-collapse:collapse;border-spacing:0;}/*!sc*/
td,th{padding:0;}/*!sc*/
data-styled.g190[id="sc-global-cBNAym1"]{content:"sc-global-cBNAym1,"}/*!sc*/
.gqVWhu{display:none;}/*!sc*/
@media (min-width:36.75rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:49.75rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gqVWhu{display:block;}}/*!sc*/
.gbWrlx{display:block;}/*!sc*/
@media (min-width:36.75rem){.gbWrlx{display:block;}}/*!sc*/
@media (min-width:49.75rem){.gbWrlx{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gbWrlx{display:none;}}/*!sc*/
@media (min-width:61.125rem){.gbWrlx{display:none;}}/*!sc*/
.cinZIi{display:none;}/*!sc*/
@media (min-width:36.75rem){.cinZIi{display:none;}}/*!sc*/
@media (min-width:49.75rem){.cinZIi{display:none;}}/*!sc*/
@media (min-width:61.125rem){.cinZIi{display:block;}}/*!sc*/
@media (min-width:61.125rem){.cinZIi{display:block;}}/*!sc*/
data-styled.g191[id="sc-pr0f0g-0"]{content:"gqVWhu,gbWrlx,cinZIi,"}/*!sc*/
.kZALel{width:100%;}/*!sc*/
data-styled.g213[id="sc-1aplu8i-0"]{content:"kZALel,"}/*!sc*/
.dJleju{width:100%;}/*!sc*/
data-styled.g214[id="sc-1aplu8i-1"]{content:"dJleju,"}/*!sc*/
.diaATw{z-index:2147483647;padding:var(--global-space-12);color:var(--global-content-inverted-default);background-color:var(--global-success-action-default);font-size:var(--global-fontSizes-body-lg);font-weight:var(--global-fontWeights-body-bold);position:fixed;left:0;top:-9999px;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:-webkit-transform 0.3s,top 0s 0.3s;-webkit-transition:transform 0.3s,top 0s 0.3s;transition:transform 0.3s,top 0s 0.3s;}/*!sc*/
.diaATw:focus{top:0;-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);-webkit-transition:-webkit-transform 0.3s;-webkit-transition:transform 0.3s;transition:transform 0.3s;}/*!sc*/
data-styled.g227[id="sc-1opqsst-0"]{content:"diaATw,"}/*!sc*/
.kYEDjN{margin-top:64px;}/*!sc*/
@media (min-width:61.125rem){.kYEDjN{margin-top:64px;}}/*!sc*/
data-styled.g265[id="sc-17dklxu-0"]{content:"kYEDjN,"}/*!sc*/
.cyhQnv{background-color:var(--global-bg-base-default);box-shadow:0 var(--global-borderWidth-thin) 0 0 var(--global-constant-blackSubtle-default);left:0;position:fixed;top:0;z-index:var(--global-layer-11);white-space:nowrap;width:100%;display:block;}/*!sc*/
@media (min-width:61.125rem){.cyhQnv{display:none;}}/*!sc*/
data-styled.g273[id="sc-vmcai-0"]{content:"cyhQnv,"}/*!sc*/
.dBbzEz > *{z-index:calc(var(--global-layer-11) + 1);}/*!sc*/
data-styled.g274[id="sc-vmcai-1"]{content:"dBbzEz,"}/*!sc*/
.mobileNavbar-enter{height:0;overflow:hidden;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}/*!sc*/
.mobileNavbar-enter-active{height:100%;}/*!sc*/
.mobileNavbar-exit{height:100%;-webkit-transition:all 0.8s ease-in;transition:all 0.8s ease-in;}/*!sc*/
.mobileNavbar-exit-active{height:0;overflow:hidden;}/*!sc*/
.mobileNavbar-exit-active form{opacity:0;}/*!sc*/
data-styled.g275[id="sc-global-hHPxMq1"]{content:"sc-global-hHPxMq1,"}/*!sc*/
.kCplKc{z-index:var(--global-layer-11);display:none;}/*!sc*/
@media (min-width:61.125rem){.kCplKc{display:block;}}/*!sc*/
.kCplKc header{z-index:var(--global-layer-12);}/*!sc*/
data-styled.g276[id="sc-xb99u9-0"]{content:"kCplKc,"}/*!sc*/
.iSZcRT{width:100%;position:fixed;z-index:var(--global-layer-12);top:0;}/*!sc*/
data-styled.g337[id="sc-15jjvy2-0"]{content:"iSZcRT,"}/*!sc*/
.fJPhOg{text-align:center;}/*!sc*/
data-styled.g338[id="sc-qfokmo-0"]{content:"fJPhOg,"}/*!sc*/
.jzrvjz{display:block;}/*!sc*/
data-styled.g346[id="sc-1khzwz0-0"]{content:"jzrvjz,"}/*!sc*/
.jeokUF{width:100%;overflow:visible;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g347[id="sc-1g6snea-0"]{content:"jeokUF,"}/*!sc*/
.ewIhgk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:var(--global-space-32);}/*!sc*/
data-styled.g397[id="sc-137kp8k-0"]{content:"ewIhgk,"}/*!sc*/
.lbjiyO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:var(--global-space-32);-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;margin-top:var(--global-space-32);width:100%;}/*!sc*/
data-styled.g398[id="sc-137kp8k-1"]{content:"lbjiyO,"}/*!sc*/
.cHAFXQ{display:inline-block;position:relative;}/*!sc*/
data-styled.g581[id="sc-e3beep-0"]{content:"cHAFXQ,"}/*!sc*/
.joDnRq{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;}/*!sc*/
data-styled.g708[id="sc-fh6tmm-0"]{content:"joDnRq,"}/*!sc*/
.hbrUXj{margin-left:var(--global-space-12);margin-right:var(--global-space-4);}/*!sc*/
data-styled.g709[id="sc-fh6tmm-1"]{content:"hbrUXj,"}/*!sc*/
.kOJquo{margin-left:var(--global-space-4);margin-right:var(--global-space-12);}/*!sc*/
data-styled.g710[id="sc-fh6tmm-2"]{content:"kOJquo,"}/*!sc*/
.fapWEE{display:none;}/*!sc*/
@media (min-width:36.75rem){.fapWEE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;gap:4px;margin-top:calc(var(--global-space-12) * -1);}}/*!sc*/
data-styled.g711[id="sc-dt7zip-0"]{content:"fapWEE,"}/*!sc*/
.furbZZ{color:var(--global-primary-action-default);cursor:pointer;font-size:var(--global-fontSizes-heading-xl);opacity:0.33;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
data-styled.g712[id="sc-dt7zip-1"]{content:"furbZZ,"}/*!sc*/
.iHGIhv{color:var(--global-primary-action-default);cursor:auto;font-size:var(--global-fontSizes-heading-xl);opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
data-styled.g713[id="sc-dt7zip-2"]{content:"iHGIhv,"}/*!sc*/
.dlXIVJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g714[id="sc-1dmyb6b-0"]{content:"dlXIVJ,"}/*!sc*/
.kbuAEa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;overflow:visible;width:100%;max-width:100vw;}/*!sc*/
@media (min-width:36.75rem){.kbuAEa{margin-left:var(--global-space-12);margin-right:var(--global-space-12);}}/*!sc*/
data-styled.g715[id="sc-1dmyb6b-1"]{content:"kbuAEa,"}/*!sc*/
.hLtYbF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;grid-gap:16px;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;margin-left:0;margin-right:0;padding-top:var(--global-space-16);padding-bottom:var(--global-space-24);}/*!sc*/
@media (min-width:36.75rem){.hLtYbF{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:hidden;-webkit-scroll-behavior:auto;-moz-scroll-behavior:auto;-ms-scroll-behavior:auto;scroll-behavior:auto;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;--carousel-items-horizontal-padding:var(--global-space-12);padding-left:var(--carousel-items-horizontal-padding);padding-right:var(--carousel-items-horizontal-padding);-webkit-mask:linear-gradient( to right,var(--global-constant-blackSubtle-default) 0,var(--global-constant-black-default) var(--carousel-items-horizontal-padding),var(--global-constant-black-default) calc(100% - var(--carousel-items-horizontal-padding)),var(--global-constant-blackSubtle-default) 100% );mask:linear-gradient( to right,var(--global-constant-blackSubtle-default) 0,var(--global-constant-black-default) var(--carousel-items-horizontal-padding),var(--global-constant-black-default) calc(100% - var(--carousel-items-horizontal-padding)),var(--global-constant-blackSubtle-default) 100% );}.hLtYbF::-webkit-scrollbar{display:none;}}/*!sc*/
data-styled.g716[id="sc-1dmyb6b-2"]{content:"hLtYbF,"}/*!sc*/
.iwysrW{display:block;overflow:visible;}/*!sc*/
@media (min-width:36.75rem){.iwysrW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:calc(33.333333333333336% - 10.666666666666666px);max-width:380px;}}/*!sc*/
.cLMLuh{display:none;overflow:visible;}/*!sc*/
@media (min-width:36.75rem){.cLMLuh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:calc(33.333333333333336% - 10.666666666666666px);max-width:380px;}}/*!sc*/
data-styled.g717[id="sc-1dmyb6b-3"]{content:"iwysrW,cLMLuh,"}/*!sc*/
.etQDMC{margin-top:var(--global-space-8);max-width:94%;display:block;}/*!sc*/
@media (min-width:36.75rem){.etQDMC{display:none;}}/*!sc*/
data-styled.g718[id="sc-1dmyb6b-4"]{content:"etQDMC,"}/*!sc*/
.ieKKhT{box-sizing:border-box;padding:6px 6px 8px;}/*!sc*/
data-styled.g719[id="sc-148r5xf-0"]{content:"ieKKhT,"}/*!sc*/
.kxMuSq{width:100%;box-sizing:border-box;padding:var(--global-space-56) 0 var(--global-space-40);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:visible;}/*!sc*/
data-styled.g720[id="sc-l4u1zt-0"]{content:"kxMuSq,"}/*!sc*/
.gSEDWh{box-sizing:border-box;width:100%;}/*!sc*/
@media (min-width:36.75rem){.gSEDWh{width:calc(100% - calc(var(--global-space-40) * 2));box-sizing:content-box;}}/*!sc*/
data-styled.g721[id="sc-l4u1zt-1"]{content:"gSEDWh,"}/*!sc*/
.blDkmw{background-color:var(--global-content-regular-default);box-sizing:border-box;padding:var(--global-space-56) 0;width:100%;}/*!sc*/
data-styled.g752[id="sc-162u50-0"]{content:"blDkmw,"}/*!sc*/
.jQowKi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);}/*!sc*/
@media (min-width:36.75rem){.jQowKi{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-flex-direction:revert;-ms-flex-direction:revert;flex-direction:revert;}}/*!sc*/
data-styled.g753[id="sc-162u50-1"]{content:"jQowKi,"}/*!sc*/
.frISWG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;gap:var(--global-space-16);margin-bottom:var(--global-space-8);}/*!sc*/
@media (min-width:36.75rem){.frISWG{-webkit-box-pack:revert;-webkit-justify-content:revert;-ms-flex-pack:revert;justify-content:revert;}}/*!sc*/
data-styled.g754[id="sc-162u50-2"]{content:"frISWG,"}/*!sc*/
.YblFM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;gap:var(--global-space-8);}/*!sc*/
data-styled.g755[id="sc-162u50-3"]{content:"YblFM,"}/*!sc*/
.hsOAcR{color:var(--global-content-invertedMuted-default);}/*!sc*/
data-styled.g756[id="sc-162u50-4"]{content:"hsOAcR,"}/*!sc*/
.ilCpTy{color:var(--global-content-inverted-default);}/*!sc*/
.ilCpTy svg{fill:var(--global-content-inverted-default);}/*!sc*/
.ilCpTy:hover{color:var(--global-content-inverted-hover);}/*!sc*/
.ilCpTy:hover svg{fill:var(--global-content-inverted-hover);}/*!sc*/
data-styled.g757[id="sc-162u50-5"]{content:"ilCpTy,"}/*!sc*/
.dEtMtZ{color:var(--global-content-invertedMuted-default);}/*!sc*/
.dEtMtZ svg{fill:var(--global-content-invertedMuted-default);}/*!sc*/
.dEtMtZ:hover{color:var(--global-content-invertedMuted-hover);}/*!sc*/
.dEtMtZ:hover svg{fill:var(--global-content-invertedMuted-hover);}/*!sc*/
data-styled.g758[id="sc-162u50-6"]{content:"dEtMtZ,"}/*!sc*/
.hsTbSd{position:relative;}/*!sc*/
.hsTbSd::after{content:'';display:block;position:absolute;bottom:0;z-index:0;width:100%;border-bottom:var(--global-borderWidth-thin) solid var(--global-border-muted-default);}/*!sc*/
data-styled.g759[id="sc-163nd07-0"]{content:"hsTbSd,"}/*!sc*/
.kCVCfQ{background-color:var(--background-color-fill);overflow:auto hidden;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;}/*!sc*/
.kCVCfQ::-webkit-scrollbar{display:none;}/*!sc*/
.kCVCfQ::before,.kCVCfQ::after{content:'';display:block;position:absolute;top:0;bottom:0;width:var(--global-space-32);z-index:2;pointer-events:none;-webkit-transition:opacity 350ms ease;transition:opacity 350ms ease;}/*!sc*/
.kCVCfQ::before{left:0;background-image:linear-gradient(to left,var(--background-color-transparent),var(--background-color-fill));opacity:0;}/*!sc*/
.kCVCfQ::after{right:0;background-image:linear-gradient(to right,var(--background-color-transparent),var(--background-color-fill));opacity:0;}/*!sc*/
data-styled.g760[id="sc-163nd07-1"]{content:"kCVCfQ,"}/*!sc*/
.jbqtqc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:0;margin:auto !important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
data-styled.g761[id="sc-163nd07-2"]{content:"jbqtqc,"}/*!sc*/
.wuDwR{display:block;}/*!sc*/
.wuDwR:first-child{margin-left:auto;}/*!sc*/
.wuDwR:last-child{margin-right:auto;}/*!sc*/
data-styled.g762[id="sc-163nd07-3"]{content:"wuDwR,"}/*!sc*/
.cinyTP{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:var(--global-space-40);margin:0 var(--global-space-16);font-size:var(--global-fontSizes-heading-sm);font-weight:var(--global-fontWeights-body-default);font-weight:var(--global-fontWeights-heading-default);color:var(--global-content-regular-default);}/*!sc*/
.cinyTP[aria-current='page']{color:var(--global-primary-action-default);}/*!sc*/
.cinyTP[aria-current='page']::after{content:'';display:block;position:absolute;bottom:0;left:20%;width:60%;height:1px;background-color:var(--global-primary-action-default);z-index:1;}/*!sc*/
data-styled.g763[id="sc-163nd07-4"]{content:"cinyTP,"}/*!sc*/
.zttnK{position:relative;color:var(--global-content-regular-default);text-align:center;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:block;}/*!sc*/
data-styled.g766[id="sc-1b5vbhn-0"]{content:"zttnK,"}/*!sc*/
.hqVCmM{background-color:transparent;border:none;--icon-color:var(--global-brand-youtubeBlack);}/*!sc*/
.hqVCmM:hover,.hqVCmM:active,.hqVCmM:focus{background-color:transparent;border:none;}/*!sc*/
data-styled.g767[id="sc-1b5vbhn-1"]{content:"hqVCmM,"}/*!sc*/
.gTqRpn{aspect-ratio:3 / 1;border-radius:0;margin:0px;position:relative;margin:0 auto;}/*!sc*/
@media (min-width:36.75rem){.gTqRpn{aspect-ratio:4 / 1;}}/*!sc*/
data-styled.g768[id="sc-1b5vbhn-2"]{content:"gTqRpn,"}/*!sc*/
.gIwlKT{padding:var(--global-space-24);box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:0 var(--global-space-24);margin-top:calc(-1 * 64px);position:relative;padding-bottom:var(--global-space-32);}/*!sc*/
@media (min-width:36.75rem){.gIwlKT{margin-top:calc(-1 * 64px);}}/*!sc*/
data-styled.g769[id="sc-1b5vbhn-3"]{content:"gIwlKT,"}/*!sc*/
.cAVPxl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:horizontal;-ms-flex-direction:horizontal;flex-direction:horizontal;gap:4px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g770[id="sc-1b5vbhn-4"]{content:"cAVPxl,"}/*!sc*/
.RzWue{margin-block-start:0px;list-style:none;padding:0px;}/*!sc*/
data-styled.g771[id="sc-1b5vbhn-5"]{content:"RzWue,"}/*!sc*/
.bFPwFa{display:inline-block;}/*!sc*/
.bFPwFa:not(:first-child):before{content:'•';font-size:12px;padding:0px 8px;color:var(--global-content-muted-default);}/*!sc*/
data-styled.g772[id="sc-1b5vbhn-6"]{content:"bFPwFa,"}/*!sc*/
.YnMro{max-width:800px;margin:0 auto;}/*!sc*/
data-styled.g774[id="sc-1b5vbhn-8"]{content:"YnMro,"}/*!sc*/
.vxXYJ{max-width:220px;margin:auto;}/*!sc*/
data-styled.g775[id="sc-1b5vbhn-9"]{content:"vxXYJ,"}/*!sc*/
.iotdiL{position:absolute;top:calc(64px + var(--global-space-12));right:var(--global-space-12);}/*!sc*/
@media (min-width:36.75rem){.iotdiL{top:calc(64px + var(--global-space-12));right:var(--global-space-24);}}/*!sc*/
data-styled.g777[id="sc-1b5vbhn-11"]{content:"iotdiL,"}/*!sc*/
.iuYQrO{z-index:var(--global-layer-11);position:fixed;right:0;-webkit-transition:var(--global-transition-slow-easing) var(--global-transition-slow-duration);transition:var(--global-transition-slow-easing) var(--global-transition-slow-duration);width:inherit;box-sizing:border-box;padding:var(--global-space-16);bottom:0;-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);border-bottom:0;border-top:var(--global-borderWidth-thin) solid var(--global-border-muted-default);background-color:var(--global-bg-base-default);left:0;}/*!sc*/
@media (min-width:36.75rem){.iuYQrO{border-top:var(--global-borderWidth-thin) solid var(--global-border-muted-default);}}/*!sc*/
@media (min-width:36.75rem){.iuYQrO{left:68px;}}/*!sc*/
@media (min-width:61.125rem){.iuYQrO{left:248px;}}/*!sc*/
data-styled.g782[id="sc-8tqpk9-0"]{content:"iuYQrO,"}/*!sc*/
.cDNaZd{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;}/*!sc*/
data-styled.g798[id="sc-1kelcyo-0"]{content:"cDNaZd,"}/*!sc*/
.lgUuRc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);width:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
@media (min-width:61.125rem){.lgUuRc{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
data-styled.g814[id="sc-ozt2d0-0"]{content:"lgUuRc,"}/*!sc*/
.caHMNA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-8);}/*!sc*/
data-styled.g815[id="sc-ozt2d0-1"]{content:"caHMNA,"}/*!sc*/
.eHOjuK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:var(--global-space-4);}/*!sc*/
data-styled.g816[id="sc-ozt2d0-2"]{content:"eHOjuK,"}/*!sc*/
.hGJiuv{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g1010[id="sc-zut8gy-0"]{content:"hGJiuv,"}/*!sc*/
.jxqpNa{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;}/*!sc*/
.jxqpNa img{max-width:100%;}/*!sc*/
.jxqpNa a{color:var(--global-primary-action-default);font-weight:var(--global-fontWeights-body-bold);-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.jxqpNa a:hover{color:var(--global-primary-action-hover);}/*!sc*/
.jxqpNa a:active{color:var(--global-primary-action-pressed);}/*!sc*/
.jxqpNa p:empty{overflow:auto;margin-bottom:1em !important;}/*!sc*/
.jxqpNa ul,.jxqpNa ol{margin-block-start:0;margin-block-end:0;padding-inline-start:calc(var(--global-space-16) + var(--global-space-4));}/*!sc*/
data-styled.g1018[id="sc-6emzep-0"]{content:"jxqpNa,"}/*!sc*/
.jNaFcj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:start;-webkit-box-align:start;-ms-flex-align:start;align-items:start;}/*!sc*/
data-styled.g1019[id="sc-1mq9x0f-0"]{content:"jNaFcj,"}/*!sc*/
.fQuYwT{height:29px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;margin-top:2px;}/*!sc*/
data-styled.g1020[id="sc-1mq9x0f-1"]{content:"fQuYwT,"}/*!sc*/
.gjQPbG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;padding:0;overflow:hidden;border-radius:var(--global-radius-lg);background-color:var(--global-bg-base-default);border-color:var(--component-button-action-default);border-width:var(--global-borderWidth-thick);margin:0 var(--global-borderWidth-thick) var(--global-borderWidth-thick);border-style:none;border-top:none;}/*!sc*/
.ihRjLB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;padding:0;overflow:hidden;border-radius:0 0 var(--global-radius-lg) var(--global-radius-lg);background-color:var(--global-bg-base-default);border-color:var(--component-button-action-default);border-width:var(--global-borderWidth-thick);margin:0;border-style:solid;border-top:none;}/*!sc*/
data-styled.g1021[id="sc-1a2jhmw-0"]{content:"gjQPbG,ihRjLB,"}/*!sc*/
.bIlSfu{display:none;width:100%;background-color:var(--component-button-action-default);color:var(--component-button-onAction-default);border-radius:var(--global-radius-lg) var(--global-radius-lg) 0 0;text-align:center;}/*!sc*/
@media (min-width:36.75rem){.bIlSfu{display:block;visibility:hidden;}}/*!sc*/
.iPNPsh{display:block;width:100%;background-color:var(--component-button-action-default);color:var(--component-button-onAction-default);border-radius:var(--global-radius-lg) var(--global-radius-lg) 0 0;text-align:center;}/*!sc*/
@media (min-width:36.75rem){.iPNPsh{display:block;visibility:visible;}}/*!sc*/
data-styled.g1022[id="sc-1a2jhmw-1"]{content:"bIlSfu,iPNPsh,"}/*!sc*/
.dggRUR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;gap:var(--global-space-12);padding:var(--global-space-16);}/*!sc*/
@media (min-width:36.75rem){.dggRUR{gap:var(--global-space-16);padding-top:var(--global-space-24);padding-bottom:var(--global-space-24);}}/*!sc*/
data-styled.g1025[id="sc-1a2jhmw-4"]{content:"dggRUR,"}/*!sc*/
.dNpzBR{-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;}/*!sc*/
data-styled.g1026[id="sc-1a2jhmw-5"]{content:"dNpzBR,"}/*!sc*/
.gPLDUn{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;}/*!sc*/
data-styled.g1027[id="sc-1a2jhmw-6"]{content:"gPLDUn,"}/*!sc*/
.kClFZP{-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;}/*!sc*/
data-styled.g1028[id="sc-1a2jhmw-7"]{content:"kClFZP,"}/*!sc*/
.kPBzPp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);width:100%;}/*!sc*/
data-styled.g1029[id="sc-fyi050-0"]{content:"kPBzPp,"}/*!sc*/
.cRmHzU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-12);text-align:center;}/*!sc*/
data-styled.g1030[id="sc-fyi050-1"]{content:"cRmHzU,"}/*!sc*/
.gUsbAk{width:100%;}/*!sc*/
data-styled.g1031[id="sc-fyi050-2"]{content:"gUsbAk,"}/*!sc*/
.dofSdt{position:absolute;width:100%;height:100%;overflow:hidden;background-color:var(--global-bg-page-default);}/*!sc*/
.dofSdt:hover .sc-1fqtlwo-0{-webkit-transition:opacity 300ms ease-in-out;transition:opacity 300ms ease-in-out;opacity:1;}/*!sc*/
data-styled.g1067[id="sc-1fqtlwo-2"]{content:"dofSdt,"}/*!sc*/
.gNJHGB{position:absolute;top:0;width:100%;height:100%;opacity:0.3;background:linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,var(--header-cover-overlay-opacity)) 100%);}/*!sc*/
@media (min-width:36.75rem){.gNJHGB{opacity:0;visibility:hidden;}}/*!sc*/
data-styled.g1068[id="sc-1fqtlwo-3"]{content:"gNJHGB,"}/*!sc*/
.GqaqU source,.GqaqU img{width:100%;height:100%;object-fit:cover;-webkit-filter:blur(var(--header-cover-blur));filter:blur(var(--header-cover-blur));-webkit-transform:scale(var(--header-cover-scale));-ms-transform:scale(var(--header-cover-scale));transform:scale(var(--header-cover-scale));}/*!sc*/
@media (min-width:36.75rem){.GqaqU source,.GqaqU img{-webkit-filter:none;filter:none;-webkit-transform:none;-ms-transform:none;transform:none;}}/*!sc*/
data-styled.g1070[id="sc-1fqtlwo-5"]{content:"GqaqU,"}/*!sc*/
.gPqcjh{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
data-styled.g1071[id="sc-17rkj4l-0"]{content:"gPqcjh,"}/*!sc*/
.dNBDZc{min-height:100vh;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g1072[id="sc-17rkj4l-1"]{content:"dNBDZc,"}/*!sc*/
.daMCfa{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;gap:var(--global-space-8);margin-top:var(--global-space-24);}/*!sc*/
data-styled.g1110[id="sc-1cdacby-0"]{content:"daMCfa,"}/*!sc*/
</style>
</head>
<body>
<div data-reactroot="" id="__next">
<a class="sc-1opqsst-0 diaATw" href="#renderPageContentWrapper">
Skip navigation
</a>
<div class="sc-15jjvy2-0 iSZcRT">
<div data-tag="mobile-navbar">
<header class="sc-vmcai-0 cyhQnv">
<div class="sc-vmcai-1 dBbzEz">
<header class="sc-kTLmzF eXJfwD">
<div class="sc-dwsnSq hSsyeD">
<a aria-label="Go to home page" class="sc-kiIyQV kGKkAh" href="/">
<span class="sc-bXTejn esHYKo">
<svg viewbox="0 0 436 476" xmlns="http://www.w3.org/2000/svg">
<title>
Patreon logo
</title>
<path d="M436 143c-.084-60.778-47.57-110.591-103.285-128.565C263.528-7.884 172.279-4.649 106.214 26.424 26.142 64.089.988 146.596.051 228.883c-.77 67.653 6.004 245.841 106.83 247.11 74.917.948 86.072-95.279 120.737-141.623 24.662-32.972 56.417-42.285 95.507-51.929C390.309 265.865 436.097 213.011 436 143Z" data-fill="1">
</path>
</svg>
</span>
</a>
</div>
<div class="sc-jtXEFf kJhvsN">
<ul class="sc-gjNHFA gnJSiD">
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM htYvUs">
<a class="sc-hGPBjI iEJoxd sc-gyElHZ liMwES" href="/login">
Log in
</a>
</div>
</li>
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM htYvUs">
<button class="sc-dlVxhl fdqpSt sc-gyElHZ liMwES">
</button>
</div>
</li>
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM gLRSni">
<a class="sc-fXeWAj egHTju">
<div aria-hidden="true" class="sc-pVTFL jgGOTl" title="Mobile navigation menu button">
<svg data-tag="IconMenu" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 7.125c0-.45.056-.731.225-.9.169-.169.45-.225.9-.225h15.75c.45 0 .73.056.9.225.169.169.225.45.225.9s-.056.73-.225.9c-.169.169-.45.225-.9.225H4.125c-.45 0-.73-.056-.9-.225-.169-.169-.225-.45-.225-.9m16.875 4.125H4.125c-.45 0-.73.056-.9.225-.169.169-.225.45-.225.9s.056.73.225.9c.169.169.45.225.9.225h15.75c.45 0 .73-.056.9-.225.169-.169.225-.45.225-.9s-.056-.731-.225-.9c-.169-.169-.45-.225-.9-.225m0 5.25H4.125c-.45 0-.73.056-.9.225-.169.169-.225.45-.225.9s.056.73.225.9c.169.169.45.225.9.225h15.75c.45 0 .73-.056.9-.225.169-.169.225-.45.225-.9s-.056-.731-.225-.9c-.169-.169-.45-.225-.9-.225">
</path>
</svg>
</div>
</a>
</div>
</li>
</ul>
</div>
</header>
</div>
<div>
</div>
</header>
</div>
<div data-tag="navbar">
<div class="sc-xb99u9-0 kCplKc">
<header class="sc-kTLmzF eXJfwD">
<div class="sc-dwsnSq hSsyeD">
<a aria-label="Go to home page" class="sc-kiIyQV kGKkAh" href="/">
<span class="sc-bXTejn esHYKo">
<svg viewbox="0 0 436 476" xmlns="http://www.w3.org/2000/svg">
<title>
Patreon logo
</title>
<path d="M436 143c-.084-60.778-47.57-110.591-103.285-128.565C263.528-7.884 172.279-4.649 106.214 26.424 26.142 64.089.988 146.596.051 228.883c-.77 67.653 6.004 245.841 106.83 247.11 74.917.948 86.072-95.279 120.737-141.623 24.662-32.972 56.417-42.285 95.507-51.929C390.309 265.865 436.097 213.011 436 143Z" data-fill="1">
</path>
</svg>
</span>
</a>
</div>
<div class="sc-jtXEFf kJhvsN">
<ul class="sc-gjNHFA gnJSiD">
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM kWRbaf">
<a class="sc-fXeWAj dDSsRe">
<div class="sc-bYoBSM fSnUNt">
<div class="sc-bYoBSM erZgWg">
<form action="/search" class="sc-eXlEPa gByBpE" method="GET" role="search">
<div class="sc-iFMAIt bfpDsJ">
<div class="sc-bYoBSM gHDUUa">
<div aria-expanded="false" aria-haspopup="true" aria-label="[object Object]" class="sc-hOGkXu kyedVw" data-tag="menuToggleDiv">
<div class="sc-bYoBSM jFgHdw">
<div class="sc-eWfVMQ iPdfKG">
<div aria-hidden="true" class="sc-pVTFL doltXu">
<svg data-tag="IconSearch" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m20.006 17.354-.804-.804-.804-.804c-.661-.661-.988-.967-1.079-1.33-.09-.364.054-.785.336-1.677A7.422 7.422 0 0 0 18 10.5c0-2.071-.84-3.946-2.197-5.303A7.477 7.477 0 0 0 10.5 3c-2.071 0-3.946.84-5.303 2.197A7.477 7.477 0 0 0 3 10.5c0 2.071.84 3.946 2.197 5.303a7.477 7.477 0 0 0 7.543 1.852c.89-.282 1.312-.427 1.675-.336.364.091.67.418 1.331 1.079l.804.803.804.805c.663.662.994.994 1.326.994.331 0 .663-.332 1.326-.994.663-.663.994-.995.994-1.326 0-.332-.331-.663-.994-1.326M10.5 15.75a5.233 5.233 0 0 1-3.712-1.538A5.234 5.234 0 0 1 5.25 10.5c0-1.45.588-2.762 1.538-3.712A5.234 5.234 0 0 1 10.5 5.25c1.45 0 2.762.588 3.712 1.538A5.234 5.234 0 0 1 15.75 10.5c0 1.45-.588 2.762-1.538 3.712A5.234 5.234 0 0 1 10.5 15.75">
</path>
</svg>
</div>
</div>
<input aria-label="[object Object]" autocomplete="off" class="sc-iqVWFU feiJaZ" name="q" placeholder="Find a creator" type="search"/>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</a>
</div>
</li>
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM htYvUs">
<button class="sc-dlVxhl fdqpSt sc-gyElHZ liMwES">
Create on Patreon
</button>
</div>
</li>
<li class="sc-fmciRz guSaTg">
<div class="sc-bYoBSM hIBGBn">
<a class="sc-hGPBjI iEJoxd sc-gyElHZ liMwES" href="/login">
Log in
</a>
</div>
</li>
</ul>
</div>
</header>
</div>
</div>
</div>
<div class="sc-17dklxu-0 kYEDjN" data-tag="navigation-offset-top">
</div>
<div class="sc-qfokmo-0 fJPhOg">
</div>
<main class="sc-1aplu8i-0 sc-1aplu8i-1 kZALel dJleju" id="renderPageContentWrapper" role="main">
<div class="sc-1khzwz0-0 jzrvjz">
<div class="sc-jlRLRk cKzFZj" data-tag="age-gate-blur">
<div class="sc-17rkj4l-1 dNBDZc">
<div class="sc-1g6snea-0">
<header class="sc-1b5vbhn-0 zttnK">
<div class="sc-1b5vbhn-2 gTqRpn" data-tag="creator-public-page-cover">
<div class="sc-1fqtlwo-2 dofSdt">
<picture class="sc-1fqtlwo-5 GqaqU">
<source media="(max-width: 620px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200&token-hash=kkEHHZAsukR113Y1ULygHZTQIXvgcYv0wS6ZcHWKgl0%3D"/>
<source media="(max-width: 1100px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200&token-hash=Omn68QvFrKeddWN7usaQupVri_JzSDrHAeXFHvm2biQ%3D"/>
<source media="(max-width: 1400px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200&token-hash=KXydmWwpj04e8lBJxDnI5fC40strjDM_zMQ7AfvY9QY%3D"/>
<source media="(max-width: 1700px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200&token-hash=r91Ch64NbDLM9k8F_zAjJllFaXB_Vk_QEgMUVooK5w0%3D"/>
<source media="(min-width: 1700px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200&token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D"/>
<img alt="" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200&token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D"/>
</picture>
<div class="sc-1fqtlwo-3 gNJHGB">
</div>
</div>
</div>
<div class="sc-1b5vbhn-3 gIwlKT">
<div class="sc-gKclnd lfJAyE" shape="square">
<img alt="" class="sc-jRQBWg mfQLT" data-tag="creator-public-page-avatar" display="block" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1719792000&token-hash=E9e4sVhGN6tVx_OLHe9UqeLsckHGPb3Znyb4fwftvCs%3D"/>
</div>
<div class="sc-jlRLRk irbUzf">
</div>
<div class="sc-1b5vbhn-11 iotdiL">
<button aria-disabled="false" aria-expanded="false" aria-label="Share" class="sc-bqiRlB geVJaA" data-tag="pages-creator-public-page-Header-ShareCampaign" type="button">
<div class="sc-crHmcD hZQOBL">
</div>
</button>
<button aria-disabled="false" aria-expanded="false" aria-label="More actions" class="sc-bqiRlB byxUM" data-testid="overflow-menu-button" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL cpsuPn">
<svg data-tag="IconMore" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12c0 .9-.113 1.462-.45 1.8-.338.337-.9.45-1.8.45s-1.462-.113-1.8-.45c-.337-.338-.45-.9-.45-1.8s.113-1.462.45-1.8c.338-.337.9-.45 1.8-.45s1.462.113 1.8.45c.337.338.45.9.45 1.8m-9-2.25c-.9 0-1.462.113-1.8.45-.337.338-.45.9-.45 1.8s.113 1.462.45 1.8c.338.337.9.45 1.8.45s1.462-.113 1.8-.45c.337-.338.45-.9.45-1.8s-.113-1.462-.45-1.8c-.338-.337-.9-.45-1.8-.45m-6.75 0c-.9 0-1.462.113-1.8.45-.337.338-.45.9-.45 1.8s.113 1.462.45 1.8c.338.337.9.45 1.8.45s1.462-.113 1.8-.45c.337-.338.45-.9.45-1.8s-.113-1.462-.45-1.8c-.338-.337-.9-.45-1.8-.45">
</path>
</svg>
</div>
</div>
</button>
</div>
<div class="sc-1b5vbhn-8 YnMro">
<h1 align="center" class="sc-jgrJph YCXEB">
Corey Schafer
</h1>
<div class="sc-jlRLRk eEouwY">
</div>
<p class="sc-bdvvtL lhrfPG">
creating Programming Tutorials
</p>
<div class="sc-jlRLRk eEouwY">
</div>
<ul class="sc-1b5vbhn-5 RzWue">
<li class="sc-1b5vbhn-6 bFPwFa">
<span class="sc-bdvvtL eHmEtx" data-tag="patron-count">
500
<!-- -->
<!-- -->
members
</span>
</li>
<li class="sc-1b5vbhn-6 bFPwFa">
<span class="sc-bdvvtL eHmEtx" data-tag="creation-count">
237
<!-- -->
<!-- -->
posts
</span>
</li>
</ul>
<div class="sc-jlRLRk irbUzf">
</div>
<div class="sc-1b5vbhn-9 vxXYJ">
<button aria-disabled="false" class="sc-bqiRlB gmCYiZ" data-tag="join-for-free-button" type="button">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK cPhYjp">
Join for free
</div>
</div>
</button>
<div>
</div>
<div class="sc-jlRLRk jiJZmg">
</div>
<div class="sc-1b5vbhn-4 cAVPxl">
<a aria-disabled="false" class="sc-bqiRlB geVJaA sc-1b5vbhn-1 hqVCmM" data-tag="creator-public-page-social-instagram" href="https://www.instagram.com/coreymschafer" rel="noopener noreferrer" role="link" target="_blank">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL fkATIY">
<svg data-tag="IconBrandInstagram" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 3.803c2.67 0 2.987.01 4.042.058 2.71.123 3.975 1.409 4.099 4.099.048 1.054.057 1.37.057 4.04 0 2.672-.01 2.988-.057 4.042-.124 2.687-1.387 3.975-4.1 4.099-1.054.048-1.37.058-4.041.058-2.67 0-2.987-.01-4.04-.058-2.718-.124-3.977-1.416-4.1-4.1-.048-1.054-.058-1.37-.058-4.041 0-2.67.01-2.986.058-4.04.124-2.69 1.387-3.977 4.1-4.1 1.054-.047 1.37-.057 4.04-.057M12 2c-2.716 0-3.056.012-4.122.06-3.632.167-5.65 2.182-5.817 5.817C2.01 8.944 2 9.284 2 12s.012 3.057.06 4.123c.167 3.632 2.182 5.65 5.817 5.817 1.067.048 1.407.06 4.123.06s3.057-.012 4.123-.06c3.629-.167 5.652-2.182 5.816-5.817.05-1.066.061-1.407.061-4.123s-.012-3.056-.06-4.122c-.163-3.629-2.18-5.65-5.816-5.817C15.057 2.01 14.716 2 12 2m0 4.865a5.135 5.135 0 1 0 0 10.27 5.135 5.135 0 0 0 0-10.27m0 8.468a3.333 3.333 0 1 1 0-6.666 3.333 3.333 0 0 1 0 6.666m5.338-9.87a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4">
</path>
</svg>
</div>
</div>
</a>
<a aria-disabled="false" class="sc-bqiRlB geVJaA sc-1b5vbhn-1 hqVCmM" data-tag="creator-public-page-social-twitter" href="https://twitter.com/CoreyMSchafer" rel="noopener noreferrer" role="link" target="_blank">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL fkATIY">
<svg data-tag="IconBrandTwitter" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M13.712 10.622 20.413 3h-1.588l-5.818 6.618L8.36 3H3l7.027 10.007L3 21h1.588l6.144-6.989L15.64 21H21zm-2.174 2.474-.713-.997L5.16 4.17H7.6l4.571 6.4.712.996 5.943 8.319h-2.439z">
</path>
</svg>
</div>
</div>
</a>
</div>
<div class="sc-jlRLRk eEouwY">
</div>
</div>
</div>
</div>
</header>
</div>
<div class="sc-163nd07-0 hsTbSd">
<nav aria-labelledby="pageheader-title" class="sc-163nd07-1 kCVCfQ">
<ul class="sc-163nd07-2 jbqtqc">
<li class="sc-163nd07-3 wuDwR">
<a aria-current="page" class="sc-163nd07-4 cinyTP" href="/coreyms?">
Home
</a>
</li>
<li class="sc-163nd07-3 wuDwR">
<a class="sc-163nd07-4 cinyTP" href="/coreyms/collections?">
Collections
</a>
</li>
<li class="sc-163nd07-3 wuDwR">
<a class="sc-163nd07-4 cinyTP" href="/coreyms/about?">
About
</a>
</li>
</ul>
</nav>
</div>
<div class="sc-jlRLRk ihieXj">
<div class="sc-l4u1zt-0 kxMuSq">
<div class="sc-fyi050-0 kPBzPp">
<div class="sc-fyi050-1 cRmHzU">
<h2 class="sc-dJjYzT fycPQu">
Choose your membership
</h2>
</div>
<div class="sc-fyi050-2 gUsbAk">
<div class="sc-1dmyb6b-0 dlXIVJ">
<div class="sc-1dmyb6b-1 kbuAEa">
<div class="sc-pr0f0g-0 sc-fh6tmm-0 sc-fh6tmm-1 gqVWhu joDnRq hbrUXj">
<button aria-disabled="true" aria-label="scroll left" class="sc-bqiRlB dgYAtZ" data-tag="carousel-left" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL dqHdkn">
<svg data-tag="IconChevronLeft" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M15.866 18.244c.422.423.634.742.634 1.06 0 .32-.212.639-.634 1.062-.423.423-.742.634-1.061.634-.32 0-.638-.211-1.06-.634l-3.653-3.653-3.653-3.652c-.423-.423-.634-.742-.634-1.06 0-.32.211-.639.634-1.062l3.653-3.652 3.652-3.652c.423-.423.742-.635 1.06-.635.32 0 .638.212 1.061.635.423.423.635.741.635 1.06 0 .32-.212.638-.635 1.06l-2.857 2.858-2.856 2.857c-.191.19-.287.36-.287.53 0 .17.096.34.287.53l2.856 2.857z">
</path>
</svg>
</div>
</div>
</button>
</div>
<div class="sc-bSqaIl sc-1dmyb6b-2 kRRHXs hLtYbF">
<div class="sc-1dmyb6b-3 iwysrW" id="209682">
<div class="sc-1g6snea-0 jeokUF">
<div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge">
<div class="sc-148r5xf-0 ieKKhT">
<div class="sc-dJjYzT jtatWC">
<div class="sc-jlRLRk bSEuuo">
<strong>
Recommended
</strong>
</div>
</div>
</div>
</div>
<div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="209682">
<div class="sc-1a2jhmw-4 dggRUR">
<div class="sc-1a2jhmw-5 dNpzBR">
<div class="sc-1mq9x0f-0 jNaFcj">
<div class="sc-dJjYzT bovTjV">
Will add your name to my website
</div>
<div class="sc-1mq9x0f-1 fQuYwT">
<span class="sc-dJjYzT fycPQu">
<div class="sc-e3beep-0 cHAFXQ" data-tag="">
$1
<!-- -->
<!-- -->
</div>
</span>
<span class="sc-bdvvtL lhrfPG">
/
<!-- -->
month
</span>
</div>
</div>
</div>
<div class="sc-1a2jhmw-7 kClFZP">
<div class="sc-zut8gy-0 hGJiuv">
<a aria-disabled="false" aria-label="Will add your name to my website Join" class="sc-bqiRlB gmCYiZ" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=209682" role="link">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK cPhYjp">
Join
</div>
</div>
</a>
</div>
<div>
</div>
</div>
<div class="sc-1a2jhmw-6 gPLDUn">
<div class="sc-1kelcyo-0 cDNaZd">
<div>
<div>
<div class="sc-6emzep-0 jxqpNa">
<div class="sc-bdvvtL lhrfPG">
<div>
I appreciate any support! Anyone who is a contributor through Patreon will have the option to be added to my Contributors page on my personal website (coreyms.com)
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sc-1dmyb6b-3 iwysrW" id="5125956">
<div class="sc-1g6snea-0 jeokUF">
<div class="sc-1a2jhmw-1 iPNPsh" data-tag="tier-card-badge">
<div class="sc-148r5xf-0 ieKKhT">
<div class="sc-dJjYzT jtatWC">
<div class="sc-jlRLRk bSEuuo">
<strong>
You might like
</strong>
</div>
</div>
</div>
</div>
<div class="sc-1a2jhmw-0 ihRjLB" data-tag="tier-card" id="5125956">
<div class="sc-1a2jhmw-4 dggRUR">
<div class="sc-1a2jhmw-5 dNpzBR">
<div class="sc-1mq9x0f-0 jNaFcj">
<div class="sc-dJjYzT bovTjV">
Early Access to YouTube Videos
</div>
<div class="sc-1mq9x0f-1 fQuYwT">
<span class="sc-dJjYzT fycPQu">
<div class="sc-e3beep-0 cHAFXQ" data-tag="">
$3
<!-- -->
<!-- -->
</div>
</span>
<span class="sc-bdvvtL lhrfPG">
/
<!-- -->
month
</span>
</div>
</div>
</div>
<div class="sc-1a2jhmw-7 kClFZP">
<div class="sc-zut8gy-0 hGJiuv">
<a aria-disabled="false" aria-label="Early Access to YouTube Videos Join" class="sc-bqiRlB gmCYiZ" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=5125956" role="link">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK cPhYjp">
Join
</div>
</div>
</a>
</div>
<div>
</div>
</div>
<div class="sc-1a2jhmw-6 gPLDUn">
<div class="sc-1kelcyo-0 cDNaZd">
<div>
<div>
<div class="sc-6emzep-0 jxqpNa">
<div class="sc-bdvvtL lhrfPG">
<div>
All of my content is available for free on YouTube, but if you support at this tier then I will give you early access to videos days before they go public. I will post links to Patreon and YouTube when an early access video is available. You will also have access to all of the rewards for my lower tiers. In total, you will receive:
<ul>
<li>
Early Access to Videos
</li>
<li>
Be added to my Contributors page on my personal website (coreyms.com)
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sc-1dmyb6b-3 iwysrW" id="5125971">
<div class="sc-1g6snea-0 jeokUF">
<div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge">
<div class="sc-148r5xf-0 ieKKhT">
<div class="sc-dJjYzT jtatWC">
<div class="sc-jlRLRk bSEuuo">
<strong>
Recommended
</strong>
</div>
</div>
</div>
</div>
<div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="5125971">
<div class="sc-1a2jhmw-4 dggRUR">
<div class="sc-1a2jhmw-5 dNpzBR">
<div class="sc-1mq9x0f-0 jNaFcj">
<div class="sc-dJjYzT bovTjV">
Your Name Listed at the End of My Videos
</div>
<div class="sc-1mq9x0f-1 fQuYwT">
<span class="sc-dJjYzT fycPQu">
<div class="sc-e3beep-0 cHAFXQ" data-tag="">
$5
<!-- -->
<!-- -->
</div>
</span>
<span class="sc-bdvvtL lhrfPG">
/
<!-- -->
month
</span>
</div>
</div>
</div>
<div class="sc-1a2jhmw-7 kClFZP">
<div class="sc-zut8gy-0 hGJiuv">
<a aria-disabled="false" aria-label="Your Name Listed at the End of My Videos Join" class="sc-bqiRlB gmCYiZ" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=5125971" role="link">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK cPhYjp">
Join
</div>
</div>
</a>
</div>
<div>
</div>
</div>
<div class="sc-1a2jhmw-6 gPLDUn">
<div class="sc-1kelcyo-0 cDNaZd">
<div>
<div>
<div class="sc-6emzep-0 jxqpNa">
<div class="sc-bdvvtL lhrfPG">
<div>
I will now be adding Patron credits to the end of each of my videos where I list all of my current Patrons who support me at this level or higher. The names will be listed with my biggest supporters towards the top. You will also have access to all of the rewards for my lower tiers. In total, you will receive:
<br/>
<ul>
<li>
Your Name Listed at the End of My Videos
</li>
<li>
Early Access to Videos
</li>
<li>
Be added to my Contributors page on my personal website (coreyms.com)
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sc-1dmyb6b-3 cLMLuh" id="209683">
<div class="sc-1g6snea-0 jeokUF">
<div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge">
<div class="sc-148r5xf-0 ieKKhT">
<div class="sc-dJjYzT jtatWC">
<div class="sc-jlRLRk bSEuuo">
<strong>
Recommended
</strong>
</div>
</div>
</div>
</div>
<div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="209683">
<div class="sc-1a2jhmw-4 dggRUR">
<div class="sc-1a2jhmw-5 dNpzBR">
<div class="sc-1mq9x0f-0 jNaFcj">
<div class="sc-dJjYzT bovTjV">
Be Featured as a Top Contributor
</div>
<div class="sc-1mq9x0f-1 fQuYwT">
<span class="sc-dJjYzT fycPQu">
<div class="sc-e3beep-0 cHAFXQ" data-tag="">
$20
<!-- -->
<!-- -->
</div>
</span>
<span class="sc-bdvvtL lhrfPG">
/
<!-- -->
month
</span>
</div>
</div>
</div>
<div class="sc-1a2jhmw-7 kClFZP">
<div class="sc-zut8gy-0 hGJiuv">
<a aria-disabled="false" aria-label="Be Featured as a Top Contributor Join" class="sc-bqiRlB gmCYiZ" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=209683" role="link">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK cPhYjp">
Join
</div>
</div>
</a>
</div>
<div>
</div>
</div>
<div class="sc-1a2jhmw-6 gPLDUn">
<div class="sc-1kelcyo-0 cDNaZd">
<div>
<div>
<div class="sc-6emzep-0 jxqpNa">
<div class="sc-bdvvtL lhrfPG">
<div>
Be featured on every page of my personal website (coreyms.com) as a top contributor. You will also have access to all of the rewards for my lower tiers. In total, you will receive:
<br/>
<ul>
<li>
Be Featured as a Top Contributor on my personal website (coreyms.com)
</li>
<li>
Your Name Listed at the End of My Videos
</li>
<li>
Early Access to Videos
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sc-pr0f0g-0 sc-fh6tmm-0 sc-fh6tmm-2 gqVWhu joDnRq kOJquo">
<button aria-disabled="false" aria-label="scroll right" class="sc-bqiRlB btjCdZ" data-tag="carousel-right" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL dqHdkn">
<svg data-tag="IconChevronRight" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M8.134 5.756c-.423-.423-.634-.742-.634-1.06 0-.32.212-.639.634-1.062C8.558 3.211 8.877 3 9.196 3c.32 0 .638.211 1.06.634l3.653 3.653 3.653 3.652c.423.423.634.742.634 1.06 0 .32-.211.639-.634 1.062l-3.653 3.652-3.652 3.652c-.423.423-.742.635-1.06.635-.32 0-.638-.212-1.061-.635-.423-.423-.635-.741-.635-1.06 0-.32.212-.638.635-1.06l2.857-2.858 2.856-2.857c.191-.19.287-.36.287-.53 0-.17-.096-.34-.287-.53l-2.856-2.857z">
</path>
</svg>
</div>
</div>
</button>
</div>
</div>
<div class="sc-dt7zip-0 fapWEE" data-tag="carousel-dots">
<span class="sc-dt7zip-2 iHGIhv">
•
</span>
<span class="sc-dt7zip-1 furbZZ">
•
</span>
</div>
<div class="sc-1dmyb6b-4 etQDMC">
<button aria-disabled="false" aria-label="see all tiers" class="sc-bqiRlB bLNJHK" data-tag="show-all-tiers" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL ioScqw">
<svg data-tag="IconChevronDown" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M18.244 8.134c.423-.423.742-.634 1.06-.634.32 0 .639.212 1.062.634.423.423.634.742.634 1.061 0 .32-.211.638-.634 1.06l-3.653 3.653-3.652 3.653c-.423.423-.742.634-1.06.634-.32 0-.639-.211-1.062-.634l-3.652-3.653-3.652-3.652C3.212 9.833 3 9.514 3 9.196c0-.32.212-.638.635-1.061.423-.423.741-.635 1.06-.635.32 0 .638.212 1.06.635l2.858 2.857 2.857 2.856c.19.191.36.287.53.287.17 0 .34-.096.53-.287l2.857-2.856z">
</path>
</svg>
</div>
<div class="sc-egiyK kfOjYx">
See all
<!-- -->
4
<!-- -->
tiers
</div>
</div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="sc-jvvksu sc-l4u1zt-1 McnWk gSEDWh">
<div class="sc-jlRLRk haKdsN">
</div>
<div class="sc-1g6snea-0">
<div class="sc-137kp8k-0 ewIhgk" data-tag="creator-public-page-recent-posts">
<h2 class="sc-dJjYzT fycPQu">
Recent posts by Corey Schafer
</h2>
<div class="sc-1cdacby-0 daMCfa">
<button aria-disabled="false" aria-label="creator-public-page-post-all-filters-toggle" class="sc-bqiRlB hFZQUx" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL ioScqw">
<svg data-tag="IconFilter" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M21 6c0 .6-.075.975-.3 1.2-.225.225-.6.3-1.2.3h-15c-.6 0-.975-.075-1.2-.3C3.075 6.975 3 6.6 3 6s.075-.975.3-1.2c.225-.225.6-.3 1.2-.3h15c.6 0 .975.075 1.2.3.225.225.3.6.3 1.2m-4.5 4.5h-9c-.6 0-.975.075-1.2.3-.225.225-.3.6-.3 1.2s.075.975.3 1.2c.225.225.6.3 1.2.3h9c.6 0 .975-.075 1.2-.3.225-.225.3-.6.3-1.2s-.075-.975-.3-1.2c-.225-.225-.6-.3-1.2-.3m-3 6h-3c-.6 0-.975.075-1.2.3-.225.225-.3.6-.3 1.2s.075.975.3 1.2c.225.225.6.3 1.2.3h3c.6 0 .975-.075 1.2-.3.225-.225.3-.6.3-1.2s-.075-.975-.3-1.2c-.225-.225-.6-.3-1.2-.3">
</path>
</svg>
</div>
</div>
</button>
<button aria-disabled="false" aria-expanded="false" aria-haspopup="dialog" aria-label="Sort posts by age" class="sc-bqiRlB hFZQUx" data-tag="posts-sort-button" tabindex="0" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL ioScqw">
<svg data-tag="IconSort" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M13 6a1 1 0 0 0 0-2H3a1 1 0 0 0 0 2zm1 4a1 1 0 0 1-1 1H3a1 1 0 0 1 0-2h10a1 1 0 0 1 1 1m-4 5a1 1 0 0 1-1 1H3a1 1 0 0 1 0-2h6a1 1 0 0 1 1 1">
</path>
<path d="m17.768 17.411 2.931-2.931a.762.762 0 0 1 1.078 1.077l-4.22 4.22a.762.762 0 0 1-1.077 0l-4.22-4.22a.762.762 0 1 1 1.077-1.078l2.915 2.915.01-12.634A.76.76 0 0 1 17.03 4a.76.76 0 0 1 .75.76z">
</path>
</svg>
</div>
</div>
</button>
<div class="sc-xiLah iIZorQ">
<div class="sc-eGPXGI AnXnO" data-tag="search-input-box">
<div class="sc-hAcGzb TnasG" data-tag="search-input-with-affixes">
<div class="sc-bQtKYq fJpKwY" data-tag="search-input-prefix" id="search-posts-prefix">
<div class="sc-fXEqDS fhMfRy">
<button aria-disabled="false" aria-label="Search" class="sc-bqiRlB ekLksg" data-tag="search-input-icon" type="button">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL dqHdkn">
<svg data-tag="IconSearch" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m20.006 17.354-.804-.804-.804-.804c-.661-.661-.988-.967-1.079-1.33-.09-.364.054-.785.336-1.677A7.422 7.422 0 0 0 18 10.5c0-2.071-.84-3.946-2.197-5.303A7.477 7.477 0 0 0 10.5 3c-2.071 0-3.946.84-5.303 2.197A7.477 7.477 0 0 0 3 10.5c0 2.071.84 3.946 2.197 5.303a7.477 7.477 0 0 0 7.543 1.852c.89-.282 1.312-.427 1.675-.336.364.091.67.418 1.331 1.079l.804.803.804.805c.663.662.994.994 1.326.994.331 0 .663-.332 1.326-.994.663-.663.994-.995.994-1.326 0-.332-.331-.663-.994-1.326M10.5 15.75a5.233 5.233 0 0 1-3.712-1.538A5.234 5.234 0 0 1 5.25 10.5c0-1.45.588-2.762 1.538-3.712A5.234 5.234 0 0 1 10.5 5.25c1.45 0 2.762.588 3.712 1.538A5.234 5.234 0 0 1 15.75 10.5c0 1.45-.588 2.762-1.538 3.712A5.234 5.234 0 0 1 10.5 15.75">
</path>
</svg>
</div>
</div>
</button>
</div>
</div>
<div class="sc-jWUzzU eJRdHZ">
<input aria-invalid="false" aria-labelledby="search-posts-label search-posts-prefix" aria-multiline="false" autocomplete="off" class="sc-kYHfwS fghAEj" data-tag="search-input" id="search-posts" name="search-posts" placeholder="Search posts" type="text" value=""/>
</div>
</div>
</div>
</div>
</div>
<div class="sc-137kp8k-1 lbjiyO" data-tag="all-posts-layout">
</div>
<div class="sc-jlRLRk haKdsN">
</div>
</div>
</div>
</div>
</div>
<div class="sc-17rkj4l-0 gPqcjh">
<footer class="sc-162u50-0 blDkmw">
<div class="sc-bSqaIl kRRHXs">
<div class="sc-162u50-1 jQowKi">
<div>
<div class="sc-162u50-2 frISWG">
<button class="sc-dlVxhl djOudb sc-162u50-5 ilCpTy">
<div aria-hidden="true" class="sc-pVTFL ZbiwD">
<svg data-tag="IconWorld" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 3a8.972 8.972 0 0 0-6.364 2.636A8.972 8.972 0 0 0 3 12a8.972 8.972 0 0 0 2.636 6.364A8.972 8.972 0 0 0 12 21a8.972 8.972 0 0 0 6.364-2.636A8.972 8.972 0 0 0 21 12a8.972 8.972 0 0 0-2.636-6.364A8.972 8.972 0 0 0 12 3m5.69 7.875h-.9c-.334 0-.505-.004-.6-.092-.096-.087-.116-.258-.146-.59a17.082 17.082 0 0 0-.128-1.064 15.2 15.2 0 0 0-.178-.965c-.168-.76-.103-1.213.134-1.33.236-.119.644.098 1.162.678a6.758 6.758 0 0 1 1.372 2.378c.137.418.178.665.075.806-.103.142-.35.179-.79.179m-7.458-.829c.1-.891.264-1.645.46-2.28a8.279 8.279 0 0 1 .653-1.56c.18-.328.418-.49.656-.49.237 0 .475.163.655.49.229.412.457.927.653 1.561a12.4 12.4 0 0 1 .46 2.28c.042.38.047.587-.055.7-.101.111-.31.128-.693.128H10.98c-.384 0-.592-.017-.693-.129-.102-.112-.097-.319-.054-.7m3.536 3.908c-.1.892-.264 1.646-.46 2.28a8.279 8.279 0 0 1-.653 1.56c-.18.328-.418.49-.656.49-.237 0-.475-.163-.655-.49a8.259 8.259 0 0 1-.653-1.561 12.36 12.36 0 0 1-.46-2.28c-.042-.38-.047-.587.055-.7.101-.111.31-.128.693-.128h2.042c.383 0 .592.017.693.129.102.112.097.319.054.7M8.256 8.171c-.07.319-.13.648-.181.986-.05.338-.092.686-.123 1.043-.03.33-.05.5-.146.585-.096.086-.268.09-.6.09H6.31c-.44 0-.688-.037-.79-.179-.104-.142-.063-.388.074-.806a6.713 6.713 0 0 1 1.368-2.373c.521-.586.929-.805 1.164-.687.235.119.298.575.13 1.341M6.31 13.125h.901c.334 0 .505.004.6.092.096.087.116.258.146.59.033.372.076.726.127 1.064.052.338.112.66.18.965.166.76.1 1.213-.136 1.33-.236.119-.644-.098-1.161-.678a6.76 6.76 0 0 1-1.373-2.378c-.137-.418-.178-.665-.075-.806.103-.142.35-.179.79-.179m9.434 2.704c.07-.319.13-.648.181-.986.05-.338.092-.686.123-1.043.03-.33.05-.5.146-.585.096-.086.268-.09.6-.09h.896c.44 0 .688.037.79.179.104.142.063.388-.074.806a6.713 6.713 0 0 1-1.368 2.373c-.521.585-.929.805-1.164.687-.235-.119-.298-.575-.13-1.341">
</path>
</svg>
</div>
English (United States)
</button>
<button class="sc-dlVxhl djOudb sc-162u50-5 ilCpTy">
$
<!-- -->
<!-- -->
USD
</button>
</div>
<div class="sc-162u50-3 YblFM">
<button class="sc-dlVxhl djOudb sc-162u50-6 dEtMtZ">
Report this creator
</button>
<p class="sc-bdvvtL eHmEtx sc-162u50-4 hsOAcR">
•
</p>
<p class="sc-bdvvtL eHmEtx sc-162u50-4 hsOAcR">
©
<!-- -->
2024
<!-- -->
Patreon
</p>
</div>
</div>
<a aria-disabled="false" class="sc-bqiRlB ctukLy" href="/create" role="link">
<div class="sc-crHmcD hZQOBL">
<div aria-hidden="true" class="sc-pVTFL cJWOyC">
<svg data-tag="IconBrandPatreon" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.25 8.416c0-.943-.366-2.297-1.498-3.415C17.62 3.883 15.722 3 12.656 3c-3.732 0-5.96 1.19-7.252 2.91C4.11 7.627 3.75 9.875 3.75 11.991c0 3.113.42 5.365 1.141 6.84C5.612 20.304 6.634 21 7.836 21c1.4 0 2.205-.903 2.824-2.024.619-1.12 1.051-2.46 1.704-3.332.467-.623 1-1.023 1.602-1.312.602-.29 1.273-.469 2.012-.651 1.27-.313 2.338-.969 3.089-1.876.75-.908 1.183-2.067 1.183-3.389">
</path>
</svg>
</div>
<div class="sc-egiyK kfOjYx">
Create on Patreon
</div>
</div>
</a>
</div>
</div>
</footer>
</div>
<div class="sc-8tqpk9-0 iuYQrO">
<div class="sc-pr0f0g-0 gbWrlx">
<div class="sc-ozt2d0-0 lgUuRc">
<div class="sc-ozt2d0-1 caHMNA">
<div class="sc-gKclnd gTqok" shape="circle">
<img alt="" class="sc-jRQBWg mfQLT" display="block" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjoyMDB9/1.jpg?token-time=2145916800&token-hash=JsrjCuWC3KOhaJmhRlOVDCUzHkxfvFrCx7I2KWUDY0k%3D"/>
</div>
<div class="sc-ozt2d0-2 eHOjuK">
<div class="sc-dJjYzT flmgFf">
Corey Schafer
</div>
<p class="sc-bdvvtL gEPPme">
Unlock
<!-- -->
237
<!-- -->
posts
</p>
</div>
</div>
<button aria-disabled="false" class="sc-bqiRlB hePfFR" data-tag="sticky-cta" type="button">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK ekamSg">
Join now
</div>
</div>
</button>
</div>
</div>
<div class="sc-pr0f0g-0 cinZIi">
<div class="sc-ozt2d0-0 lgUuRc">
<div class="sc-dJjYzT jmSjfY">
Unlock
<!-- -->
237
<!-- -->
exclusive posts and join a community of
<!-- -->
500
<!-- -->
members
</div>
<div class="sc-bdvvtL eHmEtx">
Starting at
<div class="sc-e3beep-0 cHAFXQ" data-tag="">
$1
<!-- -->
<!-- -->
</div>
/
<!-- -->
month
</div>
<button aria-disabled="false" class="sc-bqiRlB hePfFR" data-tag="sticky-cta" type="button">
<div class="sc-crHmcD hZQOBL">
<div class="sc-egiyK ekamSg">
Join now
</div>
</div>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div aria-live="polite" class="sc-eFegNN gqUnJB" data-tag="toaster">
</div>
</main>
<script type="text/javascript">
var _sift = (window._sift = window._sift || []);
_sift.push(["_setAccount", "7848bad5f1"]);
_sift.push(["_setUserId", ""]);
_sift.push(["_setSessionId", "25548c8e70c636853b05d30ed07bc12e3e7b67209311c4e89a266418e3fede58"]);
_sift.push(["_trackPageview"]);
(function() {
function ls() {
var e = document.createElement("script");
e.src = "https://cdn.siftscience.com/s.js";
e.async = !0;
document.body.appendChild(e);
}
if (window.attachEvent) {
window.attachEvent("onload", ls);
} else {
window.addEventListener("load", ls, false);
}
})();
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "Patreon",
"description": "Patreon is a membership platform that makes it easy for artists and creators to get paid. Join over 200,000 creators earning salaries from over 6 million monthly members.",
"url": "http://www.patreon.com",
"logo": "https://c5.patreon.com/external/logo/downloads_logomark_color_on_white@2x.png",
"sameAs": [
"https://www.twitter.com/patreon",
"https://www.facebook.com/patreon",
"https://www.youtube.com/patreon",
"https://www.instagram.com/patreon"
]
}
</script>
<div id="fb-root">
</div>
<script type="text/javascript">
(function(l,e,a,p) {
if (window.Sprig) return;
window.Sprig = function(){S._queue.push(arguments)}
var S = window.Sprig;S.appId = a;S._queue = [];window.UserLeap=S;
a=l.createElement('script');
a.async=1;a.src=e+'?id='+S.appId;
p=l.getElementsByTagName('script')[0];
p.parentNode.insertBefore(a, p);
})(document, 'https://cdn.sprig.com/shim.js', 'vk-TL7x4Fg');
</script>
</div>
<script id="__NEXT_DATA__" type="application/json">
{"props":{"pageProps":{"bootstrapEnvelope":{"apiServerPath":"www.patreon.com/api","bodyId":"creator_membership","braintree_tokenization_key":"production_zjxw8t4s_3w8nr24jjcjqcgbf","campaignFeatures":{},"commonBootstrap":{"additional_banner_data":{"creator_demo":null},"apple_sign_in_sub":"com.patreon.website","badges_polling_enabled":true,"badges_polling_interval_in_seconds":60,"color_scheme_selection":null,"currency_constants":{"big_money_cents":10000,"default_custom_pledge_cents":500,"default_pledge_amount_cents":100,"max_pledge_cents":1500000,"max_product_variant_cents":500000,"min_pledge_cents":100,"min_product_variant_cents":300,"payout_minimum":100,"recommended_minimum_tier_amount":300,"referral_cents":5000,"tier_minimum_round_to_cents":100,"tier_recommendation_round_to_cents":500},"currentUser":null,"currentUserPledgingAndFollowing":null,"current_banners":["creator_demo"],"current_user_has_purchases_tab":false,"defaultUserCurrency":null,"enableAdminSudo":false,"event_logging_platform":"Web","experienceLocationCountryCode":"IN","formattingLocale":"en-US","google_app_id":"84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com","is_impersonating":false,"is_user_native_video_enabled":false,"is_webview":false,"notification_platform_killswitch":false,"page_theme_color":null,"recaptcha_site_key":"6LcGC_olAAAAAIRopsADgTdKS2nm_LSlotn_-m-w","supported_currencies":[{"available_for_pay_in":true,"available_for_pay_out":true,"code":"AUD","default_locale_code":"en-AU","description":"Australian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"AU$"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"BRL","default_locale_code":"pt-br","description":"Brazilian Real","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"BRL"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CAD","default_locale_code":"en-CA","description":"Canadian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"CA$"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CZK","default_locale_code":"cs-cz","description":"Czech Koruna","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"CZK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"DKK","default_locale_code":"da-DK","description":"Danish Kroner","is_launched":true,"max_pledge_subunits":9500000,"num_subunits":100,"symbol":"DKK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"EUR","default_locale_code":"en-IE","description":"Euros","is_launched":true,"max_pledge_subunits":1300000,"num_subunits":100,"symbol":"€"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"GBP","default_locale_code":"en-GB","description":"British Pounds Sterling","is_launched":true,"max_pledge_subunits":1200000,"num_subunits":100,"symbol":"£"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HKD","default_locale_code":"zh-hk","description":"Hong Kong Dollar","is_launched":true,"max_pledge_subunits":11500000,"num_subunits":100,"symbol":"HKD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HUF","default_locale_code":"hu-hu","description":"Hungarian Forint","is_launched":true,"max_pledge_subunits":516000000,"num_subunits":100,"symbol":"HUF"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"MXN","default_locale_code":"es-mx","description":"Mexican Peso","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"MXN"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NOK","default_locale_code":"nb-NO","description":"Norwegian Kroner","is_launched":true,"max_pledge_subunits":12500000,"num_subunits":100,"symbol":"NOK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NZD","default_locale_code":"en-nz","description":"New Zealand Dollar","is_launched":true,"max_pledge_subunits":2200000,"num_subunits":100,"symbol":"NZD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"PLN","default_locale_code":"pl-pl","description":"Polish Zloty","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"PLN"},{"available_for_pay_in":false,"available_for_pay_out":false,"code":"RON","default_locale_code":"ro-ro","description":"Romanian Leu","is_launched":false,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"RON"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SEK","default_locale_code":"sv-SE","description":"Swedish Kronor","is_launched":true,"max_pledge_subunits":13000000,"num_subunits":100,"symbol":"SEK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SGD","default_locale_code":"zh-sg","description":"Singapore Dollar","is_launched":true,"max_pledge_subunits":2000000,"num_subunits":100,"symbol":"SGD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"USD","default_locale_code":"en-US","description":"US Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"$"}],"url_rule":"/\u003cstring:campaign_identifier\u003e","verify_location":null,"campaign_has_any_product_variant":false,"campaign_has_visible_shop":false,"campaign_num_visible_products":0,"campaign_shop_exists":false,"campaign_shop_is_launched":false,"navigation":{"concierge_status":{"finished_at":null,"started_at":null},"has_suspended_posts":false,"has_undelivered_deliverables":false,"impersonation_write_access":false,"is_active_creator":false,"is_admin":false,"is_impersonating":false,"logged_in_become_creator_cta":null,"referer_url":null,"show_moderation_hub":false,"show_referral_program":false,"show_taxes_page":false,"teammate_status":{"is_owner":false,"is_teammate":false},"utm_params":{}},"shop_promo_assets":{"landscape":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-landscape%2F125642/selector/%23shop-launch-teaser-landscape%2C.png","portrait":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-portrait%2F125642/selector/%23shop-launch-teaser-portrait%2C.png","square":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-square%2F125642/selector/%23shop-launch-teaser-square%2C.png"},"campaign":{"data":{"attributes":{"avatar_photo_image_urls":{"default":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3Ijo2MjB9/1.jpg?token-time=1719792000\u0026token-hash=NQRp0l4IeeYVLhxmjtRy8757cpkyzvrehe9xWnZ0Ny8%3D","default_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjozNjB9/1.jpg?token-time=1719792000\u0026token-hash=my25NFQ39_ZM16gxfnI5oWASrtD3ctkWvQTBt4RoCRM%3D","original":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJxIjoxMDAsIndlYnAiOjB9/1.jpg?token-time=1719792000\u0026token-hash=YTwFEPtXJrWTD3it62UdW-6NgNm038T9V-wDfrpqkug%3D","thumbnail":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1719792000\u0026token-hash=eOFJMY3eiQ3ECNUnWYcSPjhS1D6u3UaJQj7iaPWyX8s%3D","thumbnail_large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1719792000\u0026token-hash=E9e4sVhGN6tVx_OLHe9UqeLsckHGPb3Znyb4fwftvCs%3D","thumbnail_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDAsInciOjEwMH0%3D/1.jpg?token-time=1719792000\u0026token-hash=0C5kPn-2ZHedQR1hiHH5_ITpNibLROCpMtRgs9FTQOA%3D"},"avatar_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjoyMDB9/1.jpg?token-time=2145916800\u0026token-hash=JsrjCuWC3KOhaJmhRlOVDCUzHkxfvFrCx7I2KWUDY0k%3D","cover_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D","cover_photo_url_sizes":{"large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=r91Ch64NbDLM9k8F_zAjJllFaXB_Vk_QEgMUVooK5w0%3D","medium":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=KXydmWwpj04e8lBJxDnI5fC40strjDM_zMQ7AfvY9QY%3D","small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200\u0026token-hash=Omn68QvFrKeddWN7usaQupVri_JzSDrHAeXFHvm2biQ%3D","xlarge":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D","xsmall":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200\u0026token-hash=kkEHHZAsukR113Y1ULygHZTQIXvgcYv0wS6ZcHWKgl0%3D"},"creation_count":237,"creation_name":"creating Programming Tutorials","currency":"USD","current_user_can_be_free_member":true,"current_user_is_free_member":false,"display_patron_goals":false,"has_rss":false,"has_tags":true,"has_visible_shop":false,"is_free_membership_paused":false,"is_monthly":true,"is_nsfw":false,"is_plural":false,"main_video_embed":"\u003ciframe allowfullscreen=\"\" frameborder=\"0\" height=\"480\" scrolling=\"no\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FvRapY8xJwn8%3Ffeature%3Doembed\u0026amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DvRapY8xJwn8\u0026amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FvRapY8xJwn8%2Fhqdefault.jpg\u0026amp;key=8ee8a2e6a8cc47aab1a5ee67f9a178e0\u0026amp;type=text%2Fhtml\u0026amp;schema=youtube\" width=\"854\"\u003e\u003c/iframe\u003e","main_video_url":"https://www.youtube.com/watch?v=vRapY8xJwn8","member_count_preference":"TOTAL","name":"Corey Schafer","num_collections":1,"offers_free_membership":true,"offers_paid_membership":true,"one_liner":"Creating tutorial videos for all skill levels of programmers, developers, and software engineers","paid_member_count":114,"patron_count":500,"pay_per_name":"month","pledge_sum_currency":"USD","pledge_url":"/checkout/coreyms","primary_theme_color":null,"published_at":"2014-11-23T23:20:47.000+00:00","show_earnings":false,"show_free_membership_cta":true,"show_free_membership_secondary_cta":true,"show_patron_count":true,"summary":"Hi There,\u003cbr\u003eMy name is Corey Schafer. I make \u003ca href=\"https://www.youtube.com/user/schafer5\" rel=\"nofollow\"\u003eYouTube tutorials\u003c/a\u003e and \u003ca href=\"http://coreyms.com\" rel=\"nofollow\"\u003eWrite Blog Articles\u003c/a\u003e that teach beginner/intermediate programming, software engineering, development, and design.\u003cbr\u003e\u003cbr\u003eTopics Included in my videos and blog:\u003cbr\u003ePython, Software Engineering, Git, Programming Terms, JavaScript, Development Environments, Workflows, Development, Web Design, Geographic Information Systems (GIS), Mac Tips, and more.\u003cbr\u003e\u003cbr\u003eWith your support, I'll be able to produce more high quality educational videos at a faster rate. I am extremely grateful for any support.\u003cbr\u003e\u003cbr\u003eThank You!\u003cbr\u003e","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"125642","relationships":{"active_offer":{"data":null},"connected_socials":{"data":[{"id":"7260207","type":"social-connection"},{"id":"7260212","type":"social-connection"}]},"creator":{"data":{"id":"399662","type":"user"},"links":{"related":"https://www.patreon.com/api/user/399662"}},"goals":{"data":null},"patron_goals":{"data":null},"post_aggregation":{"data":{"id":"post-aggregation-for-0-125642","type":"post_aggregation"},"links":{"related":"https://www.patreon.com/api/post-aggregations/post-aggregation-for-0-125642"}},"recommended_by_campaigns":{"data":[]},"recommended_campaigns":{"data":[]},"rewards":{"data":[{"id":"-1","type":"reward"},{"id":"10319934","type":"reward"},{"id":"209682","type":"reward"},{"id":"5125956","type":"reward"},{"id":"5125971","type":"reward"},{"id":"209683","type":"reward"}]}},"type":"campaign"},"included":[{"attributes":{"current_user_block_status":"none","full_name":"Corey Schafer","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"399662","relationships":{"campaign":{"data":{"id":"125642","type":"campaign"},"links":{"related":"https://www.patreon.com/api/campaigns/125642"}}},"type":"user"},{"attributes":{"next_inaccessible_posts_count":9,"upgrade_url":"/checkout/coreyms?rid=209682"},"id":"post-aggregation-for-0-125642","type":"post_aggregation"},{"attributes":{"amount":0,"amount_cents":0,"created_at":null,"description":"Everyone","patron_currency":"USD","remaining":0,"requires_shipping":false,"url":null,"user_limit":null},"id":"-1","type":"reward"},{"attributes":{"amount_cents":0,"currency":"USD","description":"","discord_role_ids":null,"image_url":null,"is_free_tier":true,"patron_amount_cents":0,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Free","url":"/checkout/coreyms?rid=10319934"},"id":"10319934","relationships":{"cadence_options":{"data":[]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":100,"currency":"USD","description":"I appreciate any support! Anyone who is a contributor through Patreon will have the option to be added to my Contributors page on my personal website (coreyms.com) \u003cbr\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":100,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Will add your name to my website","url":"/checkout/coreyms?rid=209682"},"id":"209682","relationships":{"cadence_options":{"data":[{"id":"209682_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":300,"currency":"USD","description":"All of my content is available for free on YouTube, but if you support at this tier then I will give you early access to videos days before they go public. I will post links to Patreon and YouTube when an early access video is available. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cul\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":300,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Early Access to YouTube Videos","url":"/checkout/coreyms?rid=5125956"},"id":"5125956","relationships":{"cadence_options":{"data":[{"id":"5125956_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[{"id":"0","type":"reward-recommendation"}]}},"type":"reward"},{"attributes":{"amount_cents":500,"currency":"USD","description":"I will now be adding Patron credits to the end of each of my videos where I list all of my current Patrons who support me at this level or higher. The names will be listed with my biggest supporters towards the top. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":500,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Your Name Listed at the End of My Videos","url":"/checkout/coreyms?rid=5125971"},"id":"5125971","relationships":{"cadence_options":{"data":[{"id":"5125971_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":2000,"currency":"USD","description":"Be featured on every page of my personal website (coreyms.com) as a top contributor. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eBe Featured as a Top Contributor on my personal website (coreyms.com)\u003c/li\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":2000,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Be Featured as a Top Contributor","url":"/checkout/coreyms?rid=209683"},"id":"209683","relationships":{"cadence_options":{"data":[{"id":"209683_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"app_name":"instagram","display_name":"coreymschafer","external_profile_id":"1653049579","external_profile_url":"https://www.instagram.com/coreymschafer","is_public":true},"id":"7260207","type":"social-connection"},{"attributes":{"app_name":"twitter","display_name":"CoreyMSchafer","external_profile_id":"108132277","external_profile_url":"https://twitter.com/CoreyMSchafer","is_public":true},"id":"7260212","type":"social-connection"},{"attributes":{"amount_cents":100,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209682_1_USD","type":"reward-cadence-option"},{"attributes":{"amount_cents":300,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125956_1_USD","type":"reward-cadence-option"},{"attributes":{"recommendation_type":"you_might_like"},"id":"0","type":"reward-recommendation"},{"attributes":{"amount_cents":500,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125971_1_USD","type":"reward-cadence-option"},{"attributes":{"amount_cents":2000,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209683_1_USD","type":"reward-cadence-option"}],"links":{"self":"https://www.patreon.com/api/campaigns/125642"}}},"csrfSignature":"RjKS63EcIVt9KEVO0PrFrAQSBbVFSC1ss5Gcy02Fc1k","executionEnv":"kubernetes","experiments":{"campaign_a_a_test_for_pilot":{"exposure_data":{"experiment_id":502,"experiment_name":"campaign_a_a_test_for_pilot","override_id":null,"unit_id":"125642","unit_type":"campaign_id","variant_id":1058,"variant_name":"variant","version_id":781},"holdout_exposure_data":null},"cpp_campaign_a_a_test":{"exposure_data":{"experiment_id":496,"experiment_name":"cpp_campaign_a_a_test","override_id":null,"unit_id":"125642","unit_type":"campaign_id","variant_id":1039,"variant_name":"control","version_id":773},"holdout_exposure_data":null},"cpp_creator_funnel_cta_pill":{"exposure_data":{"experiment_id":535,"experiment_name":"cpp_creator_funnel_cta_pill","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1124,"variant_name":"control","version_id":877},"holdout_exposure_data":null},"cpp_device_a_a_test":{"exposure_data":{"experiment_id":436,"experiment_name":"cpp_device_a_a_test","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":899,"variant_name":"variant_2","version_id":691},"holdout_exposure_data":null},"device_a_a_test_for_pilot":{"exposure_data":{"experiment_id":501,"experiment_name":"device_a_a_test_for_pilot","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1056,"variant_name":"variant","version_id":780},"holdout_exposure_data":null},"google_sso_use_fedcm":{"exposure_data":{"experiment_id":480,"experiment_name":"google_sso_use_fedcm","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1001,"variant_name":"control","version_id":764},"holdout_exposure_data":null},"login_password_step":{"exposure_data":{"experiment_id":527,"experiment_name":"login_password_step","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1108,"variant_name":"control","version_id":997},"holdout_exposure_data":null},"login_password_step_v2":{"exposure_data":{"experiment_id":662,"experiment_name":"login_password_step_v2","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1394,"variant_name":"control","version_id":null},"holdout_exposure_data":null},"server_side_gallery_colors":{"exposure_data":{"experiment_id":685,"experiment_name":"server_side_gallery_colors","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1433,"variant_name":"control","version_id":null},"holdout_exposure_data":null},"share_button_text_label":{"exposure_data":{"experiment_id":668,"experiment_name":"share_button_text_label","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1406,"variant_name":"control","version_id":null},"holdout_exposure_data":null}},"facebookApiVersion":"v10.0","facebookAppId":"130127590512253","featureFlags":{"allow_unlaunched_currencies":false,"cm_enable_ignore_tpv_for_idv_self_enrollment":true,"creator_to_creator_recommendations":true,"default_gradient_for_image_gallery":false,"digital_commerce_beta_features":false,"digital_commerce_discovery":false,"digital_commerce_enable_content_mod_notification":true,"digital_commerce_enable_discounts":false,"digital_commerce_enable_new_sale_notification":false,"digital_commerce_enable_shop_launch":true,"digital_commerce_enable_single_product_shop_ui":true,"digital_commerce_iap_coming_soon_banner":true,"digital_commerce_iap_feature":true,"digital_commerce_purchases_killswitch":false,"digital_commerce_shop_killswitch":false,"digital_commerce_shop_page_search":false,"digital_commerce_similarity_search_more_products":false,"direct_messages_stream_web":true,"disable_autolink_on_render":true,"dm_using_stream":true,"drop_share_cards":false,"drops_realtime_comments_enabled":true,"enable_bio_editing":false,"enable_catalog_monetization_beta":false,"enable_community_privacy_toggle":true,"enable_dac7_w8_form_changes":true,"enable_drops":false,"enable_drops_beta_nux":true,"enable_drops_web_consumption":false,"enable_edit_settings_idv_self_enrollment":true,"enable_explore_experience":false,"enable_google_analytics_4":true,"enable_hlsjs_on_all_browsers":true,"enable_intercom":false,"enable_moderation_hub_ga":true,"enable_notification_platform":true,"enable_payoneer_payout_processing":true,"enable_promotions_page":false,"enable_remirror_post_editor":true,"enable_show_link_social_auth":false,"enable_show_tiktok_social_auth":true,"enable_spotify":true,"enable_spotify_for_patrons":true,"enable_stream_campaign_token":true,"enable_stream_campaign_tokens_web":true,"enable_video_player_cast":false,"enable_video_player_pip":true,"enable_web_chats":true,"enable_web_comment_ux_improvements":false,"fb_sso_mitigation":false,"free_member_post_editor_exp":true,"gtm2_launch":true,"hide_twitch_social_connect":false,"image_gallery_improvements":true,"include_transcend_manager":true,"log_exposures_once":true,"log_on_window_patreon_access":false,"new_change_email":false,"new_creator_edit_page_action_bar":false,"nion_disable_default_includes":true,"overlay_dialog_shim_killswitch":false,"overlay_drawer_shim_killswitch":false,"overlay_dropdown_shim_killswitch":false,"overlay_popover_shim_killswitch":true,"overlay_takeover_shim_killswitch":false,"overlay_tooltip_shim_killswitch":false,"pause_payout_processing":false,"pledgeflow_location_modal_cancel":false,"post_collections_ga":true,"rename_explore_on_left_nav":false,"short_links":false,"should_use_next_routing":true,"show_insights_gtm_awareness":false,"show_latest_in_launcher":false,"show_video_closed_captions_toggle":true,"test_flag":true,"us_ca_location_capture":true,"use_file_pond_uploader":false,"verify_user_location":true},"formattingLocale":"en-US","googleAnalyticsId":null,"hashedSessionId":"25548c8e70c636853b05d30ed07bc12e3e7b67209311c4e89a266418e3fede58","isAdmin":false,"isAppleConnectEnabled":true,"isFacebookConnectedEnabled":true,"isGooglePixelEnabled":true,"isGooglePlacesEnabled":false,"isImpersonating":false,"isInternalPage":false,"isKetchEnabled":false,"isMarkerIoEnabled":false,"meta":{"desc":"creating Programming Tutorials","height":null,"imageUrl":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png","isPrivate":false,"key":"artists, creators, patron, sponsor, music, videos","openGraph":{"desc":null,"imageUrl":null,"title":null},"title":"Corey Schafer","url":"https://www.patreon.com/coreyms","videoHeight":null,"videoUrl":null,"videoWidth":null,"viewport":"device-width, initial-scale=1.0, viewport-fit=cover"},"originalPathname":"/coreyms?","pageBootstrap":{"campaign":{"data":{"attributes":{"avatar_photo_image_urls":{"default":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3Ijo2MjB9/1.jpg?token-time=1719792000\u0026token-hash=NQRp0l4IeeYVLhxmjtRy8757cpkyzvrehe9xWnZ0Ny8%3D","default_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjozNjB9/1.jpg?token-time=1719792000\u0026token-hash=my25NFQ39_ZM16gxfnI5oWASrtD3ctkWvQTBt4RoCRM%3D","original":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJxIjoxMDAsIndlYnAiOjB9/1.jpg?token-time=1719792000\u0026token-hash=YTwFEPtXJrWTD3it62UdW-6NgNm038T9V-wDfrpqkug%3D","thumbnail":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1719792000\u0026token-hash=eOFJMY3eiQ3ECNUnWYcSPjhS1D6u3UaJQj7iaPWyX8s%3D","thumbnail_large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1719792000\u0026token-hash=E9e4sVhGN6tVx_OLHe9UqeLsckHGPb3Znyb4fwftvCs%3D","thumbnail_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDAsInciOjEwMH0%3D/1.jpg?token-time=1719792000\u0026token-hash=0C5kPn-2ZHedQR1hiHH5_ITpNibLROCpMtRgs9FTQOA%3D"},"avatar_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjoyMDB9/1.jpg?token-time=2145916800\u0026token-hash=JsrjCuWC3KOhaJmhRlOVDCUzHkxfvFrCx7I2KWUDY0k%3D","cover_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D","cover_photo_url_sizes":{"large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=r91Ch64NbDLM9k8F_zAjJllFaXB_Vk_QEgMUVooK5w0%3D","medium":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=KXydmWwpj04e8lBJxDnI5fC40strjDM_zMQ7AfvY9QY%3D","small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200\u0026token-hash=Omn68QvFrKeddWN7usaQupVri_JzSDrHAeXFHvm2biQ%3D","xlarge":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1720051200\u0026token-hash=Y22iMDCFZ5HOTGqhGU5sScPgxd0p2NShEm7WlfzQhhg%3D","xsmall":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1720051200\u0026token-hash=kkEHHZAsukR113Y1ULygHZTQIXvgcYv0wS6ZcHWKgl0%3D"},"creation_count":237,"creation_name":"creating Programming Tutorials","currency":"USD","current_user_can_be_free_member":true,"current_user_is_free_member":false,"display_patron_goals":false,"has_rss":false,"has_tags":true,"has_visible_shop":false,"is_free_membership_paused":false,"is_monthly":true,"is_nsfw":false,"is_plural":false,"main_video_embed":"\u003ciframe allowfullscreen=\"\" frameborder=\"0\" height=\"480\" scrolling=\"no\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FvRapY8xJwn8%3Ffeature%3Doembed\u0026amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DvRapY8xJwn8\u0026amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FvRapY8xJwn8%2Fhqdefault.jpg\u0026amp;key=8ee8a2e6a8cc47aab1a5ee67f9a178e0\u0026amp;type=text%2Fhtml\u0026amp;schema=youtube\" width=\"854\"\u003e\u003c/iframe\u003e","main_video_url":"https://www.youtube.com/watch?v=vRapY8xJwn8","member_count_preference":"TOTAL","name":"Corey Schafer","num_collections":1,"offers_free_membership":true,"offers_paid_membership":true,"one_liner":"Creating tutorial videos for all skill levels of programmers, developers, and software engineers","paid_member_count":114,"patron_count":500,"pay_per_name":"month","pledge_sum_currency":"USD","pledge_url":"/checkout/coreyms","primary_theme_color":null,"published_at":"2014-11-23T23:20:47.000+00:00","show_earnings":false,"show_free_membership_cta":true,"show_free_membership_secondary_cta":true,"show_patron_count":true,"summary":"Hi There,\u003cbr\u003eMy name is Corey Schafer. I make \u003ca href=\"https://www.youtube.com/user/schafer5\" rel=\"nofollow\"\u003eYouTube tutorials\u003c/a\u003e and \u003ca href=\"http://coreyms.com\" rel=\"nofollow\"\u003eWrite Blog Articles\u003c/a\u003e that teach beginner/intermediate programming, software engineering, development, and design.\u003cbr\u003e\u003cbr\u003eTopics Included in my videos and blog:\u003cbr\u003ePython, Software Engineering, Git, Programming Terms, JavaScript, Development Environments, Workflows, Development, Web Design, Geographic Information Systems (GIS), Mac Tips, and more.\u003cbr\u003e\u003cbr\u003eWith your support, I'll be able to produce more high quality educational videos at a faster rate. I am extremely grateful for any support.\u003cbr\u003e\u003cbr\u003eThank You!\u003cbr\u003e","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"125642","relationships":{"active_offer":{"data":null},"connected_socials":{"data":[{"id":"7260207","type":"social-connection"},{"id":"7260212","type":"social-connection"}]},"creator":{"data":{"id":"399662","type":"user"},"links":{"related":"https://www.patreon.com/api/user/399662"}},"goals":{"data":null},"patron_goals":{"data":null},"post_aggregation":{"data":{"id":"post-aggregation-for-0-125642","type":"post_aggregation"},"links":{"related":"https://www.patreon.com/api/post-aggregations/post-aggregation-for-0-125642"}},"recommended_by_campaigns":{"data":[]},"recommended_campaigns":{"data":[]},"rewards":{"data":[{"id":"-1","type":"reward"},{"id":"10319934","type":"reward"},{"id":"209682","type":"reward"},{"id":"5125956","type":"reward"},{"id":"5125971","type":"reward"},{"id":"209683","type":"reward"}]}},"type":"campaign"},"included":[{"attributes":{"current_user_block_status":"none","full_name":"Corey Schafer","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"399662","relationships":{"campaign":{"data":{"id":"125642","type":"campaign"},"links":{"related":"https://www.patreon.com/api/campaigns/125642"}}},"type":"user"},{"attributes":{"next_inaccessible_posts_count":9,"upgrade_url":"/checkout/coreyms?rid=209682"},"id":"post-aggregation-for-0-125642","type":"post_aggregation"},{"attributes":{"amount":0,"amount_cents":0,"created_at":null,"description":"Everyone","patron_currency":"USD","remaining":0,"requires_shipping":false,"url":null,"user_limit":null},"id":"-1","type":"reward"},{"attributes":{"amount_cents":0,"currency":"USD","description":"","discord_role_ids":null,"image_url":null,"is_free_tier":true,"patron_amount_cents":0,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Free","url":"/checkout/coreyms?rid=10319934"},"id":"10319934","relationships":{"cadence_options":{"data":[]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":100,"currency":"USD","description":"I appreciate any support! Anyone who is a contributor through Patreon will have the option to be added to my Contributors page on my personal website (coreyms.com) \u003cbr\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":100,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Will add your name to my website","url":"/checkout/coreyms?rid=209682"},"id":"209682","relationships":{"cadence_options":{"data":[{"id":"209682_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":300,"currency":"USD","description":"All of my content is available for free on YouTube, but if you support at this tier then I will give you early access to videos days before they go public. I will post links to Patreon and YouTube when an early access video is available. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cul\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":300,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Early Access to YouTube Videos","url":"/checkout/coreyms?rid=5125956"},"id":"5125956","relationships":{"cadence_options":{"data":[{"id":"5125956_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[{"id":"0","type":"reward-recommendation"}]}},"type":"reward"},{"attributes":{"amount_cents":500,"currency":"USD","description":"I will now be adding Patron credits to the end of each of my videos where I list all of my current Patrons who support me at this level or higher. The names will be listed with my biggest supporters towards the top. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":500,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Your Name Listed at the End of My Videos","url":"/checkout/coreyms?rid=5125971"},"id":"5125971","relationships":{"cadence_options":{"data":[{"id":"5125971_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":2000,"currency":"USD","description":"Be featured on every page of my personal website (coreyms.com) as a top contributor. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eBe Featured as a Top Contributor on my personal website (coreyms.com)\u003c/li\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":2000,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Be Featured as a Top Contributor","url":"/checkout/coreyms?rid=209683"},"id":"209683","relationships":{"cadence_options":{"data":[{"id":"209683_1_USD","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"app_name":"instagram","display_name":"coreymschafer","external_profile_id":"1653049579","external_profile_url":"https://www.instagram.com/coreymschafer","is_public":true},"id":"7260207","type":"social-connection"},{"attributes":{"app_name":"twitter","display_name":"CoreyMSchafer","external_profile_id":"108132277","external_profile_url":"https://twitter.com/CoreyMSchafer","is_public":true},"id":"7260212","type":"social-connection"},{"attributes":{"amount_cents":100,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209682_1_USD","type":"reward-cadence-option"},{"attributes":{"amount_cents":300,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125956_1_USD","type":"reward-cadence-option"},{"attributes":{"recommendation_type":"you_might_like"},"id":"0","type":"reward-recommendation"},{"attributes":{"amount_cents":500,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125971_1_USD","type":"reward-cadence-option"},{"attributes":{"amount_cents":2000,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209683_1_USD","type":"reward-cadence-option"}],"links":{"self":"https://www.patreon.com/api/campaigns/125642"}},"base_url":"/coreyms","campaign_creator_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png","campaign_has_visible_products":false,"campaign_launch_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Flaunch-teaser-image%2F125642/selector/%23launch-teaser%2C.png","campaign_shop_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fshop%2F125642/selector/%23card-teaser%2C.png","can_campaign_be_age_gated":false,"can_see_nsfw":false,"currency_migration_in_progress":false,"dc_cpp_module_selection_logic":"","isIdvSupported":false,"is_anniversary_billing":true,"is_preview":false,"is_published":true,"is_target":true,"locked_post_aggregates":{"audio":0,"image":0,"link":1,"livestream":0,"poll":0,"total":5,"update":1,"video":3},"num_posts":237,"post_frequency_per_month":0,"random_cover_photo_enabled":false,"show_acast_button_post_pledge":false,"show_dc_cpp_module":false},"presets":{"additional_banner_data":{"creator_demo":null},"apple_sign_in_sub":"com.patreon.website","badges_polling_enabled":true,"badges_polling_interval_in_seconds":60,"base_url":"/coreyms","campaign_creator_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=2355649858163257761/selector/%23creator-teaser%2C.png","campaign_has_any_product_variant":false,"campaign_has_visible_products":false,"campaign_has_visible_shop":false,"campaign_launch_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Flaunch-teaser-image%2F125642/selector/%23launch-teaser%2C.png","campaign_num_visible_products":0,"campaign_shop_exists":false,"campaign_shop_is_launched":false,"campaign_shop_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fshop%2F125642/selector/%23card-teaser%2C.png","can_campaign_be_age_gated":false,"can_see_nsfw":false,"color_scheme_selection":null,"currency_migration_in_progress":false,"current_banners":["creator_demo"],"current_user_has_purchases_tab":false,"dc_cpp_module_selection_logic":"","defaultUserCurrency":null,"enableAdminSudo":false,"event_logging_platform":"Web","experienceLocationCountryCode":"IN","formattingLocale":"en-US","google_app_id":"84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com","isIdvSupported":false,"is_anniversary_billing":true,"is_impersonating":false,"is_preview":false,"is_published":true,"is_target":true,"is_user_native_video_enabled":false,"is_webview":false,"locked_post_aggregates":{"audio":0,"image":0,"link":1,"livestream":0,"poll":0,"total":5,"update":1,"video":3},"navigation":{"concierge_status":{"finished_at":null,"started_at":null},"has_suspended_posts":false,"has_undelivered_deliverables":false,"impersonation_write_access":false,"is_active_creator":false,"is_admin":false,"is_impersonating":false,"logged_in_become_creator_cta":null,"referer_url":null,"show_moderation_hub":false,"show_referral_program":false,"show_taxes_page":false,"teammate_status":{"is_owner":false,"is_teammate":false},"utm_params":{}},"notification_platform_killswitch":false,"num_posts":237,"page_theme_color":null,"post_frequency_per_month":0,"random_cover_photo_enabled":false,"recaptcha_site_key":"6LcGC_olAAAAAIRopsADgTdKS2nm_LSlotn_-m-w","shop_promo_assets":{"landscape":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-landscape%2F125642/selector/%23shop-launch-teaser-landscape%2C.png","portrait":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-portrait%2F125642/selector/%23shop-launch-teaser-portrait%2C.png","square":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-square%2F125642/selector/%23shop-launch-teaser-square%2C.png"},"show_acast_button_post_pledge":false,"show_dc_cpp_module":false,"url_rule":"/\u003cstring:campaign_identifier\u003e","verify_location":null},"requestUUID":"d66adfd0-104c-5dfa-bb74-aa4479cfbc94","siftJsKey":"7848bad5f1","transcend":{"endpoint":"https://transcend-cdn.com/cm/8dec6ba2-a601-4c04-a3ba-e4d5b45000f4/airgap.js","isEnabled":true,"unknownCookiePolicy":"block","userToken":""},"userId":0,"webServerPath":"www.patreon.com"},"translations":{"Zj1V3i":["\"",["name"],"\" will no longer have permission to access your Patreon data."],"xZkNw7":["(",["durationDays"]," days free)"],"VteItb":["(plus ",["salesTaxLabel"],")"],"vBX4rX":"(sold out!)","f+dyHu":[["0","select",{"x400":"There was an error","x403":"You have not been granted permission to access this page","x404":"This page could not be found","x410":"This page has expired","x451":"This page is unavailable, for legal reasons","x500":"There was an error","other":"There was an error"}]],"CfdWvR":[["amount"]," interested"],"upKJ/I":[["amountPercent"],"% off"],"DxKXEv":[["benefitContent","plural",{"one":"Audio release","other":"Audio releases"}]],"JHpY1x":[["benefitContent","plural",{"one":"Exclusive post","other":"Exclusive posts"}]],"EK8HSb":[["benefitContent","plural",{"one":"Image","other":"Images"}]],"beItSZ":[["benefitContent","plural",{"one":"Link","other":"Links"}]],"a3ceWo":[["benefitContent","plural",{"one":"Livestream","other":"Livestreams"}]],"y510+H":[["benefitContent","plural",{"one":"Poll","other":"Polls"}]],"KbLEpm":[["benefitContent","plural",{"one":"Video","other":"Videos"}]],"pl8AxX":[["benefitContent","plural",{"one":"Writing","other":"Writings"}]],"mCRjIS":[["commentCount","plural",{"one":["#"," comment"],"other":["#"," comments"]}]],"HwSuqp":[["commenterCount","plural",{"one":["#"," member commented"],"other":["#"," members commented"]}]],"+aYrcw":[["count","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"EJoAbB":[["creationCount","plural",{"one":"Post","other":"Posts"}]],"lW8C1B":[["creationName"]],"0pi2lW":[["creatorName"]," has a Special Offer"],"g7ADQA":[["creatorName"]," removed this video."],"VXI4W7":[["currentUserNumLockedPosts","plural",{"one":["#"," locked post"],"other":["#"," locked posts"]}]],"rlr/x0":[["date"]," at ",["time"]],"l993MX":[["errorCode","select",{"matches":[["0"]]}]],"mpDKQN":[["fullName"]],"9vSg2x":[["fullName"]," | ",["creationName"]],"10pH5C":[["giftDurationMonths","plural",{"one":"month","other":"months"}]],"aEG/6R":[["interestedCount","plural",{"one":["#"," member"],"other":["#"," members"]}]," tapped \"I'm interested\" before the drop."],"ndr4hN":[["itemName"]," print area dimensions:"],"St33Xl":[["label"]," \u003c0\u003e",["chipText"],"\u003c/0\u003e"],"bs/LPE":[["likeCount","plural",{"one":["#"," like"],"other":["#"," likes"]}]],"gaWS6W":[["likeCount","plural",{"one":["#"," member liked"],"other":["#"," members liked"]}]],"NBrbqF":[["maintenanceText"],"\u003c0/\u003eDuring this time Patreon will not be accessible to use on desktop or mobile. Thanks for your patience as we make improvements. \u003c1\u003eLearn more\u003c/1\u003e."],"NzCz50":[["mediaName"]," for \u003c0/\u003e+ members"],"asUquj":[["mediaName"]," for members only"],"YQDaC+":[["memberCount","plural",{"one":"Member","other":"Total members"}]],"Ucv9yr":[["message"]," (",["percentProgress"],"%)"],"tO6/Yg":[["modelCount","plural",{"one":["#"," product"],"other":["#"," products"]}]],"Vwxe9m":[["name"]," added you as a moderator of their chat!"],"abncto":[["name"]," has asked you to be a moderator of their Patreon!"],"y9KgL+":[["numItems","plural",{"one":"1 product","other":["#"," products"]}]],"5e4XrD":[["numOfCampaigns","plural",{"one":["#"," membership"],"other":["#"," memberships"]}]],"EqpOti":[["numOfPosts","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"dkYQP0":[["numPosts","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"2JXa/7":[["numPosts"]," audio posts in your membership"],"dXM2zA":[["numPurchasedPeople","plural",{"one":["#"," person"],"other":["#"," people"]}]],"4rndiS":[["numPurchasedPeople","plural",{"one":"has","other":"have"}]],"MOAXOE":[["otherCount","plural",{"one":"1 member","other":["#"," members"]}]],"r4qQH9":[["paidMemberCount","plural",{"one":"Paid member","other":"Paid members"}]],"w55kiX":[["participantName"]," and ",["participantCount","plural",{"one":"1 other","other":["#"," others"]}]],"v9OOTp":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"zfUbS/":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"kgHgjQ":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"2pY8a7":[["patronCount","plural",{"one":"1 member","other":["#"," members"]}]],"3i8h1h":[["paymentMethodType"]],"0BRm+Z":[["planName"]," plan • \u003c0/\u003e fee + applicable fees and taxes"],"XaVf9D":[["pledgeMoney"]," or more per ",["perThingName"]],"Oc7aiu":[["prefix"],". Enter it below to enable two factor authentication."],"TYd2I1":[["RECOMMENDED_HEIGHT_PROFILE_PHOTO_PX"],"px by ",["RECOMMENDED_WIDTH_PROFILE_PHOTO_PX"],"px recommended"],"imhJXg":[["RECOMMENDED_WIDTH_COVER_PHOTO_PX"],"px by ",["RECOMMENDED_HEIGHT_COVER_PHOTO_PX"],"px recommended"],"hitDb1":[["secondsCurrentlyElapsed"]," seconds"],"AYJKfV":[["stat","plural",{"one":"Audio release","other":"Audio releases"}]],"DYnarf":[["stat","plural",{"one":"Image","other":"Images"}]],"/bfdJ4":[["stat","plural",{"one":"Link","other":"Links"}]],"GmV8dF":[["stat","plural",{"one":"Livestream","other":"Livestreams"}]],"RO3XY5":[["stat","plural",{"one":"Poll","other":"Polls"}]],"P1AB5l":[["stat","plural",{"one":"Video","other":"Videos"}]],"oCJO0Z":[["stat","plural",{"one":"Writing","other":"Writings"}]],"d0XGMA":[["total","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"KsSPED":[["total","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"dLszcj":[["total"]," joined the live drop"],"aAxVTh":[["totalPostCount","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"I+Ee66":[["totalVotes","plural",{"one":["#"," vote"],"other":["#"," votes"]}]," total"],"CDtwdC":[["uploadedHoursAvailable"]," hours available"],"SIGvg7":[["variant"]," thumbnail"],"DFdBHg":"*this rate applies to the full amount of the pledge, including any tax amounts applied","s8WLaO":"\u003c0/\u003e","gn0MKu":"\u003c0/\u003e • All the tools to master membership","l1hRH2":"\u003c0/\u003e • All the tools to master membership","PPUCar":"\u003c0/\u003e • All the tools to master membership plus Merch for Membership","MeJcal":"\u003c0/\u003e • All the tools to master membership plus Merch for Membership\u003c1/\u003e","hOOLSu":"\u003c0/\u003e • For established creators and creative businesses","x0Axvg":"\u003c0/\u003e • Patreon's original plan for creators who joined before May 2019.","SW4Wyz":"\u003c0/\u003e • Simple tools to set up recurring support from your fans","KeJ4L5":"\u003c0/\u003e • Simple tools to set up recurring support from your fans","QzZAiJ":"\u003c0/\u003e fee + applicable fees and taxes","lGe9LB":"\u003c0/\u003e fee per transaction + applicable fees and taxes","fm7goX":["\u003c0/\u003e of ",["userLimit","plural",{"one":["#"," member"],"other":["#"," members"]}]],"P56GE4":"\u003c0/\u003e off","cstokA":"\u003c0/\u003e on iOS","R0rgBR":"\u003c0/\u003e or less","b+y9vQ":["\u003c0/\u003e",["time"]],"7j9yI+":"\u003c0/\u003eOnly you can see this","FqQwig":"\u003c0/\u003ePowered by Crowdcast","xW3Ss8":"\u003c0/\u003eUpload image","g8CD9f":["\u003c0\u003e by \u003c/0\u003e\u003c1\u003e",["authorName"],"\u003c/1\u003e"],"Y3UZaa":["\u003c0\u003e",["campaignName"]," is offering\u003c/0\u003e \u003c1\u003ean ",["intlMerchTitle"],"\u003c/1\u003e"],"rDatLH":["\u003c0\u003e",["creatorName"],"\u003c/0\u003e is creating content you must be 18+ to view. Are you 18 years of age or older?"],"nLIIY7":["\u003c0\u003e",["numberOfPeople","plural",{"one":["#"," person"],"other":["#"," people"]}],"\u003c/0\u003e ",["numberOfPeople","plural",{"one":"has","other":"have"}]," purchased this collection, and will lose access to this post if they don't already have access as a member."],"azP6LI":["\u003c0\u003e\u003c1\u003e",["formattedBalance"],"\u003c/1\u003e \u003c2\u003ewill be transferred to\u003c/2\u003e \u003c3\u003e",["payToLocation"],"\u003c/3\u003e\u003c/0\u003e\u003c4\u003e\u003c5\u003eDue to the volume you’ve processed, this transfer may take up to\u003c/5\u003e \u003c6\u003e10 business days\u003c/6\u003e \u003c7\u003eafter you request the withdrawal.\u003c/7\u003e \u003c8\u003eLearn more\u003c/8\u003e\u003c/4\u003e"],"nC1qVj":"\u003c0\u003e\u003c1\u003eIncrease product prices in the iOS app\u003c/1\u003e\u003c2\u003eProduct prices in the iOS app will be increased to cover Apple's App Store fees. This keeps your earnings approximately the same per sale.\u003c/2\u003e\u003c/0\u003e","Sf47XD":"\u003c0\u003e\u003c1\u003eKeep product prices the same everywhere\u003c/1\u003e\u003c2\u003eYou will earn less per sale for products sold in the Patreon iOS app.\u003c/2\u003e\u003c/0\u003e","H8mmFX":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, higher value or higher risk payouts may be subject to manual review by our fraud team. This may delay receiving your funds. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","vlsLAG":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you may be subject to additional controls when you attempt to pay out your funds, including ID verification and/or a manual review of your payout. This may delay receiving your funds. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","eNG9Hu":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you won’t be able to pay out your funds for 5 days after you’ve received your first pledge. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","AHfoIF":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you won’t be able to pay out your funds for 5 days from when you first add a payout method. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","ORrP7O":"\u003c0\u003e\u003c1\u003eThis creator's members haven't posted anything yet!\u003c/1\u003e\u003c/0\u003e\u003c2\u003e\u003c3\u003eBecome a member\u003c/3\u003e and \u003c4\u003epost\u003c/4\u003e to fill up this feed!\u003c/2\u003e","r/gpP9":"\u003c0\u003e\u003c1\u003eUnlimited digital products with no listing fees\u003c/1\u003e\u003c2\u003eMedia hosting for video, audio, images, and downloadable files\u003c/2\u003e\u003c3\u003eProduct detail pages with previews\u003c/3\u003e\u003c4\u003eA Patreon-hosted online shop\u003c/4\u003e\u003c5\u003eSales analytics and insights\u003c/5\u003e\u003c6\u003eMember-only specials\u003c/6\u003e\u003c7\u003eGlobal payment support and fraud protection\u003c/7\u003e\u003c/0\u003e","1w9+6H":"\u003c0\u003e\u003c1\u003eYou’ve submitted your withdrawal!\u003c/1\u003e\u003c/0\u003e\u003c2\u003eDue to the volume you’ve processed, this payout may take up to \u003c3\u003e10 business days\u003c/3\u003e to process before it gets to your personal account. \u003c4\u003eLearn more\u003c/4\u003e\u003c/2\u003e","9cdfVb":"\u003c0\u003e\u003c1\u003eYour page is outside of Patreon's \u003c2\u003eCommunity Guidelines\u003c/2\u003e or \u003c3\u003eTerms of Use\u003c/3\u003e.\u003c/1\u003e If left unresolved, your page may be temporarily suspended.\u003c/0\u003e","+a+n+G":["\u003c0\u003eACTION REQUIRED\u003c/0\u003e We’ve emailed you with steps to reinstate your account. Please respond directly to that email, or contact us at \u003c1\u003e",["GUIDELINES_EMAIL"],"\u003c/1\u003e."],"nf3IZk":"\u003c0\u003eBack to shop\u003c/0\u003e","Qas6Y9":"\u003c0\u003eBy uploading, you verify that you own and/or have permission to use this artwork.\u003c/0\u003e","AWLkK8":"\u003c0\u003eBy uploading, you verify that you own and/or have permission to use this artwork.\u003c/0\u003e","ERugt0":"\u003c0\u003eCard Number\u003c/0\u003e","+NyNaq":"\u003c0\u003eClear filter\u003c/0\u003e","czRnjX":["\u003c0\u003eDeleting this collection will also remove access for \u003c1\u003e",["numberPurchasedPeople","plural",{"one":["#"," person"],"other":["#"," people"]}],"\u003c/1\u003e who ",["numberPurchasedPeople","plural",{"one":"has","other":"have"}]," purchased it.\u003c/0\u003e"],"F+DcO6":"\u003c0\u003eEditing...\u003c/0\u003e","u3/K5S":"\u003c0\u003eFile needs to be in .srt or .vtt format\u003c/0\u003e","W8Vbc5":["\u003c0\u003eFrom\u003c/0\u003e \u003c1\u003e",["messageSender"],"\u003c/1\u003e \u003c2\u003e(creator)\u003c/2\u003e"],"zYRp92":["\u003c0\u003eFrom\u003c/0\u003e \u003c1\u003e",["messageSender"],"\u003c/1\u003e \u003c2\u003e(member)\u003c/2\u003e"],"IPBunY":"\u003c0\u003eIs there anything else you would like to tell us to help us understand your business or your interest in Premium?\u003c/0\u003e\u003c1\u003e255 characters max\u003c/1\u003e","OwP5qW":"\u003c0\u003eIt looks like you already submitted a Premium application. Please give us 5 - 6 business days to review your application and get back to you.\u003c/0\u003e\u003c1\u003e\u003c2\u003eIf you still haven't heard from us, you may want to \u003c/2\u003e\u003c3\u003econtact support\u003c/3\u003e\u003c4\u003e for more assistance.\u003c/4\u003e\u003c/1\u003e","Jp1X4Y":"\u003c0\u003eLearn more about what you can expect when downgrading to Lite\u003c/0\u003e \u003c1\u003ehere.\u003c/1\u003e","sXEpiU":"\u003c0\u003eLifetime\u003c/0\u003e \u003c1\u003e\u003c2/\u003e\u003c/1\u003e","b4U7HH":"\u003c0\u003eLimited spaces - SOLD OUT\u003c/0\u003e","xs4b7n":["\u003c0\u003eLimited\u003c/0\u003e (",["remaining"]," of ",["userLimit"]," remaining)"],"QHBhoI":["\u003c0\u003eLimited\u003c/0\u003e (",["remaining"]," remaining)"],"VFPgRY":"\u003c0\u003eLivestream\u003c/0\u003e","PMLBYf":"\u003c0\u003eMessage preview not available\u003c/0\u003e","H5EudU":"\u003c0\u003eNo collections yet\u003c/0\u003e","05vkvV":"\u003c0\u003eNo posts yet\u003c/0\u003e","GsSEoQ":"\u003c0\u003ePayouts are currently unavailable. Please verify your identity to to restore access.\u003c/0\u003e","fePdsk":"\u003c0\u003ePledge\u003c/0\u003e \u003c1\u003e\u003c2/\u003e\u003c/1\u003e","kAXhx8":"\u003c0\u003eSee your results\u003c/0\u003e or \u003c1\u003emanage your benefits\u003c/1\u003e.","oVZ/SZ":"\u003c0\u003eSelect language\u003c/0\u003e","pjnuh/":"\u003c0\u003eShift + Return/Enter\u003c/0\u003e to add a new line","8L3nMb":["\u003c0\u003eSomething went wrong:\u003c/0\u003e\u003c1\u003e",["otherErrorsToDisplay"],"\u003c/1\u003e\u003c2\u003e\u003c3\u003eYou may want to \u003c/3\u003e\u003c4\u003econtact support\u003c/4\u003e\u003c5\u003e with these details.\u003c/5\u003e\u003c/2\u003e"],"LleNrJ":"\u003c0\u003eSpecial offer:\u003c/0\u003e","+mwHU9":"\u003c0\u003eStart messaging this creator\u003c/0\u003e","R1QT3Y":"\u003c0\u003eSupport\u003c/0\u003e or \u003c1\u003efollow\u003c/1\u003e creators to see posts in your feed.","hJtwPc":"\u003c0\u003eTerms of Use\u003c/0\u003e for shops need to be accepted by the account owner before teammates can create products. Please ask the account owner to accept the \u003c1\u003eTerms of Use\u003c/1\u003e on the shop page.","s+bwWc":"\u003c0\u003eThis conversation is blocked.\u003c/0\u003e","4T7zah":"\u003c0\u003eThis message was deleted from your view.\u003c/0\u003e","EAbvm4":"\u003c0\u003eThis message was deleted from your view.\u003c/0\u003e","pfr9HM":"\u003c0\u003eTo turn on backup payments, add a payment method.\u003c/0\u003e","8NIp3e":"\u003c0\u003eTotal balance\u003c/0\u003e","IMETYp":"\u003c0\u003eWe noticed it’s been a while since your creator page’s last payment activity. For security reasons, your page has been unlaunched.\u003c/0\u003e\u003c1\u003eYou can \u003c2\u003eedit and relaunch your page\u003c/2\u003e at any time. For more information, check out this \u003c3\u003eHelp Center article\u003c/3\u003e or contact us at guidelines@patreon.com.\u003c/1\u003e","Srh7nF":"\u003c0\u003eWe're sorry! Something went wrong with your Premium application.\u003c/0\u003e\u003c1\u003e\u003c2\u003eYou may want to \u003c/2\u003e\u003c3\u003econtact support\u003c/3\u003e\u003c4\u003e for more assistance.\u003c/4\u003e\u003c/1\u003e","WECDAp":"\u003c0\u003eWhat's included\u003c/0\u003e","DQ78Ox":"\u003c0\u003eYou are about to disconnect your Discord integration from your account. Any members pledged to your tiers will have their roles removed.\u003c/0\u003e\u003c1\u003eOnce you confirm, it may take a few minutes for the integration to be removed.\u003c/1\u003e","Oa6tV8":["\u003c0\u003eYou haven't made changes to this post, so it can't be submitted for review. Please edit it to remove content that doesn't meet our ",["communityGuideLinesLink"]," to continue.\u003c/0\u003e"],"2HHsak":["\u003c0\u003eYou won’t be able to make this post public again after you submit this change, but you will be able to decide which members can see it. To keep it public, please remove all content that does not meet our guidelines and then submit your changes.\u003c/0\u003e\u003c1/\u003e\u003c2\u003eView our ",["communityGuideLinesLink"]," to learn more.\u003c/2\u003e"],"pXRzH2":"\u003c0\u003eYou'll be eligible to earn merch benefits after your free trial period ends\u003c/0\u003e","pEs+ct":"\u003c0\u003eYour balance may be negative due to refunds or other reasons. \u003c/0\u003e\u003c1\u003eLearn more\u003c/1\u003e","imzS1F":"\u003c0\u003eYour members haven't posted anything yet!\u003c/0\u003e","1adXra":"\u003c0\u003eYour page has been temporarily suspended, and it is no longer visible to anyone until you verify your identity. Visit our \u003c1/\u003e to learn more.\u003c/0\u003e","m1PepF":"\u003c0\u003eYour page has been temporarily suspended. \u003c/0\u003eAll creators sharing sexually explicit content or content that includes nudity must verify they are at least 18 years old. Your page is no longer visible to anyone until you verify your identity. \u003c1/\u003e","HkLxCa":"\u003c0\u003eYour page has been temporarily suspended.\u003c/0\u003e We weren't able to verify your identity based on the information you submitted. Your page is no longer visible to anyone. \u003c1/\u003e","8W7Wsz":"\u003c0\u003eYour Patreon creator account is \u003c1\u003ecurrently inactive\u003c/1\u003e and has been hidden until you are ready to relaunch.\u003c/0\u003e \u003c2\u003eLearn more\u003c/2\u003e","F3xFZB":"\u003c0\u003eYour post will be updated on your page and sent for review. This typically takes 2-3 business days. In the meantime, your post is still visible to your members.\u003c/0\u003e","8mGkJj":["\u003c0\u003eYour updated post will be reviewed and made visible again if it meets our ",["communityGuideLinesLink"],". This typically takes 2-3 business days.\u003c/0\u003e"],"jpLZtg":"🪩 Live Drop ended 🪩","stUoZ6":"🪩 Live Drop started 🪩","DDt6nt":"1 audio post in your membership","O0TTjJ":"1. CHANGES NEEDED","QxKYyN":"10 seconds","Mi2Pf5":"2. IN REVIEW","ec1zoJ":"3. RESOLVED","xFCXdE":"A confirmation has been sent to","qRlLVl":"A government-issued photo ID (e.g. driver's license, passport)","Lx1tBz":"A new way to share your latest work so you and your community can experience it in real-time together.","Qmf2fl":"A phone number is required for addresses outside the United States","Qyoyp4":"A smartphone or webcam to take a photo of yourself","1frsVy":"A to Z","3MXUNk":"A white border will be added","gThozy":["About ",["name"]],"Ym7/m8":"About post insights","WcSr0+":"Accept","uBo7ac":"Access Filter","0FRYX2":"Access to Discord","sJPp6h":"Active","sgHvvY":"Add a new payment method to move these memberships.","3eQP+D":"Add address","JAPY5S":"Add Captions","JOdsoF":"Add Card","x+ktch":"Add creator","EJG1aL":"Add headline","/wkMfF":"Add More","OoSIjj":"Add more details","pbPbhb":"Add new","bege7B":"Add new address","9dB4lw":"Add New Address","alfCVq":"Add new card","qGAHjO":"Add new payment method: Apple Pay","VXa8UU":"Add new payment method: card","oyYuc5":"Add new payment method: PayPal","Mb1fF6":"Add new payment method: Venmo","IuOaaH":"Add optional artwork","CcDvSC":"Add payout method","OSzymV":"Add PayPal","0xtOA1":"Add posts","aae1Ts":"Add posts","aGsNbz":"Add socials","mVhYjG":"Add Tiers","0IySRY":"Add your socials so fans know it's you","vuCH4E":["Added by ",["firstName"]," ",["lastName"]],"wdZUIb":"Additional \u003c0/\u003e for non-US PayPal payments","lGWl7R":"Address","bpyBiR":"after \u003c0/\u003e months","Pt5t/Y":"Agree \u0026 Continue","F0p+Vr":"Align text to the left","DtEvNX":"Align text to the right","WpNBH/":"All Customers","gr4aCD":"All posts","rA22eg":"All products","sWWUVB":"All Regions","EG/P6b":"All the tools to master membership","VuG07P":"All the tools to master membership plus Merch for Membership","E+e6Hb":"All-over print placement","Pxp9KV":"Alt text","NRQbhQ":"An image with a high DPI will print clearly","rzh9t3":"An image with a low DPI may appear blurry","YP1NlO":"Any date","nXueU5":"Any JPG, JPEG, PNG, or GIF up to \u003c0/\u003eMB","8niU+T":"Any photos submitted will be securely stored to protect your information. We'll never publicly share or sell this personal information. \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","tCG9Jq":"Any space that isn’t covered by your design will show the fabric. For this reason, patterns and full-bleed images produce the best results.","pTiE1/":"Any tier","yGkEl/":"App store markup is off","m++hPU":"App store markup is on","bYakMC":"Applies to","pPQsXv":"Apply","Ar7dTz":"Apply","+TD14B":"Apply","WUrmp3":"Apply","IpsBeK":"Apply filter","8PfSBm":"Apply for Premium","RCktH2":"Apply for Premium","lRpjaM":"Apps","fF/tDB":"Apt, suite, etc...","WOjggY":["Are you sure you want to delete this ",["entityToDelete"],"? You cannot undo this action."],"cmpbBB":"Are you sure you want to delete this benefit?","24kyfT":["Are you sure you want to delete this post? You cannot undo this action. ",["deletionMonetizationDescription"]],"Cq0ExK":"Are you sure you want to permanently delete this message from your view?","cXNWfb":"Are you sure you want to remove all the images from your post? This will also clear all captions and image descriptions, and cannot be undone. Any inline images you've added will not be affected.","Izw/8f":"Are you sure you want to unpin this post?","E7gCLp":"Artwork Best Practices","ry5ZUM":"Artwork editing disabled","i7WNa/":["Artwork should be \u003c0\u003eat least ",["minDpi"]," DPI\u003c/0\u003e, and the file format should be \u003c1\u003eJPG or PNG\u003c/1\u003e."],"+ODJlF":"As a free member, you'll get updates on public posts.","EU+u5g":"As of","12Xo6/":"Associate address to campaign","Qe2+Ia":"at","BaJMcp":"at \u003c0/\u003e","Y1e/x1":"Audio","QhGR3N":["Audio ",["count"]],"6jcJyp":"Audio timeline","EI4+pP":"Authentication code","JJ9V14":"Auto withdrawal","Zmt05p":"Auto withdrawal is off","wpC8/S":"Available on selected tiers.","OSbsym":"Available to all members.","VATI9O":"Available to all paid members.","pQJ9Pe":"Available to members on:","zYRkyB":"Available to withdraw","QxKRBS":"Average view duration","wZ8/Mc":"Avoid neon, pastel, or very bright colors","AMyBQ2":"Avoid small images, text or details","aR07IM":"Back","AgGTzo":"Back to Creator View","x3i81A":"Back to sign in","XVPqIH":"Backup payments have been turned on. If your primary payment method fails, we'll try a backup payment method.","Zzr6Nv":"Backup payments help prevent failed payments. Turning this off means that your payment may fail if there's a problem with your primary payment method, and you'll lose access to your membership benefits.\u003c0/\u003e\u003c1/\u003eTurning off backup payments would apply to all your memberships, and the following payment methods will no longer be used as backup payment methods:\u003c2\u003e\u003c3/\u003e\u003c/2\u003e","Xs3CuY":"Backup payments help prevent failed payments. When there's a problem with a payment, one of the other payment methods on your account can be used to complete the payment. You can turn this off at any time.\u003c0/\u003e\u003c1\u003e\u003c2\u003eTurning on backup payments applies to all your memberships, including future memberships. You'll get an email before a backup payment method is used.\u003c/2\u003e\u003c3\u003eOther membership settings, including price and when you're charged, aren't changing. Only how payments are made when a payment fails.\u003c/3\u003e\u003c/1\u003e\u003c4\u003e\u003c5/\u003e\u003c/4\u003e","RiXpNy":"Balance","asrgwY":"Become a creator","CKvSxQ":"Become a member","HGcz0r":["Become a paid member to unlock exclusive posts, chats and more from ",["campaignName"],"."],"uu+SA+":"becoming a member","//pvei":"Block","y6au/A":"Block","BdD0Cl":["Block ",["name"]],"tlR9yc":["Block ",["name"]],"9YEg0t":"Block payouts for 5 days and save changes","/3C9wF":"Block this creator","dT3R4/":"Body","LULIjU":"Bold","KRY8qb":"Bullet","zn2W6p":"Buy now","9Jz9uK":"Buy this post","mEJZB+":["By ",["conditionalCta"],", you'll instantly unlock access to ",["total","plural",{"one":["#"," exclusive post"],"other":["#"," exclusive posts"]}]],"neyes1":"By signing up, you are creating a Patreon account and agree to Patreon’s \u003c0\u003eTerms\u003c/0\u003e and \u003c1\u003ePrivacy Policy\u003c/1\u003e","C83TSx":"Cancel","xNMgbD":"Cancel","kTlUHf":"Cancel","t5an2w":"Cancel","BcVfYp":"Cancel","MCwqqw":"Cancel","AiBbaT":"Cancel","2gDn+7":"Cancel","CHRRNh":"Cancel","8Yk+un":"Cancel","IY1kjZ":"Cancel","v08Gif":"Cancel","NL+z9r":"Cancel","jFmvAv":["Cancelled. Access expires on ",["nextChargeDateString"]],"Jd3kpL":"Caption","0AHhTX":"Card","n5W1nf":"Card details","IXPpKS":"Card expiration in MM/YY format","2dUkQ8":"Card number","Okz3FL":"Card verification value","QuIw5s":"Category","Pm6HtC":"Center text","x/AWmA":"Change","z5bEfC":"Change here","HTb0kp":"Change plan","sdy/+m":"Change plan","oRPHhx":"Change plan","/a9bqV":"Change Plan","lHtVw5":"Change progress","kNqsVM":"Change Tier","dBH6bN":"change your email address.","m78b/l":"Chat with creator","gFP3h2":"Check back in a bit","U82gm/":"CHECK OUT THIS MEMBER-ONLY POST","TMTyUs":"Check your internet connection, refresh the page or try again later.","QFKoQu":"Choose a color","xXU2nW":"Choose a new payment method","gKFw3W":"Choose a new payment method","qaP0ir":"Choose which posts to include in the collection","sLh+gP":"Choose your Currency","ohWF72":"Choose your language","X5NjQJ":"Choose your region","Y+fpCk":"City","AXWhnz":"Clear all","rGZkmk":"Clear Email","zvP2un":"Clear filters","YimJ0y":"Clear filters","6/pgTm":"clear search","I+17A1":"Clear search","LZ+VTv":"Clip","RISC23":"Close","lzzUuL":"Close","WBc1xj":"Close","BWT+Xj":"Close the share dialog","ZDoeog":"Close window","jp3Rb2":"Closed Captions","hZjn4g":"Closed Captions","ACuhdj":"CLOSED CAPTIONS","gbpz3u":"Code","dyxT4w":"Code","WGYJ9H":"Collection","MhDGen":"Collections","dmVCDz":"Collections is an improved way to organize your posts and it helps your members explore all your great work.","HQm7vz":"Color cannot be changed after item is published.","GhFsC5":"Color Management","t8yqET":"Color:","npddhH":"Colors that have less than 100% opacity may not print correctly. Use solid colors for all elements of your design.","r60rBW":"Comment deleted","KKItnQ":"Commented","KHBEiL":"Comments are disabled for this post.","D6IugO":"Comments are disabled for this post. Only you can see them.","vsd6yj":"Comments aren't available for this drop right now. Refresh the page or try again later.","Ur1SDW":"Comments have been turned off for this drop.","docSeM":"Community Guidelines","4sM/Jp":"Community Guidelines","qdwDv6":"Compare tiers","myUt/0":"Complete your account","XIKyZ5":"Confirm","BH2zt7":"Confirm","4Wjx3g":"Confirm cancellation","cSJqBh":"Confirm cancellation?","xq57kO":"Congrats! You have unlocked professional tools to grow a membership business your fans will love. Now, back to what you were doing.","YbcM6f":"Connect","4CJYne":"Connect","o4dhmO":"Connect","OIxBgn":["Connect ",["appName"]],"qK3yJ0":"Connect to social accounts","WFrxTP":"Connect your account to listen to Patreon audio posts right on Spotify. To learn about the information you'd share with Spotify, checkout out the \u003c0\u003eHelp Center Article\u003c/0\u003e","+LrZe0":"Connect your social accounts so more fans can find your Patreon through their Search tab.","i9Oq9E":"Connected","jkz2v+":["Connected @",["username"]],"Mrk6RR":["Connected to \u003c0\u003e",["discordConnectionName"],"\u003c/0\u003e"],"6ePc1l":"Consent confirmation","Luc51W":"Contact us","rgFzFd":"Contact Us","EfUcib":"Contact Us","voifyz":"Continue","pU9puA":"Continue","9f05S0":"Continue","UnC+Jt":"Continue","yQOAVw":"Continue","MqvSYE":"Continue with Apple","i56yTX":"Continue with Facebook","NeElwb":"Copied","kD1Aev":"Copy link","8Y/Ct1":"Copy link to clipboard","DpT9zc":"Copy link to this collection","pkVikq":"Copy post link","2xFYVZ":"Could not save captions. Please try again.","6NyQf1":"Country","lVZkQK":"Create","MJtKFI":"Create a password","1AXHDL":"Create collection","hbDI0T":"Create collection with tags","z+iN5v":"Create drop","ViqKf0":"Create on Patreon","S4xi+W":"Create post","Lj0Elg":"Creating an audiogram...","qSgr4M":"Creating your promo card…","x3iXC7":"Creative projects funded through Patreon can’t feature or deploy deceptive technical practices like spam, abusive bulk messaging or artificial traffic or view amplification.","NKywd5":"Creator","R0U1yv":"Creator name","VN7uky":"Creator name","nhL4Gi":"Creator tagline","TkMEzS":"Creators are free to use Patreon to publish content around cooking, DIY products and discussions on health a hygiene. However, creators cannot use Patreon to offer ingredients or products that are intended to be ingested.","+Ldl/v":["Creators residing in ",["specificCountry"]," are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team prior to launch. \u003c1\u003eLearn more\u003c/1\u003e."],"HNx+tW":["Creators residing in ",["specificCountry"]," are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team. \u003c1\u003eLearn more\u003c/1\u003e."],"Pcvxf7":"Creators residing in countries where content with adult/mature themes is regulated are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team prior to launch. \u003c1\u003eLearn more\u003c/1\u003e.","kPtBsz":"Creators residing in countries where content with adult/mature themes is regulated are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team. \u003c1\u003eLearn more\u003c/1\u003e.","yc8dgV":"Creators using Premium must contact their Dedicated Partner Manager to downgrade.","pSUxwW":"Creators who post member-only content twice a month tend to retain more members. This means their members pledge longer!","1BiUVv":"Creators with a custom fee or plan package must contact support to change plans.","232ok0":"Credit card number","QIxZn+":"Current plan","N7/74J":"Current plan","By4/PS":"Current plan","hhDIXM":"Current Plan","/BWUXu":"Current Pledge","X5jE5k":"Current Tier","Q/ZyNl":"Custom","V/qoaf":"Custom brand color hex code","wQjY1k":"Custom plan","Ipr6w+":"Customize page","JvZybz":"CVV","Uza8Hc":"Date","NDmk4C":"Date Filter","5aTssw":"Date published","bCStV8":"Date published","9vWeoT":"Days","pyRO+O":"Decline","8ul7sR":"Declined","Y3/yhP":"default","Cejjoy":"Delete","dvMEdW":"Delete","Bnu7NC":"Delete","LkDN0S":["Delete ",["entityToDelete"],"?"],"xViBS8":"Delete Address","5f6ogw":"Delete Address","ZX2s37":"Delete benefit","Boi63X":"Delete benefit","4bCASM":"Delete entire message","jSaBJr":"Delete post","TlLWbS":"Delete post?","92Nh+U":"Deleting this product will remove it from your shop. If you want to keep this product hidden from the public but still editable, consider unpublishing this product instead.","Esre84":"Deleting this product will remove it from your shop. People who already purchased it will also lose access.\u003c0/\u003e\u003c1/\u003eIf you want existing customers to still have access, unpublish this product instead.","CVGU5z":"Delivery","oCzyhi":"Describe your merch item","0bD/Dg":"Design placement","fL5Rij":["Direct to bank payments aren't supported for ",["length","plural",{"one":"one","other":["#"]}]," of these campaigns. Please select another payment method."],"EZNJd7":"Disabled","otTbU5":"Disconnect","PElsx3":"Disconnect","mFI+Zx":"Disconnect","gTa7OH":"Disconnect","mOW2t4":"Disconnect","pcnEJY":"Disconnect your Spotify account?","rZkW5l":"Discord","YAVK3G":"Discord access","uWpf0U":"Discord Integration","diEoqF":"Discount amount","c5qWMo":"Dismiss","7ovAkT":"Do not use a border","3SyKdN":"Do not use transparent colors","K5+mMU":"Do you want to cancel editing? Any unsaved changes to this benefit will be lost.","fsxLUx":"Do you want to permanently delete this benefit?","qXtkzQ":"Don't miss this drop","1bePiL":"Don't refund customers","NJ4e0b":"Don't worry - your members can still see it during this time. In the meantime, you can still edit this post if you need to make more changes.","eXnwXC":"Don't worry, if you need to close this window to find the timestamp we'll save your progress.","OisS7S":"Done","SY8E5O":"double tap on left or right to skip 10 seconds","3WQ6mB":"Downgrade","ddwGP2":"Downgrade","ZuHHiG":"Downgrade","xrDbxG":"Downgrade","3/FOM9":"Downgrade","ti/ly+":"Downgrade","09ybnq":"Downgrade","xC+P/3":"Downgrade to Lite plan","e3RSYE":"Downgrade to Professional plan","J9pQIr":"Download our \u003c0\u003e\u003c1\u003edesign template\u003c/1\u003e\u003c/0\u003e to ensure your artwork prints exactly as you want it to.","CppBHw":"Download results","oDozdB":"Downloadable file","YWAlWL":"Drag and drop any JPG, JPEG, PNG, or GIF up to \u003c0/\u003e MB","oaE14r":"Drop","KzQ2Wa":["Dropdown for ",["name"]],"eRkUJr":"Dropdown to filter storefront items","BSraeI":"Dropdown to sort storefront items","V1Z2Jf":"Drops are featured at the top of your page 24 hours before and after they go live.","rp0jw8":"Earnings from products sold in the iOS app become available up to 75 days after purchase. The current amount is an estimate. \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","VpTBGr":"Edit","0OCUHB":"Edit","hke5kv":"Edit","8xy5WP":["Edit ",["mediaName"]],"pe2rvr":"Edit Account","BNfEJg":"Edit captions","hSmjny":"Edit collection details","QqXniC":"Edit default settings","lIPP1Q":"Edit details","hd57yp":"Edit my page","+4QHIZ":"Edit page","TJcmcl":"Edit post","nvvntl":"Edit Post","KHHeDo":"Edit price","OokakM":"Edit settings","Toq4rY":"Edit settings","TGFMAf":"Edit thumbnail","OetGR2":"Edit tiers","wnmatP":"Edit your offer","xEITXP":"Eligible","1e19wC":"Eligible members get this benefit once","iWfJi8":"Email","UWChkC":"email filters.","dUo+oM":"Email sent","8y42fl":"Embed image URL","ynv+Sj":"Embed Media","doA5R5":"Enable products showcase","a486i8":"End date","PHSi5K":"ending today at \u003c0/\u003e","gUQK4y":"Enter code","oYQKPq":"Enter password","NVfNkk":["Enter the code we just sent to ",["maskedPhone"],".\u003c0/\u003eYou can also use a backup recovery code instead."],"bFWs7i":"Enter your code","XEDD15":"Enter your login code","ohS4cF":"Entire shop","ad4n94":["Error in searching for “",["resultsSearchText"],"”. Please try again later."],"jnQKAc":"Error submitting, please try again.","Sdusvv":"Even More Evidence","VRpjbw":"Evidence","dP5USt":"Examples of how connecting a Youtube or Twitch account can help your Youtube or Twitch followers find you on Patreon through the Search tab.","0EK9IS":"Exclusive merch","SgFIhp":"Exclusive Merch","mxFsZf":"Exclusive posts and updates","AdhQNB":"Exclusive quarterly merch","Ta/mYY":"Existing comments will be hidden. Comments can't be turned back on once they're turned off.","Z1Wf16":"Experience a creator's latest work live with others as soon as it's released.","TzilfG":"Expired","rtbz5P":"Expires \u003c0/\u003e","RfuQEY":"Explore all membership options","ys+/t7":"Fans can access, stream, or download purchases on any device.","3TQ8VB":"fees and taxes","jwqdWh":"Fetch and show more table rows","4HEtd1":"File guidelines","m/o5Va":"File uploaded","G2cUm7":"Fill out forms","T6ThZs":"Filter","WhPyWd":"Filter by date","eFtu0/":"Filter by tier","R+Lwqf":"Filter by type","ud8Xyp":"Filter Posts","fR57Y0":"Filters","2GVhnn":"Find a creator","Xe/akv":"Find creators you follow","xX8mvi":"Find creators you follow on social media","yw162c":"Find creators you love","r+43vo":"Find your new members in Relationship Manager","cIROc5":"First name","tBBwmL":"Flagged","KidaoH":"Flagged","4pA1a8":"Flow has already been completed","Uf2PXt":"For an \u003c0\u003eadditional \u003c1/\u003e monthly fee\u003c/0\u003e, celebrate your loyal members and simplify your merch to-dos. Here’s how it works:","ZK1cgr":"For artwork with a transparent background, use a PNG file. For designs that do not require transparency, use a JPEG file.","HNdLlC":"For established creators and creative businesses","D77Sti":"For sale","U9Vgik":"Founding creator variable rate","VTayhK":["Free for ",["durationDays"]," days"],"ChzX8r":"Free members only","Sjmagy":"Free Trial","g+xFd9":"Fulfilled by Patreon","wu6UBi":"Full Name","vW2rrB":"Full time creator, earning \u003c0/\u003e or more a month on Patreon","YcBlw7":"Fullscreen","Lzzyd3":"Get a code instead","ad/Ngn":"Get a new code","WxaW/N":"Get access to exclusive content and more.","Ex7Hvm":"Get all the tools you need to grow your membership business and delight your fans. The cost for Pro is \u003c0/\u003e of your Patreon earnings.","FLwmlg":"Get app","CGnW8l":"Get more","u7rskJ":["Get more from ",["campaignName"]],"GGl+vc":["Get more from ",["campaignName"]],"Q+FouO":"Get more from your favorite creators on the app.","l24uNj":"Get paid by offering a paid membership or selling digital products in your shop. You only pay fees when you start earning. \u003c0\u003eLearn more\u003c/0\u003e","t6f4IO":"Get some ideas here","5sixBV":"Get started","Ae3JHp":"Get the latest information about COVID-19.","oF3XbS":"Get updates on new public and free exclusive posts.","IQab1a":"Get updates on new public posts.","cPhQe7":["Go to ",["fullName"],"'s page"],"dcT4fD":["Go to ",["name"],"'s page"],"nUVTBs":"Go to home","NGggAw":"Go to moderator hub","9VEKSD":"Has an engaged audience of at least 100K followers on a social platform or content hub","ETm4Y2":"Has team members that help manage your Patreon page","UsMLwC":"Have more questions?","wUX3SG":"Header 1","7C/0Dv":"Header 2","acTrqT":"Header 3","inem7y":"Header 4","aLDxaH":"Header 5","C2AfWR":"Heading","ss28U+":"Hello! Please confirm your residence.","XloKHA":"Help Center","kOqWKT":"Help Center","/Nukx/":"Help your fans find you","G8FciV":["Hey there! So sorry, but we’re no longer able to accept ",["serviceName"]," for ",["names"],".\u003c0/\u003eIt’s super quick to add a different payment method to keep supporting them."],"YXYdeq":"Hidden","NJ4Efq":"Hidden","18CpCR":"Hide password","w/Idil":"Hide replies","G0+Rbe":"Hmm, we’re \u003c0\u003ehaving trouble with your payment method.\u003c/0\u003e\u003c1\u003eWould you help us \u003c2\u003eresolve\u003c/2\u003e it for you by \u003c3\u003ere-entering some information?\u003c/3\u003e\u003c/1\u003e","Mo8pD4":"Hooray! Let's go back to Account Settings","nNfV1f":"Hooray! Let's go back to Payment Settings","Nv1ozK":"Hooray! This tier comes with merch.","v8pW1Y":"Hours","j93LPm":"How often a member receives this","S+ePX3":"How to proceed","cit0jp":"I agree to an additional \u003c0\u003e\u003c1/\u003e monthly fee\u003c/0\u003e (of total earnings) and the \u003c2\u003e\u003c3\u003eTerms of Use\u003c/3\u003e\u003c/2\u003e.","0GDHXn":"I agree to Patreon's \u003c0\u003eTerms of Use\u003c/0\u003e and \u003c1\u003ePrivacy Policy\u003c/1\u003e","pBczsc":"I agree to these requirements and consent to Jumio collecting and disclosing my biometric information pursuant to its \u003c0\u003ePrivacy Policy\u003c/0\u003e.","iFNjzl":"I consent to Jumio collecting and disclosing my biometric information pursuant to its \u003c0\u003ePrivacy Policy\u003c/0\u003e","5thDsA":["I prefer not to receive benefits from ",["campaignName"]," through the mail"],"YomlEA":"I prefer not to receive benefits through the mail","qxBjVW":"I'm interested","z8kbD5":"If this sounds like you, please answer a few questions to get on the list for a call from our team to talk about Premium. If you’re not quite there, we suggest you get started with the Pro plan.","byuEoK":"If we’re able to support you on Premium, we’ll get back to you by email. But due to the volume of requests we aren’t able to respond to all inquiries. You may also connect to one or more social networks to share details about your audience size.","nlTNBe":["If you can tell us exactly where to look in this ",["mediaTypePhrase"]," we can process your report faster!"],"PcyJoC":["If you cancel, you'll no longer have access to benefits from ",["campaignDisplayName"]," after \u003c0\u003e\u003c1\u003e",["formattedBenefitsExpiresAt"],"\u003c/1\u003e\u003c/0\u003e, including:"],"++fXa5":["If you cancel, you'll no longer have access to benefits from ",["campaignDisplayName"]," immediately, including:"],"BbR13R":"If you decline, you won't be able to change your mind unless the creator asks you again.","22/2DY":"If you experience any problems, please try using a different browser or editing from a desktop device. Thanks for your patience while we work to fix these issues.","PfyL8f":"If you need help or think this was a mistake, visit the \u003c0/\u003e to learn more.","BBw/zK":"If you need help, visit the \u003c0/\u003e.","DjUfBc":["If you still don't see an email after several minutes, you can ",["resendEmailLink"]," the verification link or ",["changeEmailLink"]],"FvfJNk":"If you, someone you know, or a loved one is in danger please consider contacting law enforcement.","1oEj+S":"If you'd like to remove this address, you must first assign a different address to this membership.","VLfzQZ":["If you'd like to try again using your existing ",["translatedPaymentMethodType"],", you can retry the payment. Alternatively, you can use a different payment method to retry with."],"ve2Tk+":"If you're changing your plan to get access to video uploads, please \u003c0\u003echeck your eligibility\u003c/0\u003e first.","FaboVM":"If your payment is declined again, please try adding a new payment method.","IAACih":"If your pledge includes a physical benefit, enter your shipping address below.","RAkPu3":"Image","9YKFYc":["Image ",["count"]],"49TTqH":"Image quality:","wjrTbe":"Image Resolution","/SPByY":"Image URL","g4K+Xk":"Image web link","UZpZ8u":"Images with low DPI (anything less than 150 DPI) should not be used. Low resolution images will appear blurry when printed.","BYcJxv":"Impressions","BnmG3U":"In collection","x63DZg":"In review","MKoMT8":"In review","1QEyWG":"In the meantime, you can still edit this post if you need to make more changes.","3o0hkF":"Include alt text for people with visual impairments","t7MoTA":"Included","DvoARQ":"Included","ttiNR/":"Included","z5IUoY":"Included with membership","wSaguy":"Includes","6hrmEO":"Includes","+TAxHN":"Includes Discord benefits","1lvie0":"Includes video uploads (\u003c0\u003eearly access only\u003c/0\u003e)","ZQ90FO":"Insights","hx91kn":["Insights were last updated at ",["timeElement"]," and will be updated every 30 minutes."],"7XaFEF":"Interested","D1iUCe":"Introducing Drops","YkjkNS":"Invalid file","o1+qTy":"Invalid input","of0LiY":"Invalid reference token.","+D++SL":"Invalid request context.","9DxCKC":"It looks like you might be promoting a raffle, which is outside of our \u003c0\u003eBenefit Guidelines\u003c/0\u003e. Check out our \u003c1\u003eblog post\u003c/1\u003e for more information, and email us at \u003c2\u003eguidelines@patreon.com\u003c/2\u003e if you have any questions.","KOksaG":"It shares private or personal information","pHBt8J":"It's easy and free to list a product. When you make a sale, pay a flat 5% plus applicable","0ejSoi":"It's not respectful or courteous","rBHMeY":"It’s possible that your print may shift when being cut, and as a result borders may appear uneven. We suggest using a full bleed image, or centering your image using our vertical or horizontal placements.","nT4d8n":"It's spam","RisX79":"Italic","1z9M2d":"Join","qQB6Ys":"Join","TUEEP/":["Join ",["campaignName"]],"/SsOGO":["Join ",["campaignName"],"’s waitlist today and be first to know when their Patreon page is live."],"25dK6a":"Join \u003c0/\u003e Tier","QsskOM":["Join for \u003c0/\u003e/",["payPerName"]],"9Cm3ua":"Join for free","XuhQvr":"Join for free to unlock.","mvoxhz":"Join now","ruIs4v":"Join now","3Utrjm":"Join Now","IqfGQ7":"Join now for \u003c0/\u003e per creation","HMWn3b":"Join now for \u003c0/\u003e per month","IQrblZ":"Join the conversation...","5q2JJu":"Join to unlock","X9ooBi":"Join to unlock","9jrzZA":"Joined","lsdaNs":["Joined ",["joined"]],"bUbfX3":"Joined live drop","s8HEnv":"Just add a title and we'll remind you to upload your file later. Files need to be uploaded at least 2 hours before your drop goes live.","RtYLx8":"Just now","wcFnA1":"Justify text","vcwKfI":"Keep benefits","n+mIsU":"landscape","ojwXjD":["Language: ",["language"]],"3Agyk7":"Last name","PFTJN8":"Launch","0jwjoY":"Learn how to tag posts.","AfHd4V":"Learn more","fiV0BR":"Learn more","TG96iq":"Learn more","Z+zSKO":"Learn more","E2C7DW":"Learn more","pJ7QI9":"Learn more","UoeT0/":"Learn more","/dH2s8":"Learn more about blocking","pYwFRg":"Learn more about these features","SAafYX":"Leave discounted Premium plan?","CAJSlJ":"Leave discounted Pro + Merch plan?","mZalQg":"Leave Founders plan?","CsXjrM":"Let anyone pay to get access to this collection.","yZmVi4":"Lifetime support","R5gjiE":"Liked","Rin5cn":["Liked by ",["campaignName"]],"PtdJmS":"Limited (\u003c0/\u003e of \u003c1/\u003e remaining)","6OvQkA":"Limited (\u003c0/\u003e remaining)","xzKVJX":"Link","Ytw6Nq":"Link","2mSBeT":["Link ",["count"]],"Ez8Bhy":"Link copied","PV1qfl":"Link copied","E4wpy1":"Link to help center article explaining how cost of merchandise is charged to creator.","Sk2CgX":"Link URL or email address","yDO09R":"Link URL or email address","K5CtUG":"Listen on Spotify","x0jzPw":"Load Earlier Messages","1M2afd":"Load More","E+rrBd":"Load more collections","6RDgrE":"Load more comments","q0FTZi":"Load more comments","zLfuQD":"Load more replies","Z2eVFy":"Load replies","prz7o0":"Loading content","k0pQUU":"Loading...","FFKLNl":"Locked","yfcDBd":"Log in or sign up","vG6IJa":"Login with Facebook is currently unavailable. Please use another method to create an account, or use the “Need help signing in?” link below with the email address associated with your Facebook account.","YKGWAi":"Looks like the image you're about to post might contain nudity or adult content, which is only allowed on member-only posts. As a reminder, implied nudity is still considered adult content. Please set your post to member-only before proceeding. If you still have questions, take a look at our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or email our Trust \u0026 Safety team at \u003c1\u003eguidelines@patreon.com\u003c/1\u003e.","u0CuWf":"Looks like the image you’ve chosen for this public space may contain nudity or adult content. In most instances, such content must be reserved for patron-only posts. Before finalizing your selection of this image, please take a look at our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or email our Trust \u0026 Safety team at \u003c1\u003eguidelines@patreon.com\u003c/1\u003e for guidance.","bWHhRU":"Looks like you're trying to submit the same profile without any changes. In order to submit again you must change images or content to be in compliance with\u003c0\u003ePatreon's Community Guidelines\u003c/0\u003e.","smfYet":"Make sure everything is spelled correctly.","Z+MYq8":"Make this my default address for new pledges","aCh839":"Make your first post","5AZt0n":"Making this change will affect all products sold in your shop on the Patreon iOS app.","kWxouL":"Manage","Y5KfBp":["Manage ",["numPledges","plural",{"one":"membership","other":"memberships"}]],"fxwPfc":"Manage posts","3iJUkr":"Manage social connections","W/N/If":"Manually select which transactions you want to refund.","ZnCcKH":"Media Type","tqhl1p":["Member for ",["pledgeTime"]],"73aN+g":"Member must update payment information","ISRJFi":["Member of ",["creatorsSupported","plural",{"one":["#"," creator"],"other":["#"," creators"]}]],"gSvUFn":"Member options","aUfueH":"Member since","Eb9bGp":"members","pfyZF7":"Members can send direct messages to you","oEee5n":"Members who commented on this post will show up here.","EcuxOU":"Members who liked or commented are updated near real time.","asMj9n":"Members who liked this post will show up here.","4jLICL":"Members who tapped \"I'm interested\" before the drop will show up here.","Hh6ACD":"Membership already expired","MKNI7O":["Membership expired on ",["membershipExpirationDate"]],"IQ3t0j":["Membership expires on ",["membershipExpirationDate"]],"jO1DaB":"Membership updated","Gr1gaf":"Memberships are updated","3rPLUh":"Merch may be delayed","617Cbx":"Message creator","Nhq/bQ":"Mins","vBFrQu":"MM","sR3ukq":"Moderators can review and remove reported messages. Others in the community will see a moderator badge next to your name.","pKRgFR":"Monetization","uvN+26":"More Evidence","yIlxjn":"More insights","CJ2bev":"Most recent","Y26Rg7":"Multiple stickers on a sheet","YgoO+0":"Name","6YtxFj":"Name","OFwBlZ":"Name","RU++wx":"Name cannot be blank","7wYELO":"Name contains invalid characters","8ZvOzT":"Name on card","Mf9Gtf":"Name on card","wCJLZA":"Name:","5BtLyA":"Need help instead?","rJZg1Q":["Need help now? Visit our ",["communityGuidelines"]," or the ",["helpCenter"]," to see if your question is answered there before you contact us."],"j6eLSO":"Need help signing in?","JFfHoL":"New message","PNMmh3":"New payment method needed","qeLArT":"New ways to easily sort your collections","3YIYxB":"Newest to oldest","hNI8VD":"Newest to oldest","l2I99j":"Next","djIAxR":"Next","aJa7mI":"Next","au0GPC":["Next auto withdrawal on ",["nextFifthEl"]],"CPszfI":["Next charge date: ",["nextChargeDateString"]],"yW5aHh":"No Address on File","puZVmN":"No collections yet","nnZR3D":["No creators found matching \"",["query"],"\""],"xnyk35":["No matches for “",["searchQuery"],"”"],"IIx8Yq":"No posts","3zWjfe":"No posts matching your search term.","mG9V3e":"No products yet","njw6b2":"No published products","4ghozM":"No purchases yet","KbIZkt":["No results for \"",["patronsQuery"],"\""],"rLgWLM":["No results found for \"",["query"],"\""],"s44wvi":"No results were found","cct7Le":"No reward","ahyld0":"No starred messages.","ICiyyM":"No thanks","5FQ5ob":"No unpublished products","RhIG0z":"Normal","i4PI9L":"Normal text","ogabUd":"Not eligible","PuteG7":"Not eligible yet","vlmFlo":"Not enabled","P8/+fr":["Not seeing a verification email from no-reply@patreon.com? Double-check your spam folder and review your ",["emailFiltersLink"]],"4GBxgL":"Not sure what to post?","AA27W6":"Not used for any memberships","vE1e2z":"Now that you're earning over $600 on Patreon this year, the US Government requires that we collect tax forms to fully pay you.","R4jNPo":"Now you can arrange and manage your collections faster.","kzMAal":"Off","X6FsBY":"Oh no! Looks like something went wrong","cmEfB6":"Ok","hfsNUG":"Ok","vY7YpF":"OK","AQfCzx":"OK","2i4bUl":"OK","zga9sT":"OK","VSL+gg":["Oldest posts by ",["campaignName"]],"e/EkR9":"Oldest to newest","7gihbY":"Oldest to newest","do8cm4":"Once you have launched your page, you'll be able to send private messages to your members","ULZC3Q":"Once you upload your media, it'll appear here","Vv6jfR":"Once you upload your media, it'll appear here.","qEm8Pa":"Once you're ready to start selling, you can launch your shop from the shop page.","yeeqbC":"Once your page is published, you can start sharing it with your audience.","FIjVrz":"Once your page is published, you can start sharing it with your audience. Everyone on your waitlist will be notified so they can join right away.","86iV4K":"One-time","4SvYTE":"only \u003c0/\u003e left","yd71Vv":"Only you can see this","lL7Cfc":"Only you can see this","hKZWBX":["Open ",["name"]," dropdown"],"QdZpfr":"Open brand color picker popver.","+7tJjG":"Open in Patreon app?","YxLrdN":"Open navigation","IBSXG7":"Opt Out","ZS+/v6":"Optional","h+WmJK":"Optional","vvDe/Q":"or","oPRVR1":"or pay annually","qIcI55":"Or replay preview","ClZd4q":"or save \u003c0/\u003e if you pay annually","Cfwh5e":"or switch to \u003c0/\u003e a month","v/KcUG":"Orientation","lxQ3/2":"Other options:","06Hd8C":"Other tiers","YfwzlQ":"Our printers set a color profile based on the press used to print items. This process changes how some colors appear, and they may look different than they do on your screen. We recommend against using neon, pastel or very bright colors in your design; these colors look bright on a screen but appear muted when printed. If you want to use bright colors, we recommend designing your art using CMYK, and then converting it to sRGB before uploading.","GfweIP":"Our Trust and Safety team will review your report and take any action necessary.","RYsuH8":"over \u003c0/\u003e","JRTUWv":"page controls","RLdzwv":"Paid for by members","f9vmnL":"Paid Member","LfYXL5":"Paid membership","HkUkyW":"Password","6QtQ04":"Password","tc2L4P":["Passwords need to have at least ",["minLength"]," characters."],"mdPswY":"Patreon creators cannot request payment for raffles or giveaways as part of a benefit. This includes lotteries, raffles or even mystery boxes if the value of the box is not guaranteed. Giveaways must be opened to all members and comply with applicable laws.","TkpvFi":"Patreon does not allow content featuring fringe sexual fetish creations, such as incest, necrophilia, or fetish creations that are hard to distinguish from non-consensual sex.","eLoB7s":"Patreon does not allow creators to offer benefits featuring items that are either sexually gratifying or intimate in nature. Benefits also must not be limited to a single member.","l9L+8c":"Patreon does not allow the depiction of real people engaged in sexual acts, such as masturbation or intercourse. We also do not permit content displaying human genitals for the purposes of sexual gratification.","X5O7Ru":"Patreon does not permit certain benefits associated with sexual services. This includes items or services that are limited to a single member, items that may be sexually gratifying or intimate in nature, sex tourism or one-on-one engagements.","L9M7CM":"Patreon does not permit the use of technology to insert any individual or their likeness into content containing nudity or mature themes without their written consent.","p8Z8qg":"Patreon has a zero tolerance policy for the glorification of sexual violence. This includes depictions of sexualized minors, non-consensual sex, incest, and bestiality.","2iS96W":"Patreon has partnered with Keeper to offer discounted prices for their U.S. income tax filing service that is customized for freelancers and creators.","+lwZSH":"Patreon has received a notification of claimed trademark, patent or copyright infringement related to this material. Please consult our \u003c0\u003eCopyright Policy\u003c/0\u003e for more information and to understand the next steps available to you, including what to do if you believe this action was incorrect.","QQuHEW":"Patreon has updated its \u003c0\u003eterms of use\u003c/0\u003e and \u003c1\u003eprivacy policy\u003c/1\u003e. By clicking “I agree” you affirm that you have read and agreed to the changes.","HsHjfd":"Patreon has zero tolerance for behaviors that exploit minors such as depictions of sexualized minors, grooming, or solicitation. Creators must be 18 years or older to share modeling or “posing”-focused content where their appearance or body is the central visual focus.","xAddfH":"Patreon is investigating issues with site functionality. As a result, you may experience degraded service.","/ob6Ts":"Patreon is not meant to be a means to promote a direct sales business or facilitate Multi-Level Marketing, but a place for creators to launch creative endeavors.","Sh/RlO":"Patreon is required to ensure that all Adult/18+ creators verify certain details. Please review and confirm the following:\u003c0\u003e\u003c1\u003eI am the creator on this account and any identification I submit belongs to me.\u003c/1\u003e\u003c2\u003eI am over the age of 18 and I have verified that any person depicted in my work is over the age of 18.\u003c/2\u003e\u003c3\u003eI consent to and have and will continue to obtain written consent from any person depicted in any of my content to their likeness being uploaded to, published on, distributed by, and downloaded from Patreon, including by the general public.\u003c/3\u003e\u003c4\u003eIf requested, I will provide proof of age and consent documentation to Patreon. I understand i can use \u003c5\u003e\u003c6\u003ethis form\u003c/6\u003e\u003c/5\u003e for this purpose.\u003c/4\u003e\u003c7\u003eIf Patreon removes any of my content due to lack of consent, I may appeal the removal. You may submit your appeal via our \u003c8\u003e\u003c9\u003eHelp Center\u003c/9\u003e\u003c/8\u003e.\u003c/7\u003e\u003c/0\u003e\u003c10/\u003e","06IyBl":"Patreon must respect the laws of many countries and states. To best protect our community, we do not allow any benefits that provide access to betting or gambling products or services.","GIFauA":"Patreon must respect the laws of many countries and states. To best protect our community, we have a zero tolerance policy for any content that contain images of child abuse or sexual depictions of minors.","JpBtZ/":"Patreon permits the discussion of alcohol and tobacco consumption. However, creators are not permitted to offer alcohol, tobacco or tobacco consumption devices. Promotions and incentives to purchase or obtain these items are also prohibited.","5vrkSP":"Patreon permits the discussion of substance abuse and recovery. However, creators are not permitted to offer drugs or drug paraphernalia as benefits, nor may they collect payments to aid in purchasing or acquiring controlled substances. These restrictions extend to offering resources around disease treatments and dieting.","j7EB6Y":"Patreon prohibits the funding of creations that advocate, threaten, or show you causing harm to yourself, other people or animals. You also cannot promote illegal activities such as property crime, distribution of illegal weapons, or drug manufacturing.","+MPNAm":"Patreon requires that content depicting nudity or mature themes not be made public.","/Rmm0R":"Patreon reserves the right to restrict content from or depicting people or projects affiliated with dangerous, hateful or violent groups. This includes espousing their related ideologies and conspiracy theories, or using their codewords and slogans. Members of those groups and people who praise or support the actions of those groups may also be restricted.","7qbHBU":"Patreon takes a strong stance against the sharing of an individual's private information or any actions intended to intimidate or harass an individual. This extends to the compiling of non-private information to coordinate harassment efforts.","2yv1q5":"Patreon uses the Jumio Go real-time verification service to quickly confirm your identity. As part of this process, Jumio collects biometric data by taking a series of photos. These photos are used to confirm a live subject and are matched against the photos you submit of your government-issued identification document. Jumio retains the images you submit of yourself and your identification document as part of a verification record on Patreon’s behalf. To begin the verification process, please confirm you consent to our use of the Jumio Go product to collect and disclose this information.","cacGQq":"Patreon was not designed to help creators launch an Initial Coin Offering (ICO) or create an investment scheme. This includes offering coins to members, assisting in the purchase of cryptocurrency or benefits that promise a certain level of financial gain.","6/dHlV":["Patreon will be running scheduled maintenance on ",["startDate"]," at ",["startTime"],"."],"+DwhuZ":["Patreon will be running scheduled maintenance on ",["startDate"]," from ",["startTime"]," until ",["endTime"]," on ",["endDate"],"."],"o7IdOm":["Patreon will be running scheduled maintenance on ",["startDate"]," from ",["startTime"]," until ",["endTime"],"."],"p6TWWy":"Patreon will not help fund creations that engage in medical misinformation related to Covid-19 or disinformation related to QAnon or Pizzagate conspiracy theories","d9C2NE":"Patreon's plans and features","/nN0Rr":"Patreon's Trust and Safety team reviews these reports","21Rjt/":"Pause","LP3Eg1":"Pay annually","fNkgmj":"Pay annually (Save \u003c0/\u003e)","q8902x":"Pay day is around the corner! We recommend waiting for your payments to fully process before paying yourself out. This typically takes 24 to 48 hours.","/3LEfn":"Pay day is coming soon","r5cpFc":"Payment Amount","A3F6/I":"Payment failed","cCtpSc":"Payment failed","jlH7gs":"Payment failed","kBsBLl":"Payment method added","2ZPsy0":"Payment method updated","9mpTzN":"Payment Processing Rate*","8qIpzh":"Payment successful","45oPTD":"Payments are currently processing at a slower rate than normal. We're investigating the root cause with updates at\u003c0\u003estatus.patreon.com\u003c/0\u003e.","B5VzSz":["Payout fee is \u003c0/\u003e per payout",["possibleAsterisk"]],"b0hdR2":["Payout fee is 1% of the amount transferred, with a minimum of \u003c0/\u003e and a maximum of \u003c1/\u003e",["possibleAsterisk"]],"m8Ol1Z":"Payouts are currently unavailable. Please \u003c0\u003e\u003c1\u003ereview the updated Adult/18+ requirements\u003c/1\u003e\u003c/0\u003e to restore access.","gXgYqW":"Payouts are currently unavailable. Please \u003c0\u003esubmit your tax information\u003c/0\u003e to restore access. \u003c1\u003eLearn More\u003c/1\u003e","7aXDy1":"Payouts are currently unavailable. Please \u003c0\u003everify your identity\u003c/0\u003e to restore access.","tKsv3t":"Payouts are currently unavailable. Please \u003c0\u003everify your identity\u003c/0\u003e to restore access.","EmUg0F":"Payouts aren't available while your identity is being verified. This should only take a few minutes, but if you need help in the meantime, you can reply to our most recent email or contact us via the \u003c0\u003eHelp Center\u003c/0\u003e","xnSzcS":"PayPal is currently unavailable. Please try again later","NiAUWB":"pending","El59sM":"Pending earnings","koPd8D":"Pending earnings from iOS in-app purchases","F82VJK":"Pending funds are from recent membership and shop payments and will be processed for withdrawal shortly.","HwrWaD":"People can see a preview if they're not members yet","4mZLRe":"People will see higher prices on the Patreon iOS app to cover Apple's App Store fees.","qrAtic":"People will see the same price everywhere. You will earn less on shop purchases in the Patreon iOS app.","ZTkTax":["Per ",["payPerName"]],"de01YL":"Phone Number","R6Gj0X":"Phone Number","uMbT43":"Photo","Gqa1YI":"Picture-in-picture","GOwI7a":"Pin it!","4S1a2g":"Pin post","7bBg2i":"Pin post","SaKp1f":"Pin this post","ADAObI":"Pixels are tiny squares that are the building blocks of images. Images are composed of thousands of individual pixels, and the more pixels that make up an image, the better the quality of the image will be.","u+7nDw":"Plan change error","60V3Vg":"Playback Speed","XInFoM":"Playback Speed","KkSudx":"PLAYBACK SPEED","f9JNmh":"Played","3XPo4y":"Please choose a different payment method or add a new one.","AQj+1w":"Please choose a different payment method or add a new one.","7T4hPr":"Please complete your \u003c0\u003eW-9\u003c/0\u003e or \u003c1\u003eW-8 BEN\u003c/1\u003e to pay out.","1XmY9W":"Please confirm that you would like to downgrade to the Lite plan.","2jzItP":"Please confirm that you would like to downgrade to the Professional plan.","gcHnax":"Please confirm that you would like to upgrade.","1yN2cd":"Please enter a valid 5-digit postal code","WiX/0s":"Please enter a valid card number","wjVFsv":"Please enter a valid credit card number","s20228":"Please enter a valid email","4kXGrj":"Please enter a valid expiration date","671KFS":"Please enter a valid name","lXONtw":"Please enter a valid name","qa0TRP":"Please enter a valid security code","BwoEQu":"Please link to your primary content hub or social media account that demonstrates at least 100k followers.","dfqwPk":"Please log in to submit a report.","DJChkP":"Please make changes before submitting for review","VMk0nL":"Please make sure the payout method is valid and that your balance is sufficient.","m9H2Fq":"Please note that content that may be offensive is not prohibited in our \u003c0\u003eCommunity Guidelines\u003c/0\u003e. If you think this violates one of our guidelines, please go back and select the option that best describes the issue you are reporting.","t1dj5R":"Please note that not all sexual content is prohibited in our \u003c0\u003eCommunity Guidelines\u003c/0\u003e. If you think this violates one of our guidelines, please go back and select the option that best describes the issue you are reporting.","45mf9g":"Please provide a valid URL or email address","uhHmKw":"Please provide your postal code...","9H/RGc":"Please select an address or opt out.","+R5qIr":["Please submit a photo of yourself and a photo of a government-issued ID to continue using Patreon. After \u003c0\u003e",["suspensionDateMarkup"],"\u003c/0\u003e your page will be suspended until you provide this information."],"IeRzCj":"Please submit your report directly from the violating post so we can process your report faster.\u003c0\u003eYou can learn how to do that \u003c1\u003ehere\u003c/1\u003e.\u003c/0\u003e","15zphF":"Please try again","i9SYKq":"Please try again later","bwq2Sh":"Please try again, or \u003c0\u003econtact support\u003c/0\u003e if the problem persists.","wkrYwM":["Please verify your identity by ",["suspensionDateMarkup"]," to avoid losing access to payouts."],"m+V3sg":["Please verify your identity by ",["suspensionDateMarkup"]," to avoid losing access to payouts. We're required to verify that all creators sharing sexually explicit content or content that includes nudity are at least 18 years old."],"FpGH/f":"Please wait while we process your payment","tA3z0X":"Pledge \u003c0/\u003e per month","rRFdu9":"Point us to where we can confirm your report. If your link is a video or audio file, please include a timestamp so we can process your report faster!","lvmlU9":"Poll","Wb7tUC":["Poll ",["count"]],"9PtFAD":"Poll ended \u003c0/\u003e","jfnQgC":"Popular posts","G8TiU5":"portrait","gTTBdo":"post","3SS9dt":"Post","F0uXn1":"Post","83tO5g":"Post access","m14eSH":"post feed filters toggle","Iesupa":"Post member-only videos directly on Patreon. You’ll need a Vimeo Pro account (or above) to upload videos with our integration and a Vimeo Premium account for Livestreaming.","UbESqE":"Post type","uprzxr":"Post type","w121v5":"Post type","uCDsYb":"Post views","u9XSiw":"Post views show the number of times your post’s page was viewed. This metric was replaced by Impressions for new posts starting April 2023.","V6BfA0":"Postal Code","FqY/F7":"Posts you have access to","sOUxa4":"Powered by Crowdcast","eQCwXH":"Powered by Vimeo","hMie9u":"Preview","Gxk8iX":"Preview","dpx/b9":"Preview","xID3Dw":"Preview duration must be between 0:10 and 2:00","eiAyQQ":"Preview Unavailable","p85weU":"Preview views","Lzgvhk":"Price","sCdFZv":["Price in ",["code"]],"xymnaV":"Price in other currencies","LvmrQC":"Print Dimensions","fKD82Q":"Private community","nylizw":"Pro","NddQWD":"Product","AALqLI":"Product showcase settings","l8gIvf":"Products you buy from creators will show up here.","I4XFci":"Products you unpublish will appear here. Unpublished products can’t be seen or purchased by anyone.","AdsbFT":"public","1LXMiN":"Public (your waitlist)","mQ8EDp":"Publicly Visible","Z8n+Q8":"Publish","jblSyj":"Published","+hB31L":"Published on","EulvXE":"Purchased on \u003c0/\u003e","9XovmF":"Quote","HBuf/Q":"raising your pledge","Jf+xEq":"Rate per successful payment","LnIXyB":"React","8IAQ5U":"Read More","7Mquiw":"Ready to publish your page?","GKf4cj":"Recent earnings from membership and shop payments that will be processed shortly. \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","UQLoIo":"Recent Posts","IUzVrC":["Recent posts by ",["campaignName"]],"IWWiZ+":"Recommendation reason text input","TJTSOB":"Recommended size 1024x1024px. JPG, JPEG, PNG, or GIF. Max \u003c0/\u003e MB.","obR3X8":"Refresh","1G5sU7":"Refund customers","QZn9vA":["Refunds will be issued to ",["refundCustomers","plural",{"one":["#"," person"],"other":["#"," people"]}]," who purchased this product in the last 90 days. \u003c0/\u003e will be deducted from your balance."],"5CyI1L":"Region choice affects your purchase experience.","zF8LwW":"Related Posts","YOldBe":["Released ",["diffDays","plural",{"one":["#"," day"],"other":["#"," days"]}]," early for members."],"QExgqE":"Reminder set","dXAa/c":"Remove","r3nXsw":["Remove \"",["name"],"\""],"PHyyPe":"Remove recommendation","XkIv78":"Removing integration. Please refresh the page and try again later.","btwL2E":"Replace artwork","w8/3md":"Replace file","YkBqCl":"Replace Photo","QMmv/t":"Replay","ZtWao1":"Replay preview","Va/lo/":"Replied","ngKYtw":"Report Comment","lfjfo6":"Report message","TVaoSJ":"Report this collection","1se6mL":"Report this creator","or10R2":"Report this creator","7XkrTH":"Request more space","RffqO6":"Required","bqggu/":"Required","IrINmU":"Required (255 characters max) •","eI35zn":"Required. You must select a subcategory for sales tax purposes.","FtYjV6":"Requirements for 18+ creators","LtAVvn":"resend","UssOkc":"Resend verification code","KqV3L0":"Resend verification code","KpwdpI":"Resolution is measured in dots per inch (DPI) and refers to the density of ink dots printed by a press. Most of our items require a DPI of at least 150 at 100% of the final print file size. Higher resolution images are more detailed and crisper when printed, so the higher the DPI, the better.","e2uwrq":"Response saved.","XQenp4":"Resume","a9JvQw":"Resume playing","xQydF1":"Resume video","Pb8S49":"Retry in progress","lx5QzZ":"Retry payment again","91CrSI":"Retry payment method?","IoNsbF":"Retry the payment now","vUh/QY":"Retrying your payment","u7FHqw":"Retrying your payment method...","T4I6k6":"Reveal password","egvnOv":"Revoke permissions","yInK7I":"Reward","bH3qUS":"Save","xLoxV+":"Save","n3xkL9":"Save","CzAnXR":"Save","M6/aTy":"Save \u0026 Delete","vJijMZ":"Save \u0026 update","R0hXfM":"Save changes","VfxQMu":"Save your artwork with the sRGB color profile (specifically sRGB IEC61966-2.1). If your design is in CMYK, convert it to sRGB before uploading.","O4r56o":"Save your file to the \u003c0\u003eRGB\u003c/0\u003e color profile, or convert CMYK art to \u003c1\u003eRGB\u003c/1\u003e before uploading.","9Lg+iQ":"Saved","lx6Tc6":"Scan to open the app","ygTbgd":"Schedule a countdown so people can get excited and tune in together.","LOFuFi":"Scheduled","bwUGN5":"Scheduled for","KirsaE":"Seamless checkout and consumption","fjSxKo":"Search","13I+aE":"Search for the creator's name or what they create.","E9Hjl8":"Search posts","QQmYCu":"Search products","THfVtn":"Secs","8FKa1T":"See all \u003c0/\u003e levels","ZiBQdq":"See more posts","ZYdxFP":"See more suggestions","VCe9Gi":"See options","Es6FXZ":"See recommendations","pBO54u":"See replies","s4q1bW":"See upgrade options","WpYzHQ":"Select a color to offer your members.","vF/vje":"Select a conversation to view your messages here.","YoxYBl":"Select a page to display","kyp9V7":"Select a payment method to retry the payment","Mu+szY":"Select a subcategory","VskZHd":"Select a type","RpH59B":"Select frame","j8pf35":"Select image","HMpTrg":"Select image file","3GlSTS":"Select poll choice","4bM/pz":"Select tags to use for your new collection","vt/1j4":"Select this frame","UhqkeH":"Select tier","hiHpZE":["Select your ",["type"],"..."],"GxMXUf":"Select your country of residence...","VygxUA":"Select your video's language","eNAcA1":"Selected Region","IP6dOD":"Sell digital media to anyone","o/7CJn":"Sell digital products","Quzrtk":"Sell post","SLcrbX":"Sell this collection","b+d6a0":"Sell videos, audio, digital files, images, and more to anyone - not just members","cYSXnV":"Selling digital products is currently not available for 18+ creators","9pcnMD":"Send a message to your creators to share your love","nJTMH1":"Send a private message to kick off an intimate relationship with your top fans.","xIuLge":"Send login code via email","C9i1Ml":"Set cover","f3U0Cp":"Set up your shop instantly","I6NwSe":"Settings","iF2Z4M":"Share a preview of this locked post","SQ9PtE":"Share drop","NQ04Wz":"Share locked post","aZjeRb":"Share public post","yi5vkf":"Share the waitlist","aQTFqS":"Share this Patreon","FkKyhN":"Share this public post","47QQnt":"Show fewer tiers","da1MqH":"Show less","3FyH61":"Show more","1zLGZw":"Show more","0QGS3N":"Show more tiers","TYxQTi":"Show products from your shop to all visitors of your homepage. \u003c0\u003eLearn more\u003c/0\u003e","xjv+bo":"Show products that are likely to be popular with your fans","KbP3kM":"Show recently published products","8fYSgS":["Showing ",["firstIdx"]," - ",["lastIndex"]," of ",["totalCount"]],"e57QPp":"Sign up or log in for exclusive access.","sWaiHU":["Signing in as ",["email"]],"PAc5KX":["Signing up as ",["email"]],"w8++Nk":"Simple tools to set up recurring support from your fans","1CtbnJ":"Size","4ig9Az":"Size Chart","AHizYA":["skip backward ",["skipSecondsNumber"]," seconds"],"akLkfc":"Skip for now","HQKdHD":["skip forward ",["skipSecondsNumber"]," seconds"],"MpfGjD":"Small image, text or details may not print properly on the surface of the mug. We recommend using bold graphics to ensure that your artwork prints clearly and packs a punch!","4948Gi":"Smart recommendations","XY2zUL":"Social links will show up on your profile so fans can verify it's you and find your other creator profiles.","lBrBWP":"Sofort Direct Debit does not support non-EUR currencies. Any memberships you want to transfer must be in Euro. Please edit each membership and change it to Euro in order to use Sofort Direct Debit.","D0/5pD":"Sold Out","C/jZJ9":"Sold Out","Tj5Fnq":"SOLD OUT","zDc3vn":"Sold out!","weohkv":"Some Customers","IwJSw4":"Some examples of the Drops experience, including live commenting during a drop and the pre-drop countdown.","mcVPGQ":"Something else not listed here.","kq+//9":"Something went wrong","jv+Yjb":"Something went wrong","0XtTeh":"Something went wrong while validating your identity. Please try again.","6NcrMD":"Something went wrong with your request. Please try again later.","z1vKHM":"Something went wrong, please try again later. If this issue continues, please \u003c0/\u003e to finish verifying your identity.","2BKv4w":"Something went wrong, please try again.","ndAQO4":"Something went wrong.","sGNhiW":"Something went wrong. Please try again later.","PqO5Ej":"Sorry, but you're no longer allowed to send a message to this person.","+irjEW":"Sort by","J1gOKI":"Sort by","GdJaBF":"Sort Order","7Esfdz":"Special Offer","S44PPO":"Special offering","9V2P6d":"Spread the word! Let others know about this waitlist so they can get notified as soon as the Patreon page launches.","lcwDJa":["Start ",["freeTrialDurationDays"],"-day free trial"],"/tIWr1":"Start date","33iBpC":"Start free trial","IKHtil":"Start Free Trial","iBzusN":"Start playback","54rzuv":"Start selling digital products","wdlVyc":"Start the conversation by sending a message.","WaGvbQ":"Stay connected and get updates on new public and free exclusive posts.","iVKt1S":"Stay connected and get updates on new public posts.","KxXPFo":["Stay connected to ",["campaignDisplayName"]," while saving\u003c0/\u003e each ",["payPerNameTranslated"],"."],"xn6yWE":["Stay connected with ",["campaignName"]],"gz/WRI":"Stay on web","eVxtbK":"Sticker Spacing","ppviX3":"Sticker with cutout area","jiCNZh":"Stop selling collection","hcGzeC":"Submit","1FfXD+":"Submit","afNiXe":"Submit","iLhR+B":"Submit","yOHzY2":"Submitting your application...","Ettzn8":"Suggested creators","mFv+Or":"Suggested for you","pjGbbg":"Switch to this tier","k8mxyF":["Switch to\u003c0/\u003e/",["payPerNameTranslated"]],"GjL6AB":"Tags","P739Yk":"Tags","LQVCJT":"Tags","S/OAB2":"Tap “I'm interested” to get notified when it releases so you can experience it live with others.","rstaAv":"Text","UtsFXJ":["Text ",["count"]],"0wlLoF":"Thank you for verifying your identity. We are reviewing your information now. \u003c0\u003eLearn more\u003c/0\u003e","kHqf31":"Thank you for your report.","gUkYm9":"Thank you for your response!","qzyX7J":"Thanks for updating your post","mPqNeI":"Thanks for updating your post to meet our Community Guidelines. To keep our community safe, this post will remain member-only moving forward. If you have any questions, you can visit our \u003c0\u003eHelp Center\u003c/0\u003e.","IjGaWm":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days.","tHEn9E":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days.","zFiLlx":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days. In the meantime, your post is still visible to your members.","JnKXNk":"Thanks for verifying your identity","xWvnpB":"Thanks for verifying your identity. Unfortunately, your page has been disabled because you need to be at least 18 years old to be an 18+ creator on Patreon. Your page is no longer visible to anyone.","jCYaEx":"Thanks for your interest in Premium!","eHbed9":"Thanks for your Premium application!","e/En8f":"Thanks for your purchase","hzBXl7":"The address is invalid. Please make sure it's correct before confirming.","ddBaaI":"The address you've selected is invalid. Please choose another address.","K6gE34":"The code expires after 15 minutes.","QpMgoZ":"The comments are already turned off.","SoGKNE":"The creator may also join to chat with you and others while it's live.","vm3/b0":"The creator you recommend will be notified.","gHl1s8":"The Digital Millennium Copyright Act (DMCA) provides a notice and takedown framework for potential copyright infringements. This framework allows copyright owners to bring a notification of claimed infringement for any potentially infringing works that may be hosted or located on Patreon. Patreon acts expeditiously to remove such works. See our \u003c0\u003eCopyright Policy\u003c/0\u003e for more information.","4KEDzs":["The discounted Premium plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"gJWCop":"The discounted Pro + Merch plan is only available to creators who joined before May 2019.","dDX9az":["The discounted Pro + Merch plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"i8kPDY":"The features and services included in Premium are Dedicated Partner Manager, Team Accounts, and Merch for Membership. Can you tell us which one(s) are most valuable to you and why?","UjxKHj":["The Founders plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"gzZzHW":"The payout amount is too low. Your payout must be greater than \u003c0/\u003e after payout fees.","LPM4CY":"The Premium plan has a very limited number of openings at this time. We’ll be rolling it out gradually as spots become available, and will prioritize creators that will benefit the most from the features and services. Here is the type of creator who will get the most out of Premium:","nBTW6Q":"The price can't be higher than \u003c0/\u003e.","xAQpa2":"The price must be at least \u003c0/\u003e or higher.","KPIx2F":"The price must be set.","AJxHee":"The print area (19” x 19” / 48.3 x 48.3 cm) will be filled entirely with your design. If your artwork does not match these dimensions, it will be resized to fill the print area.","4EQnMa":"The product you're editing will be \u003c0/\u003e everywhere.","bzcAOC":"The product you're editing will be \u003c0/\u003e on Android and web and \u003c1/\u003e in the iOS app.","UwHfOA":"The Trust and Safety team unlaunched your page","Nnne83":["The Trust and Safety team will be contacting you shortly via the email registered to your Patreon page regarding the issues that we've found. If you don't hear from us, please contact us at \u003c0\u003e",["GUIDELINES_EMAIL"],"\u003c/0\u003e.\u003c1\u003eIn the interest of keeping Patreon a safe place for everyone, the Trust and Safety team may apply a temporary suspension to your page if we don't hear from you.\u003c/1\u003e"],"UY+uQ6":"There are different factors that influence how colors appear when printed. While we can’t guarantee 100% color accuracy, we have some tips to ensure your artwork is printed correctly.","+E/xYd":"There has been an error loading the page, please try again.","KArGao":"There is no room on Patreon for hate speech, such as slurs or calling for violence, exclusion, or segregation. This includes serious attacks on people based on their race, ethnicity, national origin, religion, sex, gender identity, sexual orientation, disability, serious medical conditions, caste, or immigration status.","BaPt/N":"There was an error adding your address. Please try again in a few minutes.","ouxWzy":"There was an error deleting your address. Please try again in a few minutes.","xp1flI":"There was an error opting out. Please try again in a few minutes.","UJFTAt":"There was an error selecting a different address. Please try again in a few minutes.","b2x7Yb":"There was an error updating your address. Please try again in a few minutes.","mEYzw7":"There's a problem with your payment","SJ9ZK5":"They won't be able to see your comments or messages, and you won't see their comments or messages anymore. If you're a creator, they also won't be able to become a member, interact with you and your community, or see your posts. If they're already a member, the membership and any payments will be cancelled.","XyImtX":"They'll be able to become a member, interact with you and your community, and see your posts.","MDP8k0":"This account is fake or is posting spam.","EG8ec5":"This address is associated with a membership. You must select an address to transfer the memberships in order to delete.","SYi3SL":"This affects the taxes your members pay","qDjxb1":"This audio is no longer available","pdetLq":"This campaign is currently under maintenance. Try again in 15 minutes.","xU9cci":"This comment has been removed.","H1iFev":"This creator hasn't posted anything yet!","5bS4tA":"This creator is not currently active","jzPAUG":"This image is no longer available","aSVT54":"This information helps us serve creators better, including things like correctly calculating taxes on their behalf.","LHDNZo":"This month","x7r5A7":"This payment method will be removed from your Patreon account.","/mAP0e":"This person filed a chargeback with the intent to receive benefits for free.","TkaYo2":"This person harassed me or one of my members.","wqSOVi":"This person is engaging in inappropriate behaviors towards underage users.","0wS4Ar":"This person is underage and is trying to access adult content.","/oJBPT":"This person took content but didn't follow through on their pledge.","3Dkkk2":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLink"],". To keep your post visible, please make changes to it by \u003c0/\u003e."],"1fNi8c":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLinkMd"],"."],"iuxgJ/":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLinkMd"],". We're here to help you with what to do next."],"3FysCL":["This post is currently hidden because it contains content that doesn't meet our ",["communityGuidelinesLink"],". Please edit your post to make it visible again."],"/ufrS+":["This post is currently hidden because it doesn't meet our ",["communityGuidelinesLinkMd"],"."],"lru+Ve":["This post is currently hidden because it doesn't meet our ",["communityGuidelinesLinkMd"],". To make this post visible again, please edit it to remove any parts that don't follow these guidelines:"],"4G7GeD":"This product has been removed from the creator's shop and is unavailable right now.","mr+feX":"This product is no longer available","9dUcnX":"This removes the option for fans to unlock this collection without a membership.\u003c0/\u003e\u003c1/\u003eIt'll still be available to fans who have already purchased it, and to members who have access as a part of their tier.","XxSWM/":"This video has been removed by the creator","KT699h":"This will appear at the top of your profile and replace any previously pinned post. Are you sure?","wWxv9h":"Tier","0DWxsY":"Tier","JUY7pi":"Tier Filter","BSVLEm":"Tiers","rko+sO":"Time cannot be greater than video length","0Ib+N6":"Title","GqhVxZ":"To","ZIMQNF":"To be eligible to downgrade, please make the following changes:","c984wM":"To continue, \u003c0\u003eplease enter your legal name.\u003c/0\u003e","KQ4mdx":"To continue, enter the verification code generated by your authenticator app, or your backup recovery code.","3+iaKc":["To continue, please create a new password. Look for the email we sent to \u003c0\u003e",["email"],"\u003c/0\u003e and follow the link to reset your password."],"HmsDJo":"To delete this address, please provide a new address or opt out from receiving physical benefits on the \u003c0\u003eMemberships page\u003c/0\u003e.","WyXphu":["To delete this payment method, please transfer your ",["numPledgesCopy2","plural",{"one":"membership","other":"memberships"}]," to another payment method or delete your ",["numPledgesCopy3","plural",{"one":"membership","other":"memberships"}],"."],"lfjOG8":"To downgrade your plan, please contact \u003c0\u003emerch@patreon.com\u003c/0\u003e","AOIZTO":"To ensure that your image covers the entire area of the neck gaiter, use full-bleed image that spans across the entire dimension of the template, or create artwork that is exactly 19” x 19” / 48.3 x 48.3 cm. If your design only partially covers the print area, use a transparent background and submit the image in PNG format.","8jPWtH":"To fix this issue, please contact the creator directly. If that doesn't work and you want to change or delete your pledge, you can learn how to do that \u003c0\u003ehere\u003c/0\u003e.","4DdTR3":"To get started, make sure you have the following ready","IfdUsw":"To keep your post visible and to see what changes are needed, please edit this post by \u003c0\u003e\u003c1/\u003e\u003c/0\u003e.","rBBiSy":"To learn about the information you shared with Spotify, check out the \u003c0\u003eHelp Center article.\u003c/0\u003e","jyPRZn":"To protect you and your money, we will place a temporary hold from paying out your account balance \u003c0\u003euntil \u003c1/\u003e\u003c/0\u003e.","Ro/twu":"To report copyright infringement, learn how you can submit a DMCA request \u003c0\u003ehere\u003c/0\u003e.","bPh6T4":"To report suspicious activity please submit a request \u003c0\u003ehere\u003c/0\u003e. Our trust and safety team will review your report and take any action necessary.","6qxctQ":"To see what changes are needed to make it visible again, please edit this post.","pDUQfg":"To upload more videos, delete some videos or request more space.","I+WvCq":"toggle preview/crop mode","zLj6jc":"Tooltip content","iwzAYH":["Transfer ",["numPledges","plural",{"one":"membership","other":"memberships"}]],"WzO/+1":"Transfer fees may occur depending on the payment processor. Funds usually arrive within 3-5 business days.","dNtDST":"Transfer went through","gQH93V":["Transfer your ",["pledgesToTransferCount","plural",{"one":"membership","other":"memberships"}]," for ",["nsfwCampaignsList"]," to an existing payment method"],"TdrmdG":["Transfer your ",["pledgesToTransferCount","plural",{"one":"membership","other":"memberships"}]," to an existing payment method"],"bAODHv":["Trial ends ",["nextChargeDateString"]],"SD4b5a":"Tried to change locations too many times. Please try again later.","nPuTuc":"Try again later","J76HsR":"Try another payment method","ibCNAF":"Try more general keywords.","T6anvl":"Try searching for something else, or:","0X3wxs":"Try searching for something else.","0/QrA9":"Turn off comments","98jY0H":"Turn off comments for this Drop?","DjL5+C":["Type or paste ",["category"]," URL"],"Nc//Od":"Uh-oh. Something is wrong with this token.","JUv4Ig":"Unable to copy link","3ncUL4":"Unable to create collection. Please try again.","pVWXTD":"Unable to embed the media for this post.","pDBA8x":"Unable to withdraw","aCbgFc":"Unavailable","HF1mju":"Unblock","jr03kj":"Unblock","lrK6yZ":"Unblock","qfWDWx":["Unblock ",["name"]],"0Fl3TK":["Unblock ",["name"]],"nygjre":"Unblock this creator","1crAYh":"Underline","3RI5ln":"Unfortunately, based on the information you submitted, we weren't able to verify your identity. Your page has been disabled and it's no longer visible to anyone.","H3xS0V":"Unfortunately, we weren't able to verify your identity. Please try again. Make sure you're using a valid ID and that all the details are clearly visible.","yYq1hs":"Unlock it now","UQAXie":["Unlock the full ",["readableTime"]," video by becoming a member"],"sNB240":["Unlock the full audio (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"hour","other":"hours"}],")"],"rIcSgk":["Unlock the full audio (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"min","other":"mins"}],")"],"ykrNmE":"Unlock the full post by becoming a member","xmAXBg":["Unlock the full video (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"hour","other":"hours"}],")"],"mcK7Ek":["Unlock the full video (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"min","other":"mins"}],")"],"b461SX":["Unlock this ",["mediaName"],"\u003c0/\u003eby becoming a patron"],"4p2XcV":"Unlock this post","OBycN0":"Unlock this post by selecting\u003c0/\u003ea tier at no additional cost","yEaN8S":["Unlock this post from ",["campaignName"]],"jwYQAE":"Unpin","O5dcpW":"Unpin post","Nhvhir":"Unpin this post","ejZKhw":"Unpublished","+VsOAi":"Unpublished","WfVBi0":"until \u003c0/\u003e","yw6pDc":"Upcoming drops have a release countdown and you can tap \"I'm interested\" to show your interest and get notified right before it goes live.","hMdFS7":"Update Address","3rUeav":"Update on your account","C3tJ55":"Update Payoneer Account","mG2tr4":"Update your password","nw3DYG":["Updated on ",["displayDate"]],"9zCNRJ":"Upgrade","TCyDJy":"Upgrade","ivlDXQ":"Upgrade","XT0hwM":"Upgrade Now","9akhMg":["Upgrade to ",["planName"]," Plan"],"/k0iIi":"Upgrade to access exclusive benefits.","MOMaNf":"Upgrade to comment","ioGy65":"Upgrade to paid","5KyQHr":"Upgrade to Pro","/gh9RX":"Upgrade to unlock","gyRSvf":"Upgrade your membership and get access to exclusive benefits.","equLqk":["Upload a JPEG or PNG file with at least ",["minDpi"]," DPI"],"O3C/0N":"Upload artwork","eKZ6/0":"Upload Artwork","iLDVHD":"Upload file","jP/b3i":"Upload file","qsmmuy":"Upload image","zT59AD":"Upload new cover photo.","14M35q":"Upload new profile photo.","yrCVjy":"Uploading videos to Patreon is currently only available to creators with early access. \u003c0\u003eLearn more\u003c/0\u003e","n1GtGL":"Use a full-bleed image or all-over pattern","nKC8jl":"Use contrasting art colors and product color","ec9UDY":"Use the sRGB color profile","V669Bc":"Use this address for:","SMZ5cs":"Using dark colors on dark products or bright colors on brightly colored products may not print well, even if it looks ok in the preview. For best results, use art colors that contrast with the color of the product you’re designing. To verify color accuracy, we suggest ordering a sample to see exactly how your design will print.","PbluFM":"Venmo does not support non-USD currencies. Please select another payment method or edit your USD pledge individually to use Venmo","2WR/bI":"Verification Code","w0/dyl":"Verify","XddVdJ":"Verify email","fOVfY4":"Verify your account","VCLrC9":"Verify your identity","nWoqwJ":"Verify your identity","Qb4WQK":"Verify your phone number to enable charge up front","szBEpz":"Verify your phone number to enable two-factor authentication","2oxyeO":"Video","hrQmp5":["Video ",["count"]],"GZN6BW":"Video preview","awAWQr":"Video Status","UyrvYc":"Video Storage","LXi6L8":"Video URL","G07THT":"Video web link","MASMAh":"View comments","rMYVSK":"View details","by+6zx":["View drafts ",["draftCountText"]],"gmo89N":"View fees","m+KYLg":"View full size","slCumn":"View in Messages","PPfOaM":"View post","65r5i1":"View post","DuQcmC":"View profile","BcJ7DU":"View unpublished products","aer8Mz":"VIEWING AS","y3EAwj":"Viewing as:","l4xI/J":"Viewing as: Member","Apn4PM":"Viewing as: Public","ChABkb":"Viewing as: Public (your waitlist)","3zKqHn":"Vimeo","r0nzCY":"Visit our \u003c0/\u003e to learn more about identity verification, what documents we accept, and how we protect your personal information.","x/A8bp":"Visit Patreon's Help Center","gpXtez":"Want to upload later?","m84Ox6":"Watch again","PYcKoW":"Watch livestream","tKAOiP":"Watch the livestream","kbW9h3":"We are building tools for creators to understand potential tax obligations and part of that effort requires that we know your location to determine what taxes might apply.","Q86sGB":"We are currently processing pledges","3/MFJa":"We are unable to edit or cancel the membership because you do not have an active membership with this creator.","u+EptC":"We can't find the page you're looking for. Check your internet connection, refresh the page or try again later.","Lv/0Uf":"We couldn't find any pages linked to your Facebook account.","ow8kT3":"We couldn't load the audio player! Please try a different browser.","FMJuXi":"We couldn't verify your address. Please make sure it's correct before confirming.","ur6u25":"We don't allow Patreon to be used to fund political campaigns.","qTvK8i":"We don't allow Patreon to be used to fund weapons or military activity.","kipO/W":"We encountered a problem when uploading your file. Please remove it and retry the upload.","oCS4FN":"We had some trouble transfering your memberships.","nCZ089":"We had some trouble updating your card. Please check you entered the correct information","j61jHx":"We had some trouble updating your card. Please check you entered the correct information","IyqJGs":"We have automatically set prices in other currencies based on Patreon's forecasted exchange rates table. This is what your members from these locations will see.","jp43jk":"We have detected language in this post that may be outside of our \u003c0\u003ecommunity guidelines\u003c/0\u003e (pornographic content). If you believe that this is not the case, you can continue to post it. The post may be reviewed by our Trust \u0026 Safety team. \u003c1\u003eWhy am I seeing this?\u003c/1\u003e","HCTYih":"We have detected language in this post that may be outside of our \u003c0\u003ecommunity guidelines\u003c/0\u003e. Patreon doesn't allow the featuring of seemingly underage characters in the context of adult content. If you believe that this is not the case, you can continue to post it. The post may be reviewed by our Trust \u0026 Safety team. \u003c1\u003eWhy am I seeing this?\u003c/1\u003e","za0hKl":["We just sent a code to ",["email"]],"+2ElXp":"We just sent an text message authentication code to the phone number you provided","A9vEuR":["We just sent an text message authentication code to your phone number ending in ",["phoneNumberLastThree"]],"RaGdep":["We know how important it is to get answers as soon as possible. We'll send a reply to \u003c0\u003e",["creatorEmail"],"\u003c/0\u003e within 2 business days."],"B8so42":"We may need to pause your payouts and transfers until we confirm that you're over 18.","nkYVAT":"We recommend you create your artwork in PSD, TIFF, AI, or other high resolution format, and then save as a JPEG or PNG.","hljRJB":["We sent a verification email to ",["email"],"."],"QhKEfV":["We suggest using our \u003c0\u003e\u003c1\u003etemplate\u003c/1\u003e\u003c/0\u003e to ensure your artwork prints exactly as you want it to. ",["templateInfo"]],"WD7atG":["We use this for purposes like tax and payout, and it's never shown publicly. ",["legalNameLearnMore"]],"y3OhfW":"We were not able to process your card.","dDMKc3":"We will deduct the cost of merch from your account at the time that items are shipped to your members. \u003c0\u003eLearn more\u003c/0\u003e","yb85It":"We’d love to transfer your account balance to your bank, but the pay out method you’d provided has failed. We recommend navigating to your \u003c0\u003epayout preferences\u003c/0\u003e to ensure you’ve entered a valid checking or Paypal account.","eXeQmF":"We’ll add a white border around the edge of your image(s) to ensure that nothing is cut off.","N1ZL4v":"We'll let you know when we've finished reviewing your photos — it should only take a few more minutes. If you need help or have any issues in the meantime, you can reply to our most recent email or contact us via the \u003c0/\u003e.","82xsi9":"We'll never post on your behalf.","0zE3Ki":"We'll notify interested members when the drop is live so they can join right away.","MGGlfm":"We’ll send a verification code to this number. Standard messaging fees may apply.","Ci58rI":"We’re almost done processing your payments and recommend waiting for them to fully process before transferring to your account. This typically takes 12-24 hours.","lXK6Rk":"We’re hard at work processing your payments, which means you might notice these numbers fluctuate over the next 48 hours. We know you’re excited (we are too!), but please sit tight as we process your payments fully before relying on these numbers as your monthly earnings. These numbers may change throughout the month, but don’t worry, that’s just us working in the background retrying any declined payments.","jxOJlv":["We're having trouble processing the ",["translatedPaymentMethodType"]," you use to pay for this membership. To make changes to this pledge, we need to fix this issue."],"MeJkXP":"We’re here to help! Email \u003c0\u003emerch@patreon.com\u003c/0\u003e and we can answer any of your merch design questions.","dTDynx":"We're required to verify that all creators sharing sexually explicit content or content that includes nudity are at least 18 years old. To help us do this, please submit a photo of yourself and a photo of a government-issued ID (e.g. a passport or driver's license).","s0q6f+":"We’re sorry, but we are unable to add cards at this time.","HY6W6n":"We’re sorry, but we were unable to add your card at this time. Please try again.","bdVc/0":"We’re sorry, but we were unable to add your card at this time. Please try again.","0F9ob7":"We've detected that you’re using a mobile browser that may have issues editing text.","1REyRS":"We’ve initiated a payout advance this month, providing earnings from unprocessed pledges before payment processing completed. Due to the payout advance, you may see a negative balance. As we continue to process your member pledges and run our retry process, you will see your balance return to normal.","ziApyf":"We've temporarily restricted your account and you won't be able to withdraw or transfer payouts until you verify your identity.","kBJWCr":"Welcome back","ABJziL":["Welcome to ",["campaignName"]],"FLD/hK":"Welcome your members","QyzJYU":"Welcome! As a free member, you'll get updates on public and free exclusive posts.","2HrgaK":"Welcome! As a free member, you'll get updates on public posts.","s2XSCF":"What are pixels?","Kvpl2l":"What is DPI?","ppmKsk":"What members see","PKdhVn":"What should we call you?","zsr+Sm":"When they do, you'll see it here first.","9owwqF":"When you add a post, it'll show up here","7kRbTi":"When you add or change your payout method, we place a temporary hold on your ability to pay out your earnings. You will be able to pay out your account balance \u003c0\u003eon \u003c1/\u003e\u003c/0\u003e.","Uka3de":"When you create a collection, it'll show up here","KHbP59":"When you save your changes, your post will be updated and sent for review. We'll let you know within 2-3 business days if it's approved. If you think this was a mistake or if you need help, contact us to talk to someone on our team.","6gRAnU":"Why are you reporting this message?","e167u0":"With auto withdrawal, your funds will be automatically transferred on the 5th of the month. Transfer fees may occur depending on the payment processor. Funds usually arrive within 3-5 business days.","yYfJ7c":"Withdrawal amount","qdiUM+":"Withdrawal failed","X6Blmz":"Withdrawal successful","R4xvKt":"Woohoo! You got paid! Funds usually arrive within 3-5 business days.","/uBPLJ":"Write a reply...","jtif19":"You are now on Pro","9jT1sl":["You are sending a private message to ",["numRecipients","plural",{"one":["#"," person"],"other":["#"," people"]}]," separately. Every conversation is private."],"/+WsYa":["You are sending a private message to ",["numRecipients","plural",{"one":"1 member","other":["#"," members"]}]," separately. Every conversation is private."],"LWQ6y1":"You can also \u003c0\u003e\u003c1\u003edelete\u003c/1\u003e\u003c/0\u003e this post instead to resolve this issue.","FM9VF/":"You can also make this post member-only to resolve the issue.","3L6bex":"You can create a sheet with multiple stickers by leaving at least 0.25” / 0.63 cm between each object. This will ensure that there is enough room to add the white border and cut out each image separately. You can also create cutouts within shapes by ensuring that the cutout area is transparent and has at least 0.25” / 0.63 cm around the edge for the border.","/mK0Gm":"You can now charge new members monthly on the same date they joined, instead of the 1st of the month.","bp2hIS":"You can now charge new members when they join, and then monthly on that same date.","3o3pPD":"You can now make edits to your membership","B6zizP":"You can now review and remove reported messages. Others in the chat will now see a moderator badge next to your name. You can choose to stop being a moderator anytime.","T7fhcw":"You can now upload videos directly to Patreon and easily create video previews.","hBciXE":"You can pledge when this page launches","u+PniJ":["You can withdraw your balance anytime after ",["withdrawTimeString"],". \u003c0\u003eLearn more\u003c/0\u003e"],"fuk6L+":"You can't make changes to your pledge because you have a pending retry. Pending payments typically take about 7 business days to settle. You’ll be able to change your pledge once this payment is settled.","uOtNRd":["You currently have \u003c0\u003e",["length","plural",{"one":["#"," campaign"],"other":["#"," campaigns"]}],"\u003c/0\u003e associated with this address."],"Qad3sv":["You currently have \u003c0\u003e",["numPledges"]," active ",["numPledgesCopy1","plural",{"one":"membership","other":"memberships"}],"\u003c/0\u003e on this payment method."],"NXLubl":"You currently have a pending payment for this membership. Please refresh the page and try again later.","dtVk5R":"You don‘t have any members that you can message.","x1mtdp":"You don’t have any post tags to feature yet.","kCzjzd":"You don’t have any valid payment methods to transfer to.","HLQt62":"You don't need to delete this post, but to keep it visible to your members, please edit it to remove any parts that don't follow these guidelines by \u003c0\u003e\u003c1/\u003e\u003c/0\u003e.","uwJSed":"You don‘t pledge to any creators that you can message.","UZXM3x":["You have up to ",["outstandingMerchDeliverablesCount","plural",{"one":"one merch item","other":["#"," merch items"]}]," that are waiting to be delivered. Because the merch you offer is funded from your balance, withdrawing your balance can delay merch shipments. Merch orders are processed starting on the 2nd of every month. If you withdraw your entire balance on the 1st, there is a risk that you could delay a merch shipment until more funds arrive. Are you sure you want to continue to withdraw?"],"+zSMs6":"You haven’t added any featured tags yet.","hhCUjz":"You haven’t featured any tags.\u003c0\u003eLearn how to add feature tags.\u003c/0\u003e","64wNK6":"You haven't posted anything yet!","kuB4kc":"You must add a new address before saving.","P3R1nt":"You must make a change before updating your address","x7S4h6":"You need to verify your email to add a comment.","4H23Mr":["You sent out a private message to ",["numRecipients","plural",{"one":["#"," person"],"other":["#"," people"]}]," separately. Every conversation is private."],"Du1vmt":"You will no longer have access to Benefits, and some dashboards (Membership, Posts, Engagement, and Exit Surveys), Tiers and Special Offers","rloe+I":"You will no longer have access to Benefits, Tiers, Special Offers and some dashboards (Membership, Posts, Engagement, and Exit Surveys),","vVnRdC":"You will no longer have access to Merch for Membership and no Merch items will be fulfilled","JRxHtH":"You will receive this offer as an existing member.","ePBPGR":"You won’t be able to comment or send messages until you resolve this issue.","AtbFUk":"You'll be notified when it's ready. This may take several minutes.","vEhqZL":"You'll get email updates and access to posts only available to free members.","oDM7tw":"You'll need at least one address on file as default for your pledges that require a shippable address.","QtaZAU":"You’ll see the following changes upon downgrading:","b+yIYn":"You'll see when other members join the drop and they'll see you, so you can experience it together.","6nRY4b":"You're all set to use Patreon again! Your account has been restored, and the photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","m4apn4":"You're all set to use Patreon again! Your account has been restored. The photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","E6mNhl":"You're all set! The photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","oN4DM5":["You're close to the current storage limit of ",["uploadHoursAllowed"]," hours for videos. You can request more space at no additional cost or delete some videos."],"LC8Eq9":"You're currently not eligible to upload videos directly to Patreon. Upgrade to the \u003c0\u003ePro\u003c/0\u003e or \u003c1\u003ePremium\u003c/1\u003e plan to get access. \u003c2\u003eLearn more\u003c/2\u003e","NBnWz5":"You're eligible to upload videos directly to Patreon! Learn more about \u003c0\u003evideos on Patreon\u003c/0\u003e","wxxk0t":"You're now a free member!","JOQTZR":"You're using backup payments on your account. New payment methods will also be added as backup methods.","Ixupl4":"You've already applied","iZQCQi":"You've blocked this user.","C0P+pc":"You've reached the message limit.","R7Hs2C":"You’ve successfully paid out!","LIo9pZ":["You've used ",["uploadedInHours"]," hours of storage space, out of ",["uploadHoursAllowed"]," total hours available. You can request more space at no additional cost when you have less than ",["requestThresholdHours"]," hours of space left."],"WfEhrE":["Your ",["length","plural",{"one":"payment","other":"payments"}]," to \u003c0/\u003e didn't go through."],"xTcW2Z":"Your access has been disabled and you can no longer upload videos directly to Patreon. \u003c0\u003eLearn more\u003c/0\u003e","2iYfro":"Your card could not be verified. Please contact your bank to learn more.","vHSbsv":"Your creator balance is on hold while our Trust \u0026 Safety team review your account. \u003c0\u003eLearn more\u003c/0\u003e","auGZ6R":["Your creator balance is on hold. We place a temporary hold on paying out funds from the date of receiving your first payment or from the date of adding a new payout method to ensure we are providing a safe platform for all users. You will be able to pay out your account balance on ",["withdrawTimeString"],". \u003c0\u003eLearn more\u003c/0\u003e"],"vZNLXA":"Your Currency","oVViae":"Your current reward","uABEUr":"Your drop will go live on \u003c0/\u003e","W59tFI":"Your fee will decrease from \u003c0/\u003e to \u003c1/\u003e","sEp0hL":"Your image couldn't be uploaded. Please try again.","pk/Qz8":"Your member since \u003c0/\u003e","kGtiyT":"Your membership is currently pending","BYCvvV":"Your page has been suspended because because you have not followed our \u003c0\u003eCommunity Guidelines\u003c/0\u003e.","gzG7ml":"Your page has been suspended because it isn't following our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or \u003c1\u003eTerms of Use\u003c/1\u003e.","qolMnN":"Your page has been temporarily suspended, and it's no longer visible to anyone until you verify your identity. Visit our \u003c0/\u003e to learn more.","Hm3ryS":"Your page is no longer visible to others and your members won't be charged until you resolve this issue and your page is restored.","ZeQZ8k":"Your page is ready!","5hNpw7":"Your Patreon creator account is \u003c0\u003ecurrently under review\u003c/0\u003e to make sure it meets our guidelines.","Fymt3C":"Your photos are being reviewed","ykaKXc":"Your plan","24GlTQ":"Your plan","oGGWKd":"Your pledge requires a shipping address.","m3J4WP":"Your post is live!","q52W9n":"Your product was deleted. Check on refund statuses in the Audience tab.","MPgbab":"Your retry was successful","YfAY24":"Your retry was unsuccessful","nbKnsW":"Your shop tab won’t be visible until you add a product.","liv1ex":["Your Special Offer, \"",["title"],"\", has ended."],"6jvvZT":["Your Special Offer, \"",["title"],"\", is scheduled to end on \u003c0/\u003e at \u003c1/\u003e."],"xTKFTs":["Your Special Offer, \"",["title"],"\", is scheduled to start on \u003c0/\u003e at \u003c1/\u003e."],"E5a8ux":["Your Special Offer, \"",["title"],"\", will start when you launch your Patreon page and run for ",["daysToRun","plural",{"one":["#"," day"],"other":["#"," days"]}],"."],"F1qRMz":"Your Spotify account will be disconnected from your Patreon account. You will lose access to the exclusive content on Spotify from the Patreon podcasts you have memberships with. You will be able to reconnect another Spotify account at any time.","LLn1mf":"Your storage is full","g/D2GV":"Your tiers","tWuXSL":"Your video storage is full. To upload more videos, delete some videos or request more space in \u003c0\u003eSettings\u003c/0\u003e.","iD4Vsw":"YY","guERGg":"Z to A"},"_sentryTraceData":"ef133854b3894d03b3bf76f7b7fffdd2-8dc38f59bdc0fec3-0","_sentryBaggage":"sentry-trace_id=ef133854b3894d03b3bf76f7b7fffdd2,sentry-environment=production,sentry-release=090d691bb0cf95f15ca023ab7cf5b4c6d665a9be,sentry-public_key=9784cc8aed574851b2540c4903b37506,sentry-transaction=route_vanity"},"__N_SSP":true},"page":"/creatorPublicPage/[vanity]/[[...tab]]","query":{"vanity":"coreyms"},"buildId":"xoJm4yW90VpIZtaK2qw87","assetPrefix":"https://c13.patreon.com/136ab02d994a1b5e5e6f776b04feab74290b2593","isFallback":false,"gssp":true,"customServer":true,"scriptLoader":[]}
</script>
</body>
</html>
In [1]:
pip install selenium
Collecting selenium
Downloading selenium-4.21.0-py3-none-any.whl.metadata (6.9 kB)
Requirement already satisfied: urllib3<3,>=1.26 in c:\users\a k sharma\anaconda3\lib\site-packages (from urllib3[socks]<3,>=1.26->selenium) (2.0.7)
Collecting trio~=0.17 (from selenium)
Downloading trio-0.25.1-py3-none-any.whl.metadata (8.7 kB)
Collecting trio-websocket~=0.9 (from selenium)
Downloading trio_websocket-0.11.1-py3-none-any.whl.metadata (4.7 kB)
Requirement already satisfied: certifi>=2021.10.8 in c:\users\a k sharma\anaconda3\lib\site-packages (from selenium) (2024.2.2)
Requirement already satisfied: typing_extensions>=4.9.0 in c:\users\a k sharma\anaconda3\lib\site-packages (from selenium) (4.9.0)
Collecting attrs>=23.2.0 (from trio~=0.17->selenium)
Downloading attrs-23.2.0-py3-none-any.whl.metadata (9.5 kB)
Requirement already satisfied: sortedcontainers in c:\users\a k sharma\anaconda3\lib\site-packages (from trio~=0.17->selenium) (2.4.0)
Requirement already satisfied: idna in c:\users\a k sharma\anaconda3\lib\site-packages (from trio~=0.17->selenium) (3.4)
Collecting outcome (from trio~=0.17->selenium)
Downloading outcome-1.3.0.post0-py2.py3-none-any.whl.metadata (2.6 kB)
Requirement already satisfied: sniffio>=1.3.0 in c:\users\a k sharma\anaconda3\lib\site-packages (from trio~=0.17->selenium) (1.3.0)
Requirement already satisfied: cffi>=1.14 in c:\users\a k sharma\anaconda3\lib\site-packages (from trio~=0.17->selenium) (1.16.0)
Collecting wsproto>=0.14 (from trio-websocket~=0.9->selenium)
Downloading wsproto-1.2.0-py3-none-any.whl.metadata (5.6 kB)
Requirement already satisfied: pysocks!=1.5.7,<2.0,>=1.5.6 in c:\users\a k sharma\anaconda3\lib\site-packages (from urllib3[socks]<3,>=1.26->selenium) (1.7.1)
Requirement already satisfied: pycparser in c:\users\a k sharma\anaconda3\lib\site-packages (from cffi>=1.14->trio~=0.17->selenium) (2.21)
Collecting h11<1,>=0.9.0 (from wsproto>=0.14->trio-websocket~=0.9->selenium)
Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB)
Downloading selenium-4.21.0-py3-none-any.whl (9.5 MB)
---------------------------------------- 0.0/9.5 MB ? eta -:--:--
---------------------------------------- 0.1/9.5 MB 2.3 MB/s eta 0:00:05
- -------------------------------------- 0.3/9.5 MB 4.1 MB/s eta 0:00:03
--- ------------------------------------ 0.8/9.5 MB 7.0 MB/s eta 0:00:02
------ --------------------------------- 1.5/9.5 MB 8.5 MB/s eta 0:00:01
-------- ------------------------------- 2.1/9.5 MB 10.2 MB/s eta 0:00:01
-------- ------------------------------- 2.1/9.5 MB 10.2 MB/s eta 0:00:01
-------- ------------------------------- 2.1/9.5 MB 10.2 MB/s eta 0:00:01
-------- ------------------------------- 2.1/9.5 MB 10.2 MB/s eta 0:00:01
-------- ------------------------------- 2.1/9.5 MB 10.2 MB/s eta 0:00:01
--------- ------------------------------ 2.3/9.5 MB 5.1 MB/s eta 0:00:02
------------ --------------------------- 3.0/9.5 MB 5.8 MB/s eta 0:00:02
--------------- ------------------------ 3.6/9.5 MB 6.3 MB/s eta 0:00:01
------------------- -------------------- 4.7/9.5 MB 7.5 MB/s eta 0:00:01
---------------------- ----------------- 5.3/9.5 MB 7.8 MB/s eta 0:00:01
------------------------- -------------- 6.0/9.5 MB 8.5 MB/s eta 0:00:01
------------------------- -------------- 6.1/9.5 MB 8.3 MB/s eta 0:00:01
-------------------------- ------------- 6.3/9.5 MB 8.1 MB/s eta 0:00:01
-------------------------- ------------- 6.3/9.5 MB 7.8 MB/s eta 0:00:01
--------------------------- ------------ 6.6/9.5 MB 7.5 MB/s eta 0:00:01
---------------------------- ----------- 6.7/9.5 MB 7.3 MB/s eta 0:00:01
----------------------------- ---------- 7.0/9.5 MB 7.2 MB/s eta 0:00:01
----------------------------- ---------- 7.0/9.5 MB 7.2 MB/s eta 0:00:01
------------------------------ --------- 7.3/9.5 MB 6.8 MB/s eta 0:00:01
------------------------------- -------- 7.4/9.5 MB 6.7 MB/s eta 0:00:01
------------------------------- -------- 7.5/9.5 MB 6.5 MB/s eta 0:00:01
--------------------------------- ------ 7.8/9.5 MB 6.4 MB/s eta 0:00:01
--------------------------------- ------ 8.0/9.5 MB 6.3 MB/s eta 0:00:01
---------------------------------- ----- 8.1/9.5 MB 6.3 MB/s eta 0:00:01
----------------------------------- ---- 8.3/9.5 MB 6.2 MB/s eta 0:00:01
----------------------------------- ---- 8.4/9.5 MB 6.0 MB/s eta 0:00:01
------------------------------------ --- 8.6/9.5 MB 6.0 MB/s eta 0:00:01
------------------------------------ --- 8.7/9.5 MB 5.9 MB/s eta 0:00:01
------------------------------------- -- 8.9/9.5 MB 5.8 MB/s eta 0:00:01
------------------------------------- -- 9.0/9.5 MB 5.7 MB/s eta 0:00:01
-------------------------------------- - 9.1/9.5 MB 5.6 MB/s eta 0:00:01
-------------------------------------- - 9.2/9.5 MB 5.6 MB/s eta 0:00:01
--------------------------------------- 9.3/9.5 MB 5.5 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
--------------------------------------- 9.5/9.5 MB 5.4 MB/s eta 0:00:01
---------------------------------------- 9.5/9.5 MB 4.5 MB/s eta 0:00:00
Downloading trio-0.25.1-py3-none-any.whl (467 kB)
---------------------------------------- 0.0/467.7 kB ? eta -:--:--
----- ---------------------------------- 61.4/467.7 kB ? eta -:--:--
-------------- ------------------------- 163.8/467.7 kB 3.3 MB/s eta 0:00:01
------------------------ --------------- 286.7/467.7 kB 3.0 MB/s eta 0:00:01
--------------------------------------- 460.8/467.7 kB 3.2 MB/s eta 0:00:01
---------------------------------------- 467.7/467.7 kB 2.4 MB/s eta 0:00:00
Downloading trio_websocket-0.11.1-py3-none-any.whl (17 kB)
Downloading attrs-23.2.0-py3-none-any.whl (60 kB)
---------------------------------------- 0.0/60.8 kB ? eta -:--:--
---------------------------------------- 60.8/60.8 kB 1.6 MB/s eta 0:00:00
Downloading wsproto-1.2.0-py3-none-any.whl (24 kB)
Downloading outcome-1.3.0.post0-py2.py3-none-any.whl (10 kB)
Downloading h11-0.14.0-py3-none-any.whl (58 kB)
---------------------------------------- 0.0/58.3 kB ? eta -:--:--
---------------------------------------- 58.3/58.3 kB 3.2 MB/s eta 0:00:00
Installing collected packages: h11, attrs, wsproto, outcome, trio, trio-websocket, selenium
Attempting uninstall: attrs
Found existing installation: attrs 23.1.0
Uninstalling attrs-23.1.0:
Successfully uninstalled attrs-23.1.0
Successfully installed attrs-23.2.0 h11-0.14.0 outcome-1.3.0.post0 selenium-4.21.0 trio-0.25.1 trio-websocket-0.11.1 wsproto-1.2.0
Note: you may need to restart the kernel to use updated packages.
In [6]:
pip install webdriver-manager
Collecting webdriver-manager Downloading webdriver_manager-4.0.1-py2.py3-none-any.whl.metadata (12 kB) Requirement already satisfied: requests in c:\users\a k sharma\anaconda3\lib\site-packages (from webdriver-manager) (2.31.0) Requirement already satisfied: python-dotenv in c:\users\a k sharma\anaconda3\lib\site-packages (from webdriver-manager) (0.21.0) Requirement already satisfied: packaging in c:\users\a k sharma\anaconda3\lib\site-packages (from webdriver-manager) (23.1) Requirement already satisfied: charset-normalizer<4,>=2 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests->webdriver-manager) (2.0.4) Requirement already satisfied: idna<4,>=2.5 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests->webdriver-manager) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests->webdriver-manager) (2.0.7) Requirement already satisfied: certifi>=2017.4.17 in c:\users\a k sharma\anaconda3\lib\site-packages (from requests->webdriver-manager) (2024.2.2) Downloading webdriver_manager-4.0.1-py2.py3-none-any.whl (27 kB) Installing collected packages: webdriver-manager Successfully installed webdriver-manager-4.0.1 Note: you may need to restart the kernel to use updated packages.
In [14]:
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get='https://www.patreon.com/coreyms/posts'
driver.implicitly_wait(10)
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[14], line 3 1 from selenium import webdriver 2 from webdriver_manager.chrome import ChromeDriverManager ----> 3 driver = webdriver.Chrome(ChromeDriverManager().install()) 4 driver.get='https://www.patreon.com/coreyms/posts' 5 driver.implicitly_wait(10) File ~\anaconda3\Lib\site-packages\selenium\webdriver\chrome\webdriver.py:45, in WebDriver.__init__(self, options, service, keep_alive) 42 service = service if service else Service() 43 options = options if options else Options() ---> 45 super().__init__( 46 browser_name=DesiredCapabilities.CHROME["browserName"], 47 vendor_prefix="goog", 48 options=options, 49 service=service, 50 keep_alive=keep_alive, 51 ) File ~\anaconda3\Lib\site-packages\selenium\webdriver\chromium\webdriver.py:50, in ChromiumDriver.__init__(self, browser_name, vendor_prefix, options, service, keep_alive) 47 self.service = service 49 finder = DriverFinder(self.service, options) ---> 50 if finder.get_browser_path(): 51 options.binary_location = finder.get_browser_path() 52 options.browser_version = None File ~\anaconda3\Lib\site-packages\selenium\webdriver\common\driver_finder.py:47, in DriverFinder.get_browser_path(self) 46 def get_browser_path(self) -> str: ---> 47 return self._binary_paths()["browser_path"] File ~\anaconda3\Lib\site-packages\selenium\webdriver\common\driver_finder.py:56, in DriverFinder._binary_paths(self) 53 if self._paths["driver_path"]: 54 return self._paths ---> 56 browser = self._options.capabilities["browserName"] 57 try: 58 path = self._service.path AttributeError: 'str' object has no attribute 'capabilities'
In [20]:
headings=soup.find_all('span', class_='sc-1cvoi1y-0 hxhWXn')
a_list=[span.find_all('a').text for span in headings]
print(a_list)
[]
In [27]:
dates=soup.find_all('span', id_='track-click')
date_list=[date.text for date in dates]
date_list
Out[27]:
[]
In [31]:
youtube_links=soup.find_all('iframe', class_='embedly-embed')
youtube_links_list=[title.text for youtube_link in youtube_links]
youtube_links_list
Out[31]:
[]
In [32]:
y_l_l=', '.join(youtube_links_list)
y_l_l
Out[32]:
''
In [33]:
import re
pattern=re.compile('embed\/([0-9A-Za-z_-]{11})')
v_id=pattern.findall(y_l_l)
print(v_id)
[]
In [5]:
import requests
api_key='AIzaSyBOJKcTxlB7Mr7zItQ_z2Y_6J0XuPVu_Mo'
r=requests.get('https://www.googleapis.com/youtube/v3/videos?part=statistics&id=PYuTzLswn_Y&key=AIzaSyBOJKcTxlB7Mr7zItQ_z2Y_6J0XuPVu_Mo')
data=r.json()
likes=data['items'][0]['statistics'].get('likeCount', 'N/A')
print(likes)
--------------------------------------------------------------------------- KeyError Traceback (most recent call last) Cell In[5], line 5 3 r=requests.get('https://www.googleapis.com/youtube/v3/videos?part=statistics&id=PYuTzLswn_Y&key=AIzaSyBOJKcTxlB7Mr7zItQ_z2Y_6J0XuPVu_Mo') 4 data=r.json() ----> 5 likes=data['items'][0]['statistics'].get('likeCount', 'N/A') 6 print(likes) KeyError: 'items'
In [11]:
import requests
from bs4 import BeautifulSoup
r=requests.get('https://www.nobroker.in/property/rent/bangalore/multiple?searchParam=W3sibGF0IjoxMi45NzgzNjkyLCJsb24iOjc3LjY0MDgzNTYsInBsYWNlSWQiOiJDaElKa1FOM0dLUVdyanNSTmhCUUpyaEdEN1UiLCJwbGFjZU5hbWUiOiJJbmRpcmFuYWdhciJ9LHsibGF0IjoxMi45MzA3NzM1LCJsb24iOjc3LjU4MzgzMDIsInBsYWNlSWQiOiJDaElKMmRkbFo1Z1ZyanNSaDFCT0FhZi1vcnMiLCJwbGFjZU5hbWUiOiJKYXlhbmFnYXIifSx7ImxhdCI6MTIuOTk4MTczMiwibG9uIjo3Ny41NTMwNDQ1OTk5OTk5OSwicGxhY2VJZCI6IkNoSUp4Zlc0RFBNOXJqc1JLc05URy01cF9RUSIsInBsYWNlTmFtZSI6IlJhamFqaW5hZ2FyIn1d&radius=2.0&sharedAccomodation=0&city=bangalore&locality=Indiranagar,Jayanagar,Rajajinagar', headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36'})
print(r)
<Response [200]>
In [12]:
soup = BeautifulSoup(r.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="794951570520699" property="fb:pages"/>
<link href="https://www.nobroker.in" rel="canonical"/>
<link href="//www.googletagmanager.com" rel="dns-prefetch preconnect"/>
<link href="//www.google-analytics.com" rel="dns-prefetch preconnect"/>
<link href="//assets.nobroker.in" rel="dns-prefetch"/>
<link href="//images.nobroker.in" rel="dns-prefetch"/>
<link href="https://assets.adobedtm.com" rel="dns-prefetch preconnect">
<link href="//assets.nobroker.in/static/img/favicon.png" id="favicon" rel="shortcut icon">
<link href="https://images.nobroker.in/static/img/fav64.png" rel="apple-touch-icon"/>
<link href="https://hs.nobroker.in" rel="dns-prefetch preconnect"/>
<!--<meta charset="utf-8"/>-->
<meta charset="utf-8"/>
<meta content="app-id=com.nobroker.app&referrer=utm_source%3Dnobroker%26utm_medium%3DmobileWeb" name="google-play-app"/>
<meta content="app-id=1200507100, app-argument=nobrokerapp://" name="apple-itunes-app"/>
<meta content="#fd3752" name="theme-color"/>
<meta content="flats for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, apartments for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, houses for rent in Indiranagar,Jayanagar,Rajajinagar" name="keywords">
<meta content="1,081 Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage - NoBroker Rental Properties in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage" property="og:title">
<meta content="Contact Owners Directly - Get Without Brokerage Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka along with Rent Agreement and BEST Trusted local Packers And Movers for shifting to new Home only on NOBROKER. Check Now Rental Properties in Indiranagar,Jayanagar,Rajajinagar WITHOUT BROKERAGE to SAVE YOUR MONEY." property="og:description">
<meta content="https://www.nobroker.in" property="og:url"/>
<meta content="https://assets.nobroker.in/nb-new/public/List-Page/ogImage.png" property="og:image"/>
<meta content="@nobrokercom" name="twitter:site"/>
<meta content="1,081 Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage - NoBroker Rental Properties in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage" name="twitter:title"/>
<meta content="Contact Owners Directly - Get Without Brokerage Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka along with Rent Agreement and BEST Trusted local Packers And Movers for shifting to new Home only on NOBROKER. Check Now Rental Properties in Indiranagar,Jayanagar,Rajajinagar WITHOUT BROKERAGE to SAVE YOUR MONEY." name="twitter:description"/>
<meta content="https://assets.nobroker.in/nb-new/public/List-Page/ogImage.png" name="twitter:image"/>
<meta content="360" property="og:image:height">
<meta content="540" property="og:image:width">
<meta content="289265624583131" property="fb:app_id">
<meta content="NoBroker" property="og:site_name">
<meta content="product" property="og:type"/>
<meta content="notranslate" name="google"/>
<meta content="hLy7ta67b2CS6LQFWI3SrB22XIuKUHlAHGEi-0W0ngI" name="google-site-verification"/>
<meta content="81EEED055BF8993A564A4B24AF189813" name="msvalidate.01"/>
<meta content="e5c74d79345e920627558faecd28fae5" name="p:domain_verify"/>
<meta content="084409cababb09e2de24f00eb4048416" name="p:domain_verify"/>
<meta content="239876242888-mbq11kse03n78gs2o5549clvlcv3ls24.apps.googleusercontent.com" name="google-signin-client_id"/>
<meta content="index, follow" name="robots"/>
<title>
1,081 Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage - NoBroker Rental Properties in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage
</title>
<meta content="Contact Owners Directly - Get Without Brokerage Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka along with Rent Agreement and BEST Trusted local Packers And Movers for shifting to new Home only on NOBROKER. Check Now Rental Properties in Indiranagar,Jayanagar,Rajajinagar WITHOUT BROKERAGE to SAVE YOUR MONEY." name="description"/>
<meta content="width=device-width,initial-scale=1,shrink-to-fit=no,maximum-scale=1.0" name="viewport">
<meta content="IE=edge,chrome=1" name="X-UA-Compatible">
<link href="https://assets.nobroker.in/static/img/favicon.png" rel="icon">
<link href="/manifest.json" rel="manifest">
<link href="android-app://com.nobroker.app" rel="alternate"/>
<link href="https://maps.googleapis.com" rel="dns-prefetch"/>
<link href="http://dynamic.criteo.com" rel="dns-prefetch"/>
<link as="font" crossorigin="" href="https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2" rel="preload" type="font/woff2"/>
<link as="font" crossorigin="" href="https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2" rel="preload" type="font/woff2"/>
<link as="font" crossorigin="" href="https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2" rel="preload" type="font/woff2"/>
<link defer="" href="https://fonts.googleapis.com" rel="preload"/>
<link crossorigin="" defer="" href="https://fonts.gstatic.com" rel="preload"/>
<link defer="" href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@900&display=swap" rel="stylesheet"/>
<link defer="" href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com" rel="preconnect"/>
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"/>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Viaoda+Libre&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet"/>
<style>
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
font-display: swap;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
</style>
<script>
window.dataLayer = [];
</script>
<script>
var interval = setInterval(function() {
if (document && document.readyState === 'complete') {
clearInterval(interval);
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NDNFVM5');
}
}, 100);
</script>
<script>
window.googleMapLoadCallBack = function() {
};
window.mobile = {
dispatchEvent: function(eventName, data){
console.log('triggered SSR Dispatch', eventName)
}
}
</script>
<link data-chunk="main" href="https://assets.nobroker.in/nb-new/css/main.58d9b690316629a87717.css" rel="stylesheet"/>
<link data-chunk="listPage" href="https://assets.nobroker.in/nb-new/listPage/listPage.a2eea276861793f98bdb.css" rel="stylesheet"/>
<link data-chunk="NbButton" href="https://assets.nobroker.in/nb-new/NbButton/NbButton.cb7fa1376d823d32954a.css" rel="stylesheet"/>
<link data-chunk="ListPageSearchHeaders" href="https://assets.nobroker.in/nb-new/ListPageSearchHeaders/ListPageSearchHeaders.a7896197a775abf21df2.css" rel="stylesheet"/>
<link data-chunk="ListPageListViews" href="https://assets.nobroker.in/nb-new/ListPageListViews/ListPageListViews.01f4880e93b5f86597e3.css" rel="stylesheet"/>
<link data-chunk="ListPageFilters" href="https://assets.nobroker.in/nb-new/ListPageFilters/ListPageFilters.a683f7cc8b3545b1ed13.css" rel="stylesheet"/>
<link data-chunk="RentFilterss" href="https://assets.nobroker.in/nb-new/39/39.b393462f644af8a715e0.css" rel="stylesheet"/>
<link data-chunk="RentFilterss" href="https://assets.nobroker.in/nb-new/RentFilterss/RentFilterss.cf03dc9905d60c3a7070.css" rel="stylesheet"/>
<link data-chunk="ListPageBreadcrumbs" href="https://assets.nobroker.in/nb-new/ListPageBreadcrumbs/ListPageBreadcrumbs.b2d85ca77399eda2ee39.css" rel="stylesheet"/>
<link data-chunk="DynamicVerticalListPageAdCards" href="https://assets.nobroker.in/nb-new/DynamicVerticalListPageAdCards/DynamicVerticalListPageAdCards.c08f39a55f30e64784b1.css" rel="stylesheet"/>
<script async="" src="https://assets.nobroker.in/nb-new/public/js/instantgratification.js">
</script>
<script>
window.nb = window.nb || {};
nb.pageName = "listPage";
nb.appState = {"route":{"location":null},"global":{"requestData":null},"signupReducer":{"phoneExistLoading":false,"phoneStatus":null,"otpVerification":null,"emailOtpVerification":null,"passwordVerification":null,"newAccountData":null,"newUser":false,"oldUser":false,"userInfo":null,"newAccountDataError":"","userPhoneData":{},"adobeSignupEventCalled":false,"newAccountCreationData":null},"commonReducer":{"status":"","userInfo":null,"activePlanStatus":null,"fetchedUserInfo":false,"walletBalance":null,"signupModal":{},"showAlertMsg":false,"notFound":false,"crowdLeadAdded":null,"openAlertsModal":false,"planDetailInfos":null,"tenantPlanInfo":null,"pagename":null,"userNotificationCount":null,"photoRequestData":null,"propertyId":null,"fromChat":null,"feedBackData":null,"feedBackUpdatedData":null,"openSchedularModal":false,"openScheduleVisitModal":false,"slotsData":null,"bookedSlotData":null,"userEmailSave":null,"walletEnabled":false,"propertyTrendsData":null,"instantLeadData":null,"instantBookData":null,"tenantLeadData":null,"scheduleVisitTimeData":null,"contactedInfoData":null,"hub":null,"contactedIdsForListPage":[],"contactedNotVerifiedIdsForListPage":[],"visitSlotsData":null,"hoodExploreRefreshToken":null,"scratchCardList":{"loading":true,"fetching":false,"data":[],"error":false},"isBasicPlanSuccess":false,"selectedSearchFilterData":{},"preselectedLocalitiesData":[],"listingData":null,"shortlistedProperty":null,"isPayFirstAbFlow":null,"advertiseData":null,"hsCity":{"displayName":"Bangalore","value":"bangalore","image":"https:\u002F\u002Fassets.nobroker.in\u002Fnb-new\u002Fpublic\u002FCommon\u002Fbangalore.png"},"hsCatalogData":{},"hsLineItems":{},"address":{},"userAddressList":[],"hsLocalLineItems":[],"hsLeadIds":{},"hsCityWiseServices":{},"leadCreationSuccess":false,"fetchFeedbackSuccess":false,"exitIntentData":null,"isExitIntentLoading":false,"isExitPopup":false,"continueDetailsData":[],"popularServices":[],"servicingDate":null,"hsPaymentSuccess":false,"orderDetails":{},"userLocation":{},"orderDetailsError":null,"nearbyGeneratorId":null,"nearbyPlacesPlaceId":[],"nearbyTotalData":[],"isDynamicAdsCalled":false,"isSubscriptionLead":false,"updateCartLoading":false,"contactOwnerPlanPageStatus":"","userHistory":[],"loader":{"loading":true,"type":"default"},"metroCityLines":null,"stationDataForMetroLine":null,"searchFor":"Location","preSelectedMetroStation":[],"jacketInfo":null,"jacketHeight":0,"similarScheduledProperties":[],"showNotesModal":{},"propertyNotes":{},"dynamicSeoContent":null,"showNudgeModal":true,"notesActivePillsStatus":{},"leadsData":[],"servicesSupportData":[],"articleData":[],"sendMessageData":{"success":false}},"googleSignInReducer":{"loading":false,"userSocialDetail":null},"facebookSignInReducer":{"loading":false,"userFacebookDetail":null},"alertsReducer":{"postAlersSuccess":""},"listAlertsReducer":{"postAlersSuccess":"","alertRequirementId":null,"recommendedProperties":null,"loading":false,"searchRequirementLoading":false},"resultScreenReducer":{"loading":true,"loader":{"loading":true,"type":"fetching_properties"},"sessionId":"","userFilters":{},"totalRejectedProps":0,"propertySearchData":[],"propertyList":null,"rejectedProperties":[],"showRejectedProps":false,"rejectedCount":0,"ownerContacted":false,"remainingProps":0,"productFeedbackSumitted":false,"productFeedBackSkip":false,"isFetchingDetails":false,"isFetchingSessionDetails":false,"isFetchingAdditionalPropertyData":false,"propertySource":"","sent_status":null,"commuteDetails":null,"smart_contact_owner_status":null,"canShowShortlistContactCard":false,"latestShortlistData":[],"contactedBulkResponse":[],"broadcastMessage":{}},"smartSearchBotReducer":{"loading":false,"filtersPosted":false,"session_id":"","userInfo":{},"conversationList":[],"memberList":[],"isLastIntent":false,"finalFilters":{"user_id":"","place_id":"","looking_for":"","city":"","locality":""},"estimatedRent":null,"propertyCount":null,"estimatorLoading":false},"builderProjectReducer":{"builderInfo":null,"loading":null,"builderOtherData":null,"builderNearbyInfo":null,"isBuilderSponsored":null,"scrapData":null,"sponsoredBuildingUrl":null,"nonSponsoredScrapFooterData":{"popularBuildings":null,"newBuildings":null,"readyToMoveBuildings":null},"nonSponsoredFooterErrorMessage":null,"graphisSaleTrend":true,"bucketRent":[],"bucketSale":[],"reqRegTransRent":{},"reqRegTransSale":{},"regTransRent":[],"regTransSale":[],"userUnlockDetails":{},"itemDetails":{},"limitReached":false,"detailsPosted":null},"cityLevelServicePageReducer":{"loading":false,"currentState":"BUY","lastSearchData":null,"localityType":null,"isFilterFocused":false,"nbStories":null,"flagForStoryApi":false,"topBuilderCityWise":null,"recentPropertyTab23BHK":null,"recentPropertyIH":null,"recentPropertyHighFloor":null,"recentPropertyTopSoc":null,"hotSellingProjects":null,"topRentalSociety":null,"flatmateAccomodation":null,"pgAccomodation":null,"nobrokerTimes":null,"priceTrendsData":null},"listPage":{"loading":false,"listPageProperties":[{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081815b954d52015b956c7e340fa9","rent":25000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081815b954d52015b956c7e8f0faa_877031_241936_original.jpg","score":{"lastUpdatedDate":"2019-10-10T17:37:27+05:30","transit":8.6,"id":"ff8081815b954d52015b956c7e8f0faa","lifestyle":8.4},"propertyCode":"NB-1372443","id":"ff8081815b954d52015b956c7e8f0faa","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1721025387000,"accurateLocation":true,"pinCode":560011,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000\u002Fff8081815b954d52015b956c7e8f0faa\u002Fdetail","futureActivationDate":"2024-07-05T00:00:00+05:30","activationDate":1718346987000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":true,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":true,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.92881008032945,"reactivationReqDate":1716091755000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"25,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":true,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718346991000,"balconies":0,"availableFrom":1718303400000,"photos":[{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_877031_366261_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_877031_241936_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_877031_342334_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_133716_824130_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_133716_164578_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_133716_988672_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_133716_673846_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_125187_261626_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_125187_121332_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_125187_629442_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_125187_336646_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_83722_633684_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_83722_460979_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_83722_273189_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_83722_218702_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_51340_604040_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_51340_399988_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_51340_397292_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_51340_10027_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_38915_656805_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_38915_727955_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_38915_824914_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_38915_421923_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_90846_713426_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_90846_529929_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_90846_942038_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_90846_770067_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_27260_650369_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_27260_949348_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_27260_745100_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_27260_589315_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_43952_905560_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_43952_941997_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_43952_65222_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_43952_918777_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_56758_439612_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_56758_212512_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_56758_760483_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_56758_190185_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_1826_157052_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_1826_843489_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_1826_253569_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_1826_91516_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5858978588955,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1492860567000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"cool joint, near complex, near to 1000 circle , near to hnimas hospital","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1x9MwX5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","society":"Independent House","ownerName":"Kiran","street":"cool joint, near complex, near to 1000 circle , near to hnimas hospital","propertyType":"RENT","secondaryTitle":"Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081815b954d52015b956c7e8f0faa\u002Fff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg","showRequestPhoto":false,"lastActivationDate":1716092452000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.928810080329450000,77.585897858895500000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","projectUrl":"rajajinagar-rajajinagar_bangalore-prjt-5e973845a5a1662dac0b078d","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Lakshminarayanapuram, Rajaj...","negotiable":false,"type":"BHK2","ownerId":"8a9fc3827f4a164f017f4a8388024036","rent":20000,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f91038ffcabc0018ffcd1f6810fbb_55502_524047_original.jpg","score":{"lastUpdatedDate":"2024-06-09T21:46:41+05:30","transit":8.3,"id":"8a9f91038ffcabc0018ffcd1f6810fbb","lifestyle":8.2},"propertyCode":"NB-1377274","id":"8a9f91038ffcabc0018ffcd1f6810fbb","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","active":true,"waterSupply":"CORP_BORE","propertyScore":1720442149000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-lakshminarayanapuram-rajajinagar-bengaluru-karnataka-560010-india-bangalore-for-rs-20000\u002F8a9f91038ffcabc0018ffcd1f6810fbb\u002Fdetail","activationDate":1717936549000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.992919276883832,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"11th Main 7th Cross ; TVS Showroom , Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Rajajinagar f...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","buildingId":"5e973845a5a1662dac0b078d","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718445382000,"balconies":1,"photos":[{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_288120_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_524047_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_145995_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":true,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_799413_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_719456_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_144404_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_351440_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_958955_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_233284_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_374771_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_445198_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_819927_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_445266_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_990493_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_656062_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_486499_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_495870_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_754078_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_35632_medium.jpg"},"disAffinity":-70,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":540,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true}],"availableFrom":1718649000000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55692828446627,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fflats-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Big Bazaar\",\"longitude\":77.5736545,\"seoUrl\":\"\u002Fflats-for-rent-near-big_bazaar_malleswaram_bangalore\",\"latitude\":12.9972035,\"id\":\"ChIJnZWqqi8WrjsRA6tWsLnBkcA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","creationDate":1717933570000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"11th Main 7th Cross ; TVS Showroom ","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"mapped":false,"totalFloor":3,"gym":false,"listingNudge":"Owner Is Live","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1mC5CW5","promoted_b":false,"title":"2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"12:30 PM Tomorrow","timeInLong":1718607600000,"type":"SCHEDULE_VISIT"},"society":"Rajajinagar","ownerName":"Padma Srinivas","street":"11th Main 7th Cross ; TVS Showroom ","propertyType":"RENT","secondaryTitle":"11th Main 7th Cross ; TVS Showroom ","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"NEGOTIATED_RENT":{"value":"20001"},"ACCURATE_LOCATION":{"display_value":"Accurate","value":"ACCURATE"},"MAX_NEGOTIATED_DEPOSIT":{"value":"150000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"09\u002F06\u002F2024 08:38 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Near Basement market"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f91038ffcabc0018ffcd1f6810fbb\u002F8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg","floor":2,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"showProject":false,"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.992919276883832000,77.556928284466270000","maintenance":false,"sharedAccomodation":false},{"propertyAge":1,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Jayanagar 4th T block","negotiable":true,"type":"BHK3","ownerId":"ff8081815e7fc06e015e80a69d327d34","rent":49500,"propertySize":2000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f94438eb382b8018eb3b811611863_76930_524969_original.jpg","propertyCode":"NB-1345744","id":"8a9f94438eb382b8018eb3b811611863","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"3 BHK House for Rent In Jayanagar 4th T Block","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"Jayanagar 4th T block","active":true,"waterSupply":"CORPORATION","propertyScore":1720245495000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":350000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jayanagar-4th-t-block-bangalore-for-rs-49500\u002F8a9f94438eb382b8018eb3b811611863\u002Fdetail","activationDate":1718344695000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9236939,"facing":"N","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Jayanagar Head Postoffice, Jayanagar 4th T block, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"49,500","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718345114000,"balconies":3,"availableFrom":1718649000000,"photos":[{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_76930_252855_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_76930_524969_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_76930_178732_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_76930_265179_medium.jpg"},"disAffinity":999,"subReasons":"","displayPic":true,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_89167_568608_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_89167_484616_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_89167_240689_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_89167_790307_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_78116_480646_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_78116_710090_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_78116_627917_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_78116_778444_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_77181_407450_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_77181_473936_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_77181_522825_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_77181_540642_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_38075_229847_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_38075_272189_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_38075_125288_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_38075_972991_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_26439_317002_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_26439_933424_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_26439_469566_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_26439_275336_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_27260_62703_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_27260_500804_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_27260_932136_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_27260_804417_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_71894_128292_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_71894_313620_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_71894_871405_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_71894_819915_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_63260_664553_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_63260_495700_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_63260_460199_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_63260_740057_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Kitchen","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_41017_745096_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_41017_647670_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_41017_193571_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_41017_406393_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_960_778463_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_960_945465_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_960_182752_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_960_455344_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_95761_766845_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_95761_362000_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_95761_611064_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_95761_724297_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_30623_38407_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_30623_705939_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_30623_932430_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_30623_253872_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Kitchen","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_918_14596_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_918_637003_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_918_356466_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_918_846660_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_90694_235743_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_90694_458766_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_90694_335453_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_90694_50611_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_83123_306736_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_83123_806288_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_83123_86932_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_83123_863287_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5860969,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","creationDate":1712412169000,"swimmingPool":false,"listingVerified":true,"activeViewCount":3,"completeStreetName":"Jayanagar Head Postoffice","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","leaseTypeNew":["ANYONE"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1YQbZR5","promoted_b":false,"verifiedByUser":"ff8081815e7fc06e015e80a69d327d34","title":"3 BHK House for Rent In Jayanagar 4th T Block","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"03:00 PM Tomorrow","timeInLong":1718616600000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"renuga","street":"Jayanagar Head Postoffice","propertyType":"RENT","secondaryTitle":"Independent House, Jayanagar Head Postoffice","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fvideos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002Fthumbnail\u002F42922018124446","showRequestPhoto":false,"lastActivationDate":1712412941000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[{"high":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","thumbnail":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002Fthumbnail\u002F42922018124446","original":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","low":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","id":"5gxI9I1716346665546","state":"APPROVED"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.923693900000000000,77.586096900000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","cupBoard":0,"localityTruncated":" Jayanagar","negotiable":true,"type":"BHK3","ownerId":"8a9fa98278f8646f0178f89511361756","rent":26000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa98278f8646f0178f895115f1758_554374_195823_original.jpg","propertyCode":"NB-1373663","id":"8a9fa98278f8646f0178f895115f1758","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar","buyerProperty":false,"locality":" Jayanagar","active":true,"propertyScore":1720177837000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":300000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in--jayanagar-bangalore-for-rs-26000\u002F8a9fa98278f8646f0178f895115f1758\u002Fdetail","activationDate":1717225450000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":true,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.931366524251837,"reactivationReqDate":1717225043000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"RBI Extension, near medicure hospital, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"3 BHK Flat In Arifa Shaukha...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"26,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":true,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718351474000,"balconies":1,"availableFrom":1718649000000,"photos":[{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_554374_688698_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_554374_195823_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_554374_321041_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg"},"disAffinity":14,"displayPic":true,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_36488_191719_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_36488_276258_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_36488_138148_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_36488_160839_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1152,"name":"image","h":576,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_808073_613792_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_808073_476818_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_808073_579352_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_808073_703924_medium.jpg"},"disAffinity":12,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_417460_59914_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_417460_885804_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_417460_31467_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_417460_708730_medium.jpg"},"disAffinity":12,"subState":"IRIS_FAILED","displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_12739_535044_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_12739_319234_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_12739_507789_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_12739_289950_medium.jpg"},"disAffinity":11,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_637290_546402_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_637290_829499_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_637290_985118_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_637290_388476_medium.jpg"},"disAffinity":11,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_13672_34865_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_13672_766675_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_13672_834282_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_13672_447488_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_601468_923034_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_601468_658909_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_601468_892552_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_601468_981339_medium.jpg"},"disAffinity":-986,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_63105_971343_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_63105_803152_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_63105_872600_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_63105_24368_medium.jpg"},"disAffinity":-987,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5925282561873,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fflats-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fflats-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fflats-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","maintenanceAmount":2500,"creationDate":1619078222000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"RBI Extension, near medicure hospital","totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1hZ5mm6","promoted_b":false,"title":"3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"11:00 AM Tomorrow","timeInLong":1718602200000,"type":"SCHEDULE_VISIT"},"society":"Arifa Shaukhath","ownerName":"kulsum ","street":"RBI Extension, near medicure hospital","propertyType":"RENT","secondaryTitle":"RBI Extension, near medicure hospital","aea__":{"FRM_UPLOADED_PHOTO":{"value":"01\u002F06\u002F2024 04:25 PM"},"NEGOTIATED_RENT":{"value":"24998"},"MAX_NEGOTIATED_DEPOSIT":{"value":"300000"},"SECONDARY_NUMBER":{"value":"OTExMzkwMzg0Mg=="},"KEY_COLLECTION_DATE":{"value":"01\u002F06\u002F2024 06:44 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa98278f8646f0178f895115f1758\u002F8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg","showRequestPhoto":false,"lastActivationDate":1702357505000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.931366524251837000,77.592528256187300000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK3","ownerId":"ff80818159fa0f0f0159fdcf606d0bca","rent":30000,"propertySize":1300,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9ffd83891317630189170f4e292447_178_405967_original.jpg","propertyCode":"NB-1379390","id":"8a9ffd83891317630189170f4e292447","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Sb for Rent In Rajajinagar","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"Rajajinagar","active":true,"propertyScore":1720164847000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":500000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-30000\u002F8a9ffd83891317630189170f4e292447\u002Fdetail","activationDate":1717844026000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":true,\"STP\":true,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.994155045489347,"reactivationReqDate":1717843647000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy, Rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK Flat In Sb for Rent ...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"30,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718361815000,"balconies":0,"availableFrom":1717785000000,"photos":[{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_178_131500_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_178_405967_original.jpg","large":"8a9ffd83891317630189170f4e292447_178_420409_large.jpg","medium":"8a9ffd83891317630189170f4e292447_178_206161_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_78750_729704_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_78750_135595_original.jpg","large":"8a9ffd83891317630189170f4e292447_78750_706469_large.jpg","medium":"8a9ffd83891317630189170f4e292447_78750_855527_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_22442_79418_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_22442_132621_original.jpg","large":"8a9ffd83891317630189170f4e292447_22442_702329_large.jpg","medium":"8a9ffd83891317630189170f4e292447_22442_94201_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_53740_863611_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_53740_731437_original.jpg","large":"8a9ffd83891317630189170f4e292447_53740_510929_large.jpg","medium":"8a9ffd83891317630189170f4e292447_53740_644811_medium.jpg"},"disAffinity":10,"subReasons":"","subState":"","displayPic":false,"w":752,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_17078_886273_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_17078_893762_original.jpg","large":"8a9ffd83891317630189170f4e292447_17078_42737_large.jpg","medium":"8a9ffd83891317630189170f4e292447_17078_194898_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_32615_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_91787_original.jpg","large":"8a9ffd83891317630189170f4e292447_99660_large.jpg","medium":"8a9ffd83891317630189170f4e292447_59765_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_90695_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_62917_original.jpg","large":"8a9ffd83891317630189170f4e292447_13641_large.jpg","medium":"8a9ffd83891317630189170f4e292447_65876_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_38283_830972_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_38283_619882_original.jpg","large":"8a9ffd83891317630189170f4e292447_38283_660365_large.jpg","medium":"8a9ffd83891317630189170f4e292447_38283_643931_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_76651_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_74174_original.jpg","large":"8a9ffd83891317630189170f4e292447_5802_large.jpg","medium":"8a9ffd83891317630189170f4e292447_12669_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_48048_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_45528_original.jpg","large":"8a9ffd83891317630189170f4e292447_81608_large.jpg","medium":"8a9ffd83891317630189170f4e292447_52733_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_78725_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_97297_original.jpg","large":"8a9ffd83891317630189170f4e292447_84951_large.jpg","medium":"8a9ffd83891317630189170f4e292447_26713_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_82684_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_3137_original.jpg","large":"8a9ffd83891317630189170f4e292447_93272_large.jpg","medium":"8a9ffd83891317630189170f4e292447_55995_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_51525_895830_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_51525_467249_original.jpg","large":"8a9ffd83891317630189170f4e292447_51525_164638_large.jpg","medium":"8a9ffd83891317630189170f4e292447_51525_17596_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55825549775173,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fflats-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fflats-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Malleswaram 15th Cross\",\"longitude\":77.5711638,\"seoUrl\":\"\u002Fflats-for-rent-near-malleswaram_15th_cross_bangalore\",\"latitude\":13.005122199999999,\"id\":\"ChIJXY5dei4WrjsRzPUWaBpQ9xQ\"}]","indexName":"nobroker","maintenanceAmount":1,"creationDate":1688309026000,"swimmingPool":false,"activeViewCount":5,"completeStreetName":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F11VXRL5","promoted_b":false,"title":"3 BHK Flat In Sb for Rent In Rajajinagar","nbLocality":"Rajajinagar","society":"SB","ownerName":"Rajendran","street":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","propertyType":"RENT","secondaryTitle":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","aea__":{"NEGOTIATED_RENT":{"value":"30000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"5L"},"MAX._NEGOTIATED_PRICE":{"value":"100000"},"KEY_COLLECTION_DATE":{"value":"13\u002F06\u002F2024 01:34 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"},"KEY_HOLDER_PHONE":{"value":"OWNER"}},"floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9ffd83891317630189170f4e292447\u002F8a9ffd83891317630189170f4e292447_178_206161_medium.jpg","showRequestPhoto":false,"lastActivationDate":1709955363000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.994155045489347000,77.558255497751730000","maintenance":false,"sharedAccomodation":false},{"propertyAge":15,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Rajaji Nagar","negotiable":true,"type":"BHK2","ownerId":"ff80818154609f50015461e3f95b1f27","rent":20000,"propertySize":1500,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181623e39b5016241576f2b64bd_44685_736664_original.jpg","propertyCode":"NB-1102743","id":"ff808181623e39b5016241576f2b64bd","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Rajaji Nagar","powerBackup":"FULL","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"Rajaji Nagar","active":true,"waterSupply":"CORPORATION","propertyScore":1720089928000,"accurateLocation":true,"pinCode":560010,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-20000\u002Fff808181623e39b5016241576f2b64bd\u002Fdetail","futureActivationDate":"2023-09-01T00:00:00+05:30","activationDate":1717839380000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.982262637697493,"reactivationReqDate":1717839091000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, 5 Block near venkat international public school, Rajaji Nagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718535802000,"balconies":0,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_44685_574443_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_44685_736664_original.jpg","large":"ff808181623e39b5016241576f2b64bd_44685_672240_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_22371_454320_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_22371_17250_original.jpg","large":"ff808181623e39b5016241576f2b64bd_22371_852955_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_22371_474009_medium.jpg"},"disAffinity":14,"displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16203_236566_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16203_210102_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16203_377836_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16203_621126_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_81694_730785_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_81694_760757_original.jpg","large":"ff808181623e39b5016241576f2b64bd_81694_159613_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_81694_566997_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_32384_562915_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_32384_529941_original.jpg","large":"ff808181623e39b5016241576f2b64bd_32384_759020_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_32384_339692_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_42717_220094_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_42717_98677_original.jpg","large":"ff808181623e39b5016241576f2b64bd_42717_357479_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_42717_750461_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_20225_617840_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_20225_411869_original.jpg","large":"ff808181623e39b5016241576f2b64bd_20225_143577_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_20225_963813_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_97437_805761_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_97437_480528_original.jpg","large":"ff808181623e39b5016241576f2b64bd_97437_398413_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_97437_538152_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_31187_378487_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_31187_388621_original.jpg","large":"ff808181623e39b5016241576f2b64bd_31187_764833_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_31187_576307_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16204_56167_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16204_561713_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16204_878382_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16204_908345_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_25441_182082_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_25441_230243_original.jpg","large":"ff808181623e39b5016241576f2b64bd_25441_50769_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_25441_622866_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_84898_363070_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_84898_797072_original.jpg","large":"ff808181623e39b5016241576f2b64bd_84898_265868_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_84898_684222_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_9217_36494_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_9217_618450_original.jpg","large":"ff808181623e39b5016241576f2b64bd_9217_790794_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_9217_739255_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16634_654135_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16634_189142_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16634_45876_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16634_861061_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_26796_878552_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_26796_40077_original.jpg","large":"ff808181623e39b5016241576f2b64bd_26796_645721_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_26796_984641_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_61552_551001_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_61552_565202_original.jpg","large":"ff808181623e39b5016241576f2b64bd_61552_660347_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_61552_379061_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_15705_401106_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_15705_833398_original.jpg","large":"ff808181623e39b5016241576f2b64bd_15705_376361_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_15705_374232_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_55001_226897_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_55001_542768_original.jpg","large":"ff808181623e39b5016241576f2b64bd_55001_837453_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_55001_952231_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.5530679326923,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Hotel Nalapaka\",\"longitude\":77.5524068,\"seoUrl\":\"\u002Fvillas-for-rent-near-hotel_nalapaka_rajajinagar_bangalore\",\"latitude\":12.998541699999999,\"id\":\"ChIJ1SPqPPE9rjsRF7XhzH3gZ3I\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","indexName":"nobroker","creationDate":1521514671000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":" 5 Block near venkat international public school","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1TLKwT4","promoted_b":false,"title":"2 BHK House for Rent In Rajaji Nagar","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"05:30 PM Today","timeInLong":1718539200000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Rukmini","street":" 5 Block near venkat international public school","propertyType":"RENT","secondaryTitle":"Independent House, 5 Block near venkat international public school","aea__":{"FRM_UPLOADED_PHOTO":{"value":"14\u002F06\u002F2024 01:51 PM"},"NEGOTIATED_RENT":{"value":"20000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"200000"},"KEY_COLLECTION_DATE":{"value":"08\u002F06\u002F2024 04:25 PM"},"SECONDARY_NUMBER":{"value":"NjM3OTM3ODc3Mg=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181623e39b5016241576f2b64bd\u002Fff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715246318000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.982262637697493000,77.553067932692300000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Basavanagudi","negotiable":false,"type":"BHK2","ownerId":"ff8081815acbdf0c015acc01b8e910ae","rent":17000,"propertySize":800,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816b74a761016b74c3fcf016e0_60477_168129_original.jpg","propertyCode":"NB-1022335","id":"ff8081816b74a761016b74c3fcf016e0","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Basavanagudi","active":true,"waterSupply":"BOREWELL","propertyScore":1719989208000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":170000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-basavanagudi-bangalore-for-rs-17000\u002Fff8081816b74a761016b74c3fcf016e0\u002Fdetail","activationDate":1717737162000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.934575962959528,"reactivationReqDate":1716447287000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Tata Silk Farm,Near Sri Kumaran Children's Home, Basavanagudi, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Sri Lakshmi V...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"17,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718347434000,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_60477_183548_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_60477_168129_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_60477_140500_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_30547_732901_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_30547_581617_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_30547_823259_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_30547_563727_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_56270_486657_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_56270_297374_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_56270_266165_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_56270_293106_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_62271_100734_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_62271_102401_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_62271_940170_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_62271_83591_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_7863_88560_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_7863_423335_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_7863_62506_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_7863_659600_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_93527_706518_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_93527_790029_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_93527_798754_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_93527_188165_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_88071_818364_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_88071_109792_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_88071_603795_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_88071_101745_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_77924_875872_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_77924_273287_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_77924_446253_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_77924_361154_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.7 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.57386241108179,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fflats-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fflats-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Shivaji Military Hotel\",\"longitude\":77.573996,\"seoUrl\":\"\u002Fflats-for-rent-near-shivaji_military_hotel_jayanagar_bangalore\",\"latitude\":12.918046,\"id\":\"ChIJqW0KBHcVrjsR6ZxxwAWap8U\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fflats-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","indexName":"nobroker","creationDate":1561032129000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"Tata Silk Farm,Near Sri Kumaran Children's Home","totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1HZpmH5","promoted_b":false,"title":"2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"12:30 PM Tomorrow","timeInLong":1718607600000,"type":"SCHEDULE_VISIT"},"society":"Sri Lakshmi venkateshawra Bhavana","ownerName":"KC NAGARAJ","street":"Tata Silk Farm,Near Sri Kumaran Children's Home","propertyType":"RENT","secondaryTitle":"Tata Silk Farm,Near Sri Kumaran Children's Home","aea__":{"NEGOTIATED_RENT":{"value":"17000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"170000"},"KEY_COLLECTION_DATE":{"value":"07\u002F06\u002F2024 04:23 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816b74a761016b74c3fcf016e0\u002Fff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg","showRequestPhoto":true,"lastActivationDate":1716447674000,"inactiveReasonDesc":"Rented","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.934575962959528000,77.573862411081790000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718368219000,"furnishingDesc":"Semi","localityTruncated":"Basavanagudi, ","negotiable":false,"type":"BHK2","ownerId":"8a9f93438fd831a3018fd88a232f274d","rent":15000,"availableFrom":1718649000000,"photos":[],"propertySize":1000,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-02T17:00:39+05:30","transit":8.2,"id":"8a9f93438fd831a3018fd88a2338274e","lifestyle":6.3},"propertyCode":"NB-1374411","formattedDeposit":"1.5 Lacs","id":"8a9f93438fd831a3018fd88a2338274e","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Basavanagudi, ","longitude":77.57167775183916,"dateOnly":"2024-06-14T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fvillas-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Shivaji Military Hotel\",\"longitude\":77.573996,\"seoUrl\":\"\u002Fvillas-for-rent-near-shivaji_military_hotel_jayanagar_bangalore\",\"latitude\":12.918046,\"id\":\"ChIJqW0KBHcVrjsR6ZxxwAWap8U\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fvillas-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","locality":"Basavanagudi, ","active":true,"maintenanceAmount":1,"creationDate":1717324883000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","propertyScore":1719912334000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":150000,"gym":false,"listingNudge":"Owner Is Live","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-basavanagudi--bangalore-for-rs-15000\u002F8a9f93438fd831a3018fd88a2338274e\u002Fdetail","activationDate":1717325254000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1TmDNQ5","latitude":12.934807968791038,"promoted_b":false,"title":"2 BHK House for Rent In Basavanagudi, ","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"07:00 PM Tomorrow","timeInLong":1718631000000,"type":"SCHEDULE_VISIT"},"leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Bhaskar N","street":"6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","propertyType":"RENT","secondaryTitle":"Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","aea__":{"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"},"GATED_SECURITY":{"display_value":"No","value":"NO"},"NEGOTIATED_RENT":{"value":"14997"},"KEY_HANDOVER_DATE":{"value":"12\u002F06\u002F2024 06:12 PM"},"MAX_NEGOTIATED_DEPOSIT":{"value":"150000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"03\u002F06\u002F2024 03:54 PM"},"SECONDARY_NUMBER":{"value":"ODkzOTY5MTAzMQ=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"FRM"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"forLease":false,"address":"Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm , Basavanagudi, , bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"1","propertyTitleTruncated":"2 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[{"title":"1.2 km from South End Circle","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FSouth%20End%20Circle?searchParam=W3sibGF0IjoxMi45MzgzMjA4LCJsb24iOjc3LjU4MDA3NDc5OTk5OTk5LCJzaG93TWFwIjpmYWxzZSwicGxhY2VJZCI6IkNoSUpVZVozSFpRVnJqc1JZU2JUV3hjTFhaSSIsInBsYWNlTmFtZSI6IlNvdXRoIEVuZCBDaXJjbGUiLCJjaXR5IjoiYmFuZ2Fsb3JlIn1d&city=bangalore&locality=South%20End%20Circle&searchViaMetro=true"}],"formattedPrice":"15,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.934807968791038000,77.571677751839160000","maintenance":true,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":5,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":false,"type":"BHK2","ownerId":"ff80818154146b6b0154146cdbcc0017","rent":32000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816c64a007016c65497dbd4bc5_525792_659517_original.jpg","propertyCode":"NB-34664","id":"ff8081816c64a007016c65497dbd4bc5","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"POSTEDBYBROKER","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719811494000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000\u002Fff8081816c64a007016c65497dbd4bc5\u002Fdetail","activationDate":1717737894000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":true,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":true,\"HK\":true,\"PB\":true,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.938760203998262,"reactivationReqDate":1714636366000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"32,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":true,"PARK":true,"SC":true,"PB":true,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718414496000,"balconies":1,"availableFrom":1718389800000,"photos":[{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_525792_719564_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_525792_659517_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_525792_469092_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_50964_626958_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_50964_996089_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_50964_435632_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_50964_107154_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_51761_368173_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_51761_329736_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_51761_32218_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_51761_574661_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_99120_234633_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_99120_752724_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_99120_292480_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_99120_996784_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_45535_851986_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_45535_829323_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_45535_269388_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_45535_152132_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_867097_105917_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_867097_823868_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_867097_85366_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_867097_226574_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_2178_707915_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_2178_523594_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_2178_693367_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_2178_208460_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_909275_462724_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_909275_646263_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_909275_226557_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_909275_624065_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_122839_13640_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_122839_146496_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_122839_696549_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_122839_55709_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_271529_808947_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_271529_526026_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_271529_501288_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_271529_34572_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_367923_387752_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_367923_666611_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_367923_687468_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_367923_545932_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_902093_125856_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_902093_868369_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_902093_213391_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_902093_620544_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_45002_792418_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_45002_359387_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_45002_385317_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_45002_72335_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_91649_84710_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_91649_284435_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_91649_372812_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_91649_735063_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_489922_944384_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_489922_973400_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_489922_986276_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_489922_210099_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_424759_857094_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_424759_568854_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_424759_586253_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_424759_177309_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_68516_262829_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_68516_40464_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_68516_430442_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_68516_891849_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_429865_931603_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_429865_464514_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_429865_132244_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_429865_854286_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.59241960942745,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJRTHEy0sUrjsRV_BYNOUtpu4\",\"name\":\"The Forum Mall\",\"longitude\":77.61120190000003,\"seoUrl\":\"\u002Fvillas-for-rent-near-the_forum_mall_adugodi_bangalore\",\"latitude\":12.934297099999998,\"id\":\"ChIJuzGXhU0UrjsRCRsq7sQj5Xs\"},{\"localityId\":\"ChIJRTHEy0sUrjsRV_BYNOUtpu4\",\"name\":\"PVR\",\"longitude\":77.61151020000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-pvr_adugodi_bangalore\",\"latitude\":12.934505699999999,\"id\":\"ChIJO_zpj00UrjsRXS55DWfGeac\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fvillas-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","creationDate":1565067410000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","totalFloor":1,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_sms_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1Xnm3T5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"03:30 PM on 18 June!","timeInLong":1718704800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"G B Kiran BasaveGowda","street":"Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","propertyType":"RENT","secondaryTitle":"Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","aea__":{"SECONDARY_NUMBER":{"value":"NjM2MjA5MTQ5Ng=="}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816c64a007016c65497dbd4bc5\u002Fff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715506865000,"inactiveReasonDesc":"Broker","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.938760203998262000,77.592419609427450000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff808181571207d1015712fb2f6d323f","rent":35000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa982780ade6301780b161a2315e3_51287_246061_original.jpg","propertyCode":"NB-1278329","id":"8a9fa982780ade6301780b161a2315e3","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"2 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719742163000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-35000\u002F8a9fa982780ade6301780b161a2315e3\u002Fdetail","activationDate":1717493496000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.923068529820162,"reactivationReqDate":1717493136000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, 11 cross 8 main, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1717923724000,"balconies":0,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_51287_60803_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_51287_246061_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_51287_272634_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_62921_126018_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_62921_418789_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_62921_137974_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_62921_495302_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_80067_361130_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_80067_115462_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_80067_979226_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_80067_539138_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_11765_974053_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_11765_763830_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_11765_820759_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_11765_796632_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_66255_431098_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_66255_167736_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_66255_165998_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_66255_365766_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_18018_505205_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_18018_356139_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_18018_80021_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_18018_969866_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_62682_768801_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_62682_265192_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_62682_187139_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_62682_100817_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_98195_278126_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_98195_433271_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_98195_308336_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_98195_49952_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_311_113744_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_311_295608_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_311_74201_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_311_365646_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_66244_688979_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_66244_413311_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_66244_525410_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_66244_456632_medium.jpg"},"disAffinity":35,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_78961_887987_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_78961_97540_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_78961_470118_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_78961_243916_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_970585_777114_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_970585_445277_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_970585_792845_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_970585_630431_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_85191_111782_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_85191_637438_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_85191_512629_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_85191_524197_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_73889_266997_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_73889_619248_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_73889_801220_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_73889_115115_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_1162_721339_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_1162_129519_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_1162_695506_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_1162_289306_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_229145_171998_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_229145_636838_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_229145_266689_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_229145_91785_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_614254_118317_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_614254_274611_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_614254_524500_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_614254_754354_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_268190_452784_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_268190_750784_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_268190_655314_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_268190_296101_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_452441_274622_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_452441_133811_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_452441_259970_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_452441_580392_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58017867803574,"dateOnly":"2024-06-09T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fvillas-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","indexName":"nobroker","creationDate":1615093701000,"swimmingPool":false,"activeViewCount":5,"completeStreetName":"11 cross 8 main","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1QyMbS5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"06:30 PM Today","timeInLong":1718542800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Gopalan","street":"11 cross 8 main","propertyType":"RENT","secondaryTitle":"Independent House, 11 cross 8 main","aea__":{"FRM_UPLOADED_PHOTO":{"value":"07\u002F06\u002F2024 10:41 AM"},"NEGOTIATED_RENT":{"value":"35001"},"MAX_NEGOTIATED_DEPOSIT":{"value":"3.5 L"},"SECONDARY_NUMBER":{"value":"OTQ4MzAwMzI1OA=="},"KEY_COLLECTION_DATE":{"value":"04\u002F06\u002F2024 06:28 PM"},"KEY_HOLDER_NAME":{"value":"TENANTS"},"HOUSE_KEY_WITH":{"display_value":"Tenants","value":"TENANTS"},"KEY_HOLDER_PHONE":{"value":"8095904280"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa982780ade6301780b161a2315e3\u002F8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg","showRequestPhoto":false,"lastActivationDate":1699089746000,"inactiveReasonDesc":"Rented","videoUnit":[],"highLights":[{"title":"1.3 km from Jayanagar","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FJayanagar?searchParam=W3sibGF0IjoxMi45Mjk2NzQ5LCJsb24iOjc3LjU4MDE3NTMsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSjZ6U1hkcGtWcmpzUnZiMlNxa21ySEJjIiwicGxhY2VOYW1lIjoiSmF5YW5hZ2FyIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Jayanagar&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.923068529820162000,77.580178678035740000","maintenance":false,"sharedAccomodation":false},{"propertyAge":3,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Indira Nagar","negotiable":false,"type":"BHK3","ownerId":"8a9f8bfc70d82a330170d85c3cb51a55","rent":85000,"propertySize":1700,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8bfc70d82a330170d85d22f41af8_47089_81516_original.jpg","score":{"lastUpdatedDate":"2020-08-18T14:09:43+05:30","transit":7.1,"id":"8a9f8bfc70d82a330170d85d22f41af8","lifestyle":8.5},"propertyCode":"NB-1016462","id":"8a9f8bfc70d82a330170d85d22f41af8","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar","buyerProperty":false,"locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719479941000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":400000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-85000\u002F8a9f8bfc70d82a330170d85d22f41af8\u002Fdetail","activationDate":1717579141000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":true,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9736443,"reactivationReqDate":1717578691000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments, Indira Nagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"5,000","propertyTitleTruncated":"3 BHK Flat In Sivananda Chi...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"85,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":true,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":true,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1717833084000,"balconies":1,"availableFrom":1721413800000,"photos":[{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_47089_75812_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_47089_81516_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_47089_538192_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Master Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_81110_88328_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_81110_886992_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_81110_725477_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_81110_969052_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_59277_356487_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_59277_905590_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_59277_11003_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_59277_853147_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Hall","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_59933_423468_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_59933_223854_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_59933_172020_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_59933_310292_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_10103_379478_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_10103_569628_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_10103_289064_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_10103_485334_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_67917_319450_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_67917_564457_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_67917_198673_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_67917_621540_medium.jpg"},"disAffinity":8,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Puja Room","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_60898_821296_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_60898_745653_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_60898_948147_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_60898_353158_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Dining","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_30186_860018_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_30186_251322_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_30186_185899_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_30186_136348_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_62054_847887_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_62054_302164_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_62054_630906_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_62054_599771_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_65319_576282_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_65319_297120_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_65319_775717_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_65319_757570_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Dining","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_14327_661886_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_14327_838841_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_14327_886203_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_14327_755265_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Hall","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_95567_996532_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_95567_683556_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_95567_979575_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_95567_384445_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Study","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_43115_520447_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_43115_502773_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_43115_138961_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_43115_440398_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_39998_511368_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_39998_263599_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_39998_846238_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_39998_418131_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Common Bathroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_48588_692557_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_48588_806933_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_48588_206539_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_48588_382255_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"MB Bathroom","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"4 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.6353949,"dateOnly":"2024-06-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Cherry Hills\",\"longitude\":77.64173509999998,\"seoUrl\":\"\u002Fflats-for-rent-near-cherry_hills_challaghatta_bangalore\",\"latitude\":12.9501606,\"id\":\"ChIJTU2GexIUrjsRFyZ5EQhET5U\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"1 MG-Lido Mall\",\"longitude\":77.62041479999998,\"seoUrl\":\"\u002Fflats-for-rent-near-1_mg_lido_mall_ulsoor_bangalore\",\"latitude\":12.973290400000002,\"id\":\"ChIJQ_NRvx4RrjsRMM9IFxUFU5g\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Metro Station\",\"longitude\":77.62669620000001,\"seoUrl\":\"\u002Fflats-for-rent-near-lingayana_palya_metro_station_bangalore\",\"latitude\":12.9776185,\"id\":\"ChIJx5mwCJkWrjsRolYMLLCnSpM\"}]","indexName":"nobroker","maintenanceAmount":5000,"creationDate":1584177947000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indira Nagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","ownerDescription":"A relatively new property , well maintained, close to CMH road Metro station and Cauvery school. Lift available. Parking for 1 Car.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1VfrVS5","promoted_b":false,"title":"3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar","nbLocality":"Indiranagar","visits":{"isSelfBooked":false,"time":"04:00 PM Tomorrow","timeInLong":1718620200000,"type":"SCHEDULE_VISIT"},"society":"Sivananda Chidananda","ownerName":"Shivaprasad","street":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","propertyType":"RENT","secondaryTitle":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","aea__":{"SIMILAR_UNIT_AVAILABLE":{"display_value":"NO","value":"NO"},"DIRECTIONS":{"value":"In the Relaince Fresh road , closer to ESI signal."}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8bfc70d82a330170d85d22f41af8\u002F8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg","showRequestPhoto":true,"lastActivationDate":1653888301000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973644300000000000,77.635394900000000000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"rajajinagar","negotiable":true,"type":"BHK2","ownerId":"8a9fbf8282a61be40182a659a99b2865","rent":33000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f887b8e419117018e41add7ad12e8_86208_917682_original.jpg","score":{"lastUpdatedDate":"2024-05-02T17:56:22+05:30","transit":8.2,"id":"8a9f887b8e419117018e41add7ad12e8","lifestyle":6.3},"propertyCode":"NB-1375486","id":"8a9f887b8e419117018e41add7ad12e8","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In Rajajinagar","buyerProperty":false,"inactiveReason":"LETOUT","locality":"rajajinagar","active":true,"propertyScore":1719467484000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":300000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-33000\u002F8a9f887b8e419117018e41add7ad12e8\u002Fdetail","activationDate":1717503351000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.99116807144627,"reactivationReqDate":1717502850000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Standalone building, 3rd block near ESI hospital, rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"2 BHK Flat for Rent In Raj...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"33,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718101584000,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_86208_684165_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_86208_917682_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_86208_672819_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg"},"disAffinity":35,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_17110_384763_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_17110_158513_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_17110_904544_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_17110_541186_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_65555_709519_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_65555_665839_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_65555_78223_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_65555_178760_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_90114_386327_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_90114_840952_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_90114_726204_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_90114_865742_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_44201_74060_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_44201_137680_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_44201_530935_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_44201_295388_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_68434_422925_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_68434_384325_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_68434_424879_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_68434_514592_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_69926_41730_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_69926_550990_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_69926_804997_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_69926_188778_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_95458_666037_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_95458_969660_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_95458_236402_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_95458_89938_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55347377727614,"dateOnly":"2024-06-11T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fflats-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fflats-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1710498896000,"swimmingPool":false,"listingVerified":true,"activeViewCount":3,"completeStreetName":"3rd block near ESI hospital","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Rajajinagar","url":"flats-for-rent-in-rajajinagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-rajajinagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"Yeshwanthpur and Majestic railway stations are both within a 2-kilometer radius. All major malls, including Orion, Mantri, and Lulu, are within a 2.5-kilometer radius. ISKCON is situated 1.75 kilometers away. Nearby schools and colleges such as NPS, Vidya Vardhaka, Chaitanya, and Venkat International are within 1-2 kilometers. Prominent hospitals are also conveniently located within a 1.5-kilomete","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1YfP6S5","promoted_b":false,"verifiedByUser":"8a9fbf8282a61be40182a659a99b2865","title":"2 BHK Flat for Rent In Rajajinagar","nbLocality":"Rajajinagar","society":"Standalone building","ownerName":"Raghavendra Ramesh","street":"3rd block near ESI hospital","propertyType":"RENT","secondaryTitle":"Standalone building, 3rd block near ESI hospital","aea__":{"NEGOTIATED_RENT":{"value":"1000"},"UNIQUE_SELLING_POINTS":{"value":"Center of the city ,Near to 3 metro stations,Close to iskcon, all prominent malls, prominent schools"},"MAX_NEGOTIATED_DEPOSIT":{"value":"1"},"PREFERRED_MEDIUM":{"value":"call"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"ACTUAL_BUILDING_AGE":{"value":"2"},"FLAT_NUMBER":{"value":"Door 947, 1st floor, 42nd cross, 3rd block, Rajajinagar, Standalone building, 3rd block near ESI hospital, rajajinagar, bangalore, "}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f887b8e419117018e41add7ad12e8\u002F8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717230688000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.991168071446270000,77.553473777276140000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081814e4801ec014e4a3c85f71c05","rent":32000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f92848e9da02c018e9db50adb0aa6_77427_300707_original.jpg","score":{"lastUpdatedDate":"2024-04-02T13:42:52+05:30","transit":8.3,"id":"8a9f92848e9da02c018e9db50adb0aa6","lifestyle":6.3},"propertyCode":"NB-1378429","id":"8a9f92848e9da02c018e9db50adb0aa6","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Stand Alone Building for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"POSTEDBYBROKER","locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":250000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000\u002F8a9f92848e9da02c018e9db50adb0aa6\u002Fdetail","activationDate":1718532067000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.935215925860163,"reactivationReqDate":1718531637000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"3rd main, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"2,000","propertyTitleTruncated":"2 BHK Flat In Stand Alone B...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"32,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718532067000,"balconies":1,"availableFrom":1718821800000,"photos":[{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_77427_815950_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_77427_300707_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_77427_417323_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_36934_113594_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_36934_293791_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_36934_51954_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_36934_764861_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_70704_688776_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_70704_649223_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_70704_227300_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_70704_149727_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_54561_92925_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_54561_669307_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_54561_138289_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_54561_692161_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_88444_932524_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_88444_255632_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_88444_155213_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_88444_543340_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","subState":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_57277_601163_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_57277_27248_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_57277_424837_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_57277_797128_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_10994_903150_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_10994_893037_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_10994_819933_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_10994_773296_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_80806_292233_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_80806_108577_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_80806_302721_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_80806_330007_medium.jpg"},"disAffinity":45,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_56534_123034_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_56534_715157_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_56534_353675_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_56534_589275_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_36972_739966_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_36972_570184_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_36972_419879_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_36972_230632_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":750,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_95334_782119_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_95334_750442_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_95334_457469_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_95334_904432_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":346,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":750,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_11714_847708_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_11714_126697_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_11714_438860_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_11714_63373_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":346,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5769990932541,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fflats-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fflats-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","maintenanceAmount":2000,"creationDate":1712042872000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"3rd main","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1N3rCY5","promoted_b":false,"title":"2 BHK Flat In Stand Alone Building for Rent In Jayanagar","nbLocality":"Jayanagar","society":"stand Alone Building","ownerName":"Manjunath","street":"3rd main","propertyType":"RENT","secondaryTitle":"3rd main","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f92848e9da02c018e9db50adb0aa6\u002F8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717506321000,"inactiveReasonDesc":"Broker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.935215925860163000,77.576999093254100000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Indiranagar","negotiable":false,"type":"BHK1","ownerId":"ff80818159d0d3330159d9829f9a43e1","rent":33000,"propertySize":650,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f80de6f757c8b016f75e0edc61435_37620_72483_original.jpg","score":{"lastUpdatedDate":"2020-01-13T15:44:18+05:30","transit":7.9,"id":"8a9f80de6f757c8b016f75e0edc61435","lifestyle":6.4},"propertyCode":"NB-1380115","id":"8a9f80de6f757c8b016f75e0edc61435","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":200000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-33000\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fdetail","activationDate":1718522530000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":true,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.978160842721405,"reactivationReqDate":1708360410000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Stage 2 near Indiranagar Metro Station, Indiranagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"1 BHK House for Rent In In...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"33,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":true,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718535638000,"balconies":1,"availableFrom":1625077800000,"photos":[{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_37620_41496_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_37620_72483_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_37620_28223_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_37620_11841_medium.jpg"},"disAffinity":6,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Drawing","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_16203_3248_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_16203_71817_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_16203_17559_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_16203_44947_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Other","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_60610_77799_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_60610_69019_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_60610_94978_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_60610_80106_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_91098_44123_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_91098_53485_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_91098_64828_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_91098_3574_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_68817_78195_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_68817_61037_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_68817_46652_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_68817_12169_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Other","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_75595_29271_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_75595_97090_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_75595_20112_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_75595_99135_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"Bathroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_68341_88226_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_68341_59186_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_68341_61641_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_68341_29143_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Kitchen","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.63837409917355,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1578230673000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"Stage 2 near Indiranagar Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indira Nagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"1 BHK","url":"1bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"West","ownerDescription":"This is a luxury apartment for rent in privately owned building. The building is newly constructed and has a total of 6 apartments. The apartment is in a great locality with less than 5 minutes of walk to Indiranagar Metro station, all the major restaurants, grocery stores, hospitals, schools and shopping places. The apartment comes with the following amenities: 1) Car parking 2) Remote controlled Automated garage gates 3) CCTV 4) Elevator 5) UPS Power Backup for the house 6) Hafele interiors and kitchen 7) RO water purifier 8) Cauvery water supply and borewell water as backup","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1Wyg226","promoted_b":false,"title":"1 BHK House for Rent In Indiranagar","nbLocality":"Indiranagar","visits":{"isSelfBooked":false,"time":"08:00 AM Tomorrow","timeInLong":1718591400000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Tribuvan Kumar","street":"Stage 2 near Indiranagar Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Stage 2 near Indiranagar Metro Station","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"DIRECTIONS":{"value":"Landmark : Opposite to Pradhan Hive Apartments\n\n1.â â Bike Parking with automatic garage gate\n2. AC is bedroom\n3.â â RO water purifier \n4. Free High Speed Internet\n5.â Elevator"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fvideos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fthumbnail\u002F4912791186689","showRequestPhoto":false,"lastActivationDate":1622700302000,"inactiveReasonDesc":"Inc Info","videoUnit":[{"high":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","thumbnail":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fthumbnail\u002F4912791186689","original":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","low":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","id":"IKkR2T1718519039306","state":"APPROVED"}],"tenantTypeDesc":"","location":"12.978160842721405000,77.638374099173550000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff80818168702546016870b5ddd73d55","rent":25000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f918673e358dc0173e6e16d613907_20173_981508_original.jpg","score":{"lastUpdatedDate":"2021-02-19T18:29:53+05:30","transit":8.4,"id":"8a9f918673e358dc0173e6e16d613907","lifestyle":8.6},"propertyCode":"NB-1033963","id":"8a9f918673e358dc0173e6e16d613907","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719314716000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000\u002F8a9f918673e358dc0173e6e16d613907\u002Fdetail","activationDate":1718443512000,"amenities":"{\"STP\":false,\"PARK\":false,\"SERVANT\":false,\"SC\":false,\"POOL\":false,\"PB\":false,\"VP\":false,\"GYM\":false,\"INTERCOM\":false,\"CLUB\":false,\"CPA\":false,\"HK\":false,\"LIFT\":false,\"GP\":false,\"RWH\":false,\"AC\":false,\"INTERNET\":false,\"FS\":false,\"SECURITY\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9307735,"reactivationReqDate":1718432471000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, East end 'A' main road Near PRISTINE SUPERMARKET, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"25,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"RWH":false,"AC":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718450716000,"balconies":1,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_20173_442673_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_20173_981508_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_20173_53794_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_61784_615189_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_61784_404156_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_61784_384004_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_61784_980155_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_71770_191089_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_71770_862313_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_71770_592752_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_71770_163354_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_47435_64012_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_47435_188448_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_47435_704684_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_47435_35689_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_63624_353208_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_63624_512975_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_63624_929708_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_63624_773684_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_1843_678507_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_1843_924907_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_1843_587658_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_1843_997693_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_65618_421585_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_65618_522505_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_65618_916086_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_65618_306182_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_65507_385313_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_65507_115216_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_65507_611292_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_65507_864956_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_33164_339620_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_33164_624123_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_33164_162358_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_33164_181832_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_96595_543909_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_96595_910779_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_96595_992654_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_96595_679315_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_17814_708424_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_17814_882065_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_17814_746999_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_17814_474497_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_40580_848768_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_40580_94664_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_40580_292828_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_40580_358558_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_53383_431261_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_53383_374245_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_53383_269553_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_53383_851260_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5838302,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1597306400000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"East end 'A' main road Near PRISTINE SUPERMARKET","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_wa_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F17BTp16","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"06:30 PM Today","timeInLong":1718542800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"K. V. Satyesha Simha","street":"East end 'A' main road Near PRISTINE SUPERMARKET","propertyType":"RENT","secondaryTitle":"Independent House, East end 'A' main road Near PRISTINE SUPERMARKET","aea__":{"NEGOTIATED_RENT":{"value":"24000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"100000"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 05:22 PM"},"HOUSE_KEY_WITH":{"display_value":"Tenants","value":"TENANTS"},"KEY_HOLDER_NAME":{"value":"tenants"},"KEY_HOLDER_PHONE":{"value":"tenants"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f918673e358dc0173e6e16d613907\u002F8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg","showRequestPhoto":true,"lastActivationDate":1680736800000,"videoUnit":[],"tenantTypeDesc":"","location":"12.930773500000000000,77.583830200000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":3,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK3","ownerId":"ff8081814ed8e0b7014ede19dec71e8a","rent":28000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818161d167920161d18af8c51606_67_721503_original.jpg","score":{"lastUpdatedDate":"2020-05-29T14:01:00+05:30","transit":8.4,"id":"ff80818161d167920161d18af8c51606","lifestyle":7.7},"propertyCode":"NB-1113041","id":"ff80818161d167920161d18af8c51606","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719308274000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-28000\u002Fff80818161d167920161d18af8c51606\u002Fdetail","activationDate":1717493874000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.943036677461079,"reactivationReqDate":1650531350000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"28,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1717493879000,"balconies":2,"availableFrom":1717439400000,"photos":[{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_67_219529_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_67_721503_original.jpg","large":"ff80818161d167920161d18af8c51606_67_88846_large.jpg","medium":"ff80818161d167920161d18af8c51606_67_145201_medium.jpg"},"disAffinity":1013,"displayPic":true,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_57654_421003_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_57654_700582_original.jpg","large":"ff80818161d167920161d18af8c51606_57654_83013_large.jpg","medium":"ff80818161d167920161d18af8c51606_57654_321105_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_10727_519007_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_10727_811729_original.jpg","large":"ff80818161d167920161d18af8c51606_10727_946091_large.jpg","medium":"ff80818161d167920161d18af8c51606_10727_225834_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_670910_966690_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_670910_875741_original.jpg","large":"ff80818161d167920161d18af8c51606_670910_21539_large.jpg","medium":"ff80818161d167920161d18af8c51606_670910_764828_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1080,"name":"files[]","h":810,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_76033_385686_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_76033_800095_original.jpg","large":"ff80818161d167920161d18af8c51606_76033_232520_large.jpg","medium":"ff80818161d167920161d18af8c51606_76033_181230_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_36339_449282_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_36339_449271_original.jpg","large":"ff80818161d167920161d18af8c51606_36339_246906_large.jpg","medium":"ff80818161d167920161d18af8c51606_36339_514129_medium.jpg"},"disAffinity":0,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_45326_890053_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_45326_948297_original.jpg","large":"ff80818161d167920161d18af8c51606_45326_809081_large.jpg","medium":"ff80818161d167920161d18af8c51606_45326_971905_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_93686_722863_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_93686_218105_original.jpg","large":"ff80818161d167920161d18af8c51606_93686_670077_large.jpg","medium":"ff80818161d167920161d18af8c51606_93686_983570_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_244875_698232_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_244875_902493_original.jpg","large":"ff80818161d167920161d18af8c51606_244875_880637_large.jpg","medium":"ff80818161d167920161d18af8c51606_244875_371070_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_556294_596040_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_556294_607462_original.jpg","large":"ff80818161d167920161d18af8c51606_556294_118304_large.jpg","medium":"ff80818161d167920161d18af8c51606_556294_653973_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":1080,"name":"files[]","h":810,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"bangalore_urban_bangalore","lastUpdateString":"Today","longitude":77.58895463684004,"dateOnly":"2024-06-04T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fvillas-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJd0amqd0VrjsRYTI3xTjKLXo\",\"name\":\"Urvashi Theater\",\"longitude\":77.58540970000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-urvashi_theater_sudhama_nagar_bangalore\",\"latitude\":12.9560683,\"id\":\"ChIJm9vgRd0VrjsRGyKuciHCnVE\"},{\"localityId\":\"ChIJd0amqd0VrjsRYTI3xTjKLXo\",\"name\":\"MTR\",\"longitude\":77.5855377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mtr_sudhama_nagar_bangalore\",\"latitude\":12.955095199999999,\"id\":\"ChIJaaWjpN0VrjsRAsmfiafDlN4\"},{\"localityId\":\"ChIJ65Y-bcYVrjsRjDO0P4atn04\",\"name\":\"Lakkasandra\",\"longitude\":77.6006245,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakkasandra_laljinagar_bangalore\",\"latitude\":12.9434692,\"id\":\"ChIJeUgoqrMVrjsRWpqmvs1_9Ng\"}]","indexName":"nobroker","creationDate":1519639001000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Bangalore Urban","url":"flats-for-rent-in-bangalore_urban_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-bangalore_urban_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1z9JZQ5","promoted_b":false,"title":"3 BHK House for Rent In Jayanagar","nbLocality":"Bangalore Urban","society":"Independent House","ownerName":"Prasad","street":"Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","propertyType":"RENT","secondaryTitle":"Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818161d167920161d18af8c51606\u002Fff80818161d167920161d18af8c51606_67_145201_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714119457000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.943036677461079000,77.588954636840040000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","projectUrl":"-_-prjt-","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081814f5dc924014f631254321e13","rent":12000,"propertySize":550,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818164a7e35b0164a8307cdd35b1_90880_23443_original.jpg","id":"ff80818164a7e35b0164a8307cdd35b1","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719303351000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":70000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-12000\u002Fff80818164a7e35b0164a8307cdd35b1\u002Fdetail","activationDate":1718352951000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.932155451802506,"reactivationReqDate":1718350614000,"facing":"W","leaseType":"BACHELOR","premium":false,"forLease":false,"address":"Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple, Jayanagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","buildingId":"Independent House","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718489844000,"balconies":1,"availableFrom":1644949800000,"photos":[{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_90880_372243_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_90880_23443_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_90880_104841_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg"},"disAffinity":1006,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_35253_179388_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_35253_321052_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_35253_486644_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_35253_894961_medium.jpg"},"disAffinity":15,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_52711_500082_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_52711_467215_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_52711_285291_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_52711_382317_medium.jpg"},"disAffinity":11,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_94037_625457_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_94037_159274_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_94037_310426_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_94037_558577_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_52225_656491_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_52225_386622_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_52225_146900_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_52225_422419_medium.jpg"},"disAffinity":2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_64556_111528_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_64556_682049_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_64556_663688_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_64556_87891_medium.jpg"},"disAffinity":1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_20649_273762_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_20649_845367_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_20649_563645_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_20649_334403_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_15105_424086_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_15105_865634_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_15105_600852_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_15105_256244_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_7623_174174_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_7623_468312_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_7623_340389_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_7623_700014_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_47906_282491_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_47906_582445_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_47906_685098_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_47906_397211_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_28109_26361_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_28109_844405_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_28109_468987_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_28109_736493_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"70,000","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58927041625026,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1531830107000,"swimmingPool":false,"listingVerified":false,"activeViewCount":1,"completeStreetName":", KV Layout Near Sri Lakshmi Narasimha Temple","totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"RM_TENANT_LEADS_DASHBOARD","leaseTypeNew":["BACHELOR"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1FNNDZ5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","society":"Independent House","ownerName":"Raju","street":", KV Layout Near Sri Lakshmi Narasimha Temple","propertyType":"RENT","secondaryTitle":"Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818164a7e35b0164a8307cdd35b1\u002Fff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg","showRequestPhoto":true,"lastActivationDate":1655651970000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"showProject":false,"tenantTypeDesc":"","location":"12.932155451802506000,77.589270416250260000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718146080000,"furnishingDesc":"Unfurnished","localityTruncated":"Rajaji Nagar","negotiable":true,"type":"BHK1","ownerId":"8a9f98827c749a0d017c74f9d3f730ca","rent":8500,"availableFrom":1719253800000,"photos":[{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_136594_373330_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_136594_339086_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_136594_589301_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg"},"disAffinity":16,"displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_586693_725127_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_586693_499799_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_586693_166351_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_586693_561222_medium.jpg"},"disAffinity":15,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_557343_907516_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_557343_321394_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_557343_107886_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_557343_139184_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_709882_21019_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_709882_959736_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_709882_611599_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_709882_815535_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_844774_242761_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_844774_843715_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_844774_721071_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_844774_217441_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_316611_656479_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_316611_18393_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_316611_709167_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_316611_787019_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_457229_390307_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_457229_512821_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_457229_407849_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_457229_227789_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_564007_651658_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_564007_842754_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_564007_494232_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_564007_596779_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_947349_395413_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_947349_418691_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_947349_412679_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_947349_934320_medium.jpg"},"disAffinity":12,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_197435_668116_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_197435_856463_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_197435_597870_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_197435_410619_medium.jpg"},"disAffinity":-84,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_774291_362312_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_774291_757719_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_774291_551561_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_774291_964479_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f98827c749a0d017c74f9d3fd30cb_136594_339086_original.jpg","accomodationTypeDesc":"","formattedDeposit":"75,000","id":"8a9f98827c749a0d017c74f9d3fd30cb","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat In Standalone Building for Rent In Rajaji Nagar","longitude":77.55077062618604,"dateOnly":"2024-06-12T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fflats-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Big Bazaar\",\"longitude\":77.55329509999999,\"seoUrl\":\"\u002Fflats-for-rent-near-big_bazaar_rajajinagar_bangalore\",\"latitude\":13.012256599999999,\"id\":\"ChIJfc8IuJo9rjsRTCjS_q6aN4U\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"METRO\",\"longitude\":77.5547912,\"seoUrl\":\"\u002Fflats-for-rent-near-metro_rajajinagar_bangalore\",\"latitude\":13.014542800000001,\"id\":\"ChIJ_xFbInk9rjsR9Xl90hepcO4\"},{\"localityId\":\"ChIJj0N-IWQ9rjsRxDxWEhcGs9E\",\"name\":\"Govardhan Theater\",\"longitude\":77.5512595,\"seoUrl\":\"\u002Fflats-for-rent-near-govardhan_theater_yeshwanthpur_bangalore\",\"latitude\":13.021644699999998,\"id\":\"ChIJ_X1NrXo9rjsRGNfazoiJ1yE\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","indexName":"nobroker","locality":"Rajaji Nagar","active":true,"creationDate":1634050102000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","propertyScore":1719287166000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":75000,"gym":false,"reactivationSource":"owner_wa_reactivation","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-8500\u002F8a9f98827c749a0d017c74f9d3fd30cb\u002Fdetail","activationDate":1717991166000,"leaseTypeNew":["ANYONE"],"facingDesc":"","ownerDescription":"Pooja room available","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1zfsRW5","latitude":13.004193873674117,"promoted_b":false,"reactivationReqDate":1717990389000,"title":"1 BHK Flat In Standalone Building for Rent In Rajaji Nagar","nbLocality":"Rajajinagar","leaseType":"ANYONE","society":"standalone building ","premium":false,"ownerName":"Jyothi","street":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","propertyType":"RENT","secondaryTitle":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f98827c749a0d017c74f9d3fd30cb\u002F8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717990602000,"forLease":false,"address":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant, Rajaji Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"8,500","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"13.004193873674117000,77.550770626186040000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Indiranagar","negotiable":true,"type":"BHK2","ownerId":"ff80818166a173ea0166a1b4868f0dc7","rent":35000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181684feaaf0168502997e70f12_8041_186729_original.jpg","score":{"lastUpdatedDate":"2020-11-11T07:25:59+05:30","transit":-10,"id":"ff808181684feaaf0168502997e70f12","lifestyle":1.5},"id":"ff808181684feaaf0168502997e70f12","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719216994000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-35000\u002Fff808181684feaaf0168502997e70f12\u002Fdetail","activationDate":1718352994000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.976422591353478,"reactivationReqDate":1718352793000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 2nd Stage, Near Sree Cauvery School, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In In...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718437629000,"balconies":2,"availableFrom":1691173800000,"photos":[{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_8041_284495_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_8041_186729_original.jpg","large":"ff808181684feaaf0168502997e70f12_8041_104862_large.jpg","medium":"ff808181684feaaf0168502997e70f12_8041_361654_medium.jpg"},"disAffinity":15,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_45373_436704_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_45373_206082_original.jpg","large":"ff808181684feaaf0168502997e70f12_45373_617873_large.jpg","medium":"ff808181684feaaf0168502997e70f12_45373_161907_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_70997_902598_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_70997_274338_original.jpg","large":"ff808181684feaaf0168502997e70f12_70997_645713_large.jpg","medium":"ff808181684feaaf0168502997e70f12_70997_345175_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_10019_744750_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_10019_444336_original.jpg","large":"ff808181684feaaf0168502997e70f12_10019_144514_large.jpg","medium":"ff808181684feaaf0168502997e70f12_10019_759215_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.63676833068848,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1547533129000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"2nd Stage, Near Sree Cauvery School","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indiranagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"Moengage_Gen","leaseTypeNew":["ANYONE"],"facingDesc":"West","ownerDescription":"Rent and Deposit Negotiable, Regarding Maintenance tenants can discuss on property visit. The property is located on the ground floor. 24hours water supply and less traffic area.--","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1JDGKr5","promoted_b":false,"title":"2 BHK House for Rent In Indiranagar","nbLocality":"Indiranagar","society":"Independent House","ownerName":"Yuktha","street":"2nd Stage, Near Sree Cauvery School","propertyType":"RENT","secondaryTitle":"Independent House, 2nd Stage, Near Sree Cauvery School","aea__":{"DIRECTIONS":{"value":""}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181684feaaf0168502997e70f12\u002Fff808181684feaaf0168502997e70f12_8041_361654_medium.jpg","showRequestPhoto":true,"lastActivationDate":1691214224000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.976422591353478000,77.636768330688480000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"********** Nagar, Rajajinagar","negotiable":true,"type":"BHK2","ownerId":"ff8081816ade4e8c016adea8ddfb2b41","rent":40000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f85c39001d20801900201d8cc1521_91851_863274_original.jpg","score":{"lastUpdatedDate":"2024-06-10T17:45:07+05:30","transit":8.6,"id":"8a9f85c39001d20801900201d8cc1521","lifestyle":6.2},"id":"8a9f85c39001d20801900201d8cc1521","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In ********** Nagar, Rajajinagar","powerBackup":"FULL","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"********** Nagar, Rajajinagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719144671000,"accurateLocation":false,"filterPreferenceScore":0,"lift":false,"deposit":500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-**********-nagar-rajajinagar-bangalore-for-rs-40000\u002F8a9f85c39001d20801900201d8cc1521\u002Fdetail","activationDate":1718021471000,"amenities":"{\"CLUB\":false,\"LIFT\":false,\"PARK\":false,\"PB\":false,\"AC\":false,\"GP\":false,\"INTERCOM\":false,\"FS\":false,\"INTERNET\":false,\"RWH\":false,\"CPA\":false,\"SERVANT\":false,\"STP\":false,\"HK\":false,\"POOL\":false,\"SC\":false,\"GYM\":false,\"VP\":false,\"SECURITY\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":13.0063819,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, near Canara bank, ********** Nagar, Rajajinagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,000","propertyTitleTruncated":"2 BHK House for Rent In **...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"GP":false,"CLUB":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718446313000,"balconies":0,"photos":[{"h":1152,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_91851_365615_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_91851_863274_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_91851_484956_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":1536,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1152,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_14702_440938_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_14702_51967_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_14702_640218_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_14702_576520_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1536,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_71289_866735_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_71289_230697_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_71289_951108_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_71289_883923_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_71400_766942_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_71400_91570_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_71400_803914_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_71400_525841_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_56442_448206_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_56442_649120_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_56442_418336_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_56442_946259_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_57565_335691_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_57565_685059_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_57565_195193_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_57565_124726_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_77757_152153_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_77757_957785_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_77757_738869_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_77757_493415_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_11853_167899_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_11853_66692_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_11853_699260_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_11853_595660_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_11784_417512_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_11784_941123_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_11784_610563_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_11784_996334_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_68975_380197_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_68975_212446_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_68975_850364_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_68975_682862_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_68232_382445_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_68232_664888_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_68232_662693_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_68232_140745_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_21350_41194_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_21350_204960_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_21350_932495_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_21350_150852_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"availableFrom":1717957800000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.557643,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fvillas-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Big Bazaar\",\"longitude\":77.55329509999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-big_bazaar_rajajinagar_bangalore\",\"latitude\":13.012256599999999,\"id\":\"ChIJfc8IuJo9rjsRTCjS_q6aN4U\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fvillas-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"METRO\",\"longitude\":77.5547912,\"seoUrl\":\"\u002Fvillas-for-rent-near-metro_rajajinagar_bangalore\",\"latitude\":13.014542800000001,\"id\":\"ChIJ_xFbInk9rjsR9Xl90hepcO4\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Malleswaram 15th Cross\",\"longitude\":77.5711638,\"seoUrl\":\"\u002Fvillas-for-rent-near-malleswaram_15th_cross_bangalore\",\"latitude\":13.005122199999999,\"id\":\"ChIJXY5dei4WrjsRzPUWaBpQ9xQ\"}]","maintenanceAmount":1000,"creationDate":1718020594000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"near Canara bank","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"mapped":false,"totalFloor":2,"leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"Charming 2 BHK Home in **********nagar, Rajajinagar - Perfect for *********\n\nDescription: Step into comfort with this well-appointed 2 BHK home on the ****** floor. It ******** two toilets, a utility area, and a covered car park for your convenience. Enjoy the reliability of solar ***** heating and UPS backup, ensuring your home is always warm and powered. With both borewell and Kaveri *****, youâll never have to worry about your ***** ******\nLocation: Centrally located in the vibrant neighborhood of **********nagar, Rajajinagar, this home offers a blend of convenience and comfort.\nNearby Amenities: Orion Mall, Isckon, Malleshwaram Railway station, Cluny convent, close to Kuvempu metro station, and Sandalwood factory metro station.\nRent: ****** per month (non-negotiable).\nIdeal Tenant: We are looking for an open-minded small family who is ********* about ***** ***** and ******* *********** living.\n******* us to ******** a ******* and **** this your *** ********\n\n**** **** to ***** out if you have any further ********* or **** ********** ********","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F14kcbX5","promoted_b":false,"title":"2 BHK House for Rent In ********** Nagar, Rajajinagar","nbLocality":"Rajajinagar","society":"Independent House","ownerName":"Shashi Kumar","street":"near Canara bank","propertyType":"RENT","secondaryTitle":"Independent House, near Canara bank","aea__":{"GATED_SECURITY":{"display_value":"No","value":"NO"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"SECONDARY_NUMBER":{"value":"9663565947"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Behind Sandeep Jewellers"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f85c39001d20801900201d8cc1521\u002F8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg","floor":0,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"highLights":[{"title":"1.1 km from Kuvempu Road","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FKuvempu%20Road?searchParam=W3sibGF0IjoxMi45OTg1MDIzLCJsb24iOjc3LjU1Njk0NzIsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSm4zaWJ1b2c5cmpzUlBOMGhONGVMZUJBIiwicGxhY2VOYW1lIjoiS3V2ZW1wdSBSb2FkIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Kuvempu%20Road&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"13.006381900000000000,77.557643000000000000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718268945000,"furnishingDesc":"Semi","localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK2","ownerId":"ff80808146e731140146ed963bca01a9","rent":18000,"availableFrom":1718217000000,"photos":[{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_470927_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_209932_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_763032_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg"},"disAffinity":18,"displayPic":true,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_891183_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_987680_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_671635_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_872902_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_795205_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_197797_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_885995_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_350384_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_220796_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_464463_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_806397_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_552082_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_54576_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_807689_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_95976_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_807470_medium.jpg"},"disAffinity":16,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_17549_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_288188_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_171764_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_420785_medium.jpg"},"disAffinity":16,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_366388_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_295966_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_291339_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_327354_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_316152_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_984503_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_565348_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_844678_medium.jpg"},"disAffinity":-85,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_314169_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_285418_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_803140_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_594760_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_781494_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_307964_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_640044_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_938169_medium.jpg"},"disAffinity":-986,"subState":"IRIS_FAILED","displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":1100,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb1827b3a75df017b3aa5e9e510f3_940505_209932_original.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2021-08-13T08:08:52+05:30","transit":6.8,"id":"8a9fb1827b3a75df017b3aa5e9e510f3","lifestyle":6.2},"formattedDeposit":"1 Lac","id":"8a9fb1827b3a75df017b3aa5e9e510f3","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Rajajinagar","longitude":77.554078,"dateOnly":"2024-06-13T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJtzh6oQA-rjsRdEfqum77sLU\",\"name\":\"Cinepolis\",\"longitude\":77.561949,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_jagajeevanram_nagar_bangalore\",\"latitude\":12.965984599999999,\"id\":\"ChIJbcUUAAA-rjsR-wBUU2T-p8E\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","indexName":"nobroker","locality":"Rajajinagar","active":true,"creationDate":1628776557000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","propertyScore":1719132945000,"accurateLocation":true,"breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Rajajinagar","url":"flats-for-rent-in-rajajinagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-rajajinagar_bangalore"}],"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":100000,"gym":false,"reactivationSource":"Moengage_Gen","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-18000\u002F8a9fb1827b3a75df017b3aa5e9e510f3\u002Fdetail","activationDate":1718268945000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1chj5Z5","latitude":12.980148,"promoted_b":false,"reactivationReqDate":1718258030000,"title":"2 BHK House for Rent In Rajajinagar","nbLocality":"Rajajinagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Kunal Jain","street":"Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","propertyType":"RENT","secondaryTitle":"Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","aea__":{"SECONDARY_NUMBER":{"value":"NzQ4MzM1MDAzNQ=="}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb1827b3a75df017b3aa5e9e510f3\u002F8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg","showRequestPhoto":false,"lastActivationDate":1698142580000,"forLease":false,"address":"Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop, Rajajinagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.980148000000000000,77.554078000000000000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":3,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718000975000,"balconies":1,"furnishingDesc":"Semi","localityTruncated":"C E S ENGLISH NURSERY SCHOOL","negotiable":false,"type":"BHK1","ownerId":"8a9f8a1872845bd501728e6d180263c9","rent":12000,"availableFrom":1692037800000,"photos":[{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_98185_510027_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_98185_956735_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_98185_292323_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_69984_730958_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_69984_926777_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_69984_542854_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_69984_451186_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_9985_244820_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_9985_630956_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_9985_558365_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_9985_923781_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_50104_654007_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_50104_896657_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_50104_258511_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_50104_904901_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_9553_292793_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_9553_896944_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_9553_107449_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_9553_961770_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_15203_411065_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_15203_937270_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_15203_388904_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_15203_338225_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_39987_485772_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_39987_969690_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_39987_773059_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_39987_688692_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_41153_542636_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_41153_734448_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_41153_63661_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_41153_609590_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":768,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_49903_303237_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_49903_379564_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_49903_373142_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_49903_248304_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":768,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":500,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f9182812a4ffa01812a772f1e0e73_98185_956735_original.jpg","accomodationTypeDesc":"","formattedDeposit":"50,000","id":"8a9f9182812a4ffa01812a772f1e0e73","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In C E S English Nursery School","longitude":77.59264689999998,"powerBackup":"FULL","dateOnly":"2024-06-10T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fvillas-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","locality":"C E S ENGLISH NURSERY SCHOOL","active":true,"creationDate":1654274863000,"swimmingPool":false,"waterSupply":"CORPORATION","activeViewCount":4,"completeStreetName":"CES English high school","propertyScore":1719124175000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":3,"mapped":false,"lift":false,"deposit":50000,"gym":false,"reactivationSource":"owner_wa_reactivation","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-c-e-s-english-nursery-school-bangalore-for-rs-12000\u002F8a9f9182812a4ffa01812a772f1e0e73\u002Fdetail","activationDate":1718000975000,"leaseTypeNew":["ANYONE"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":true}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1RJJnM5","latitude":12.929646599999998,"promoted_b":false,"reactivationReqDate":1718000183000,"facing":"N","title":"1 BHK House for Rent In C E S English Nursery School","nbLocality":"Jayanagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Nawaz Ahmed","street":"CES English high school","propertyType":"RENT","secondaryTitle":"Independent House, CES English high school","floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f9182812a4ffa01812a772f1e0e73\u002F8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg","showRequestPhoto":false,"lastActivationDate":1690816929000,"forLease":false,"address":"Independent House, CES English high school, C E S ENGLISH NURSERY SCHOOL, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In C ...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"location":"12.929646599999998000,77.592646899999980000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","localityTruncated":"4th T Block East, Jayanagar...","negotiable":true,"type":"BHK3","ownerId":"8a9f8e038fae70a6018fae9071c11439","rent":50000,"propertySize":1640,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8b438fae9104018fae9a9d410338_4865_947778_original.jpg","score":{"lastUpdatedDate":"2024-05-25T13:21:21+05:30","transit":8.1,"id":"8a9f8b438fae9104018fae9a9d410338","lifestyle":8.5},"propertyCode":"NB-1378843","id":"8a9f8b438fae9104018fae9a9d410338","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"4th T Block East, Jayanagar 3rd Block East","active":true,"waterSupply":"CORP_BORE","propertyScore":1719118373000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":500000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-4th-t-block-east-jayanagar-3rd-block-east-bangalore-for-rs-50000\u002F8a9f8b438fae9104018fae9a9d410338\u002Fdetail","activationDate":1718011987000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.928203560708894,"reactivationReqDate":1718011510000,"facing":"SE","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India, 4th T Block East, Jayanagar 3rd Block East, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"3 BHK Flat In Ushas Apartme...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"50,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718444320000,"balconies":2,"availableFrom":1718217000000,"photos":[{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_4865_26715_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_4865_947778_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_4865_234580_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg"},"disAffinity":1019,"subReasons":"","displayPic":true,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_55705_250763_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_55705_916944_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_55705_675666_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_55705_773626_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_96661_169464_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_96661_282986_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_96661_362705_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_96661_468796_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_54202_190415_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_54202_703822_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_54202_337136_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_54202_602083_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_80183_393266_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_80183_67511_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_80183_487700_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_80183_355909_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_36799_844819_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_36799_697443_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_36799_151935_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_36799_240215_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_91689_323454_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_91689_90316_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_91689_446105_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_91689_137864_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_19651_66334_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_19651_946122_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_19651_739197_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_19651_223687_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6169_391230_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6169_476393_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6169_631498_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6169_674878_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_57065_483857_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_57065_492183_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_57065_587167_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_57065_567127_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_59446_424686_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_59446_695738_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_59446_33149_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_59446_330800_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_5441_943757_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_5441_611274_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_5441_104161_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_5441_610649_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_96898_902180_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_96898_270575_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_96898_595307_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_96898_51436_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_59922_112968_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_59922_990809_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_59922_577800_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_59922_123307_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_88014_404957_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_88014_437526_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_88014_336759_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_88014_758165_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_11022_965944_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_11022_614977_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_11022_507731_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_11022_73801_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_40356_126733_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_40356_785084_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_40356_248478_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_40356_372886_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_99804_186917_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_99804_332697_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_99804_487885_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_99804_373942_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6084_585602_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6084_755988_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6084_44397_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6084_569448_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_12672_24968_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_12672_964239_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_12672_226235_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_12672_832743_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6145_476467_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6145_933443_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6145_354392_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6145_400003_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_1922_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_92184_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_56610_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_35888_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_28977_708684_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_28977_888447_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_28977_105155_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_28977_685041_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_13275_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_48553_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_69674_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_17629_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_72670_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_5872_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_36652_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_51293_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_67868_556936_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_67868_295681_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_67868_948073_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_67868_102898_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_42279_310772_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_42279_445854_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_42279_993162_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_42279_572631_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_79860_633626_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_79860_689014_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_79860_744902_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_79860_17422_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_17908_904996_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_17908_15669_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_17908_440989_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_17908_576136_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_80673_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_12291_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_68903_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_67778_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_95924_571316_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_95924_486877_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_95924_896998_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_95924_816263_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_77789_751233_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_77789_508568_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_77789_284701_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_77789_279854_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_91080_993475_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_91080_715065_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_91080_163966_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_91080_719715_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58898805826902,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fflats-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fflats-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Ragigudda Sri Prasanna Anjaneyaswamy Temple\",\"longitude\":77.5931717,\"seoUrl\":\"\u002Fflats-for-rent-near-ragigudda_sri_prasanna_anjaneyaswamy_temple_bangalore\",\"latitude\":12.914373300000001,\"id\":\"ChIJBwLj4g4VrjsRerGf4HTVPUc\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1716621319000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Vittal Mallya Road","url":"flats-for-rent-in-vittal_mallya_road_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-vittal_mallya_road_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"South-East","ownerDescription":"An independent block on the top (4th) floor, offering a spacious 3 BHK flat. The apartment includes two bathrooms, a kitchen, a pooja room, and two balconies, with ample open space on all sides for excellent ventilation and natural light. Located in a prime area, it is very close to several schools and colleges, all within a hundred yards. Additionally, it is within walking distance of shopping complexes, major hospitals, and malls, making it a highly convenient and desirable place to live.","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1c4BXJ5","promoted_b":false,"title":"3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East","nbLocality":"Jayanagar","society":"Ushas Apartments","ownerName":"H M Alva","street":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","propertyType":"RENT","secondaryTitle":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","aea__":{"FRM_UPLOADED_PHOTO":{"value":"15\u002F06\u002F2024 02:43 PM"},"ACCURATE_LOCATION":{"display_value":"Accurate","value":"ACCURATE"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 02:44 PM"},"HOUSE_KEY_WITH":{"display_value":"Security","value":"SECURITY"}},"floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8b438fae9104018fae9a9d410338\u002F8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg","showRequestPhoto":false,"lastActivationDate":1716622203000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.928203560708894000,77.588988058269020000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718426124000,"furnishingDesc":"Semi","localityTruncated":"Siddhapura","negotiable":false,"type":"BHK1","ownerId":"ff8081815cf81994015cf897b9d3371a","rent":10000,"availableFrom":1714415400000,"photos":[{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_226313_573120_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_226313_80769_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_226313_170689_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_551010_50313_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_551010_419621_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_551010_427871_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_551010_788450_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_623166_656365_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_623166_371305_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_623166_547339_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_623166_508054_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":729,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_513678_554180_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_513678_409374_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_513678_960677_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_513678_851385_medium.jpg"},"disAffinity":30,"subReasons":"","subState":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":729,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_655993_354218_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_655993_254610_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_655993_133780_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_655993_755350_medium.jpg"},"disAffinity":-70,"subReasons":"","subState":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"propertySize":430,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f84038cbef04f018cbfa51c207e89_226313_80769_original.jpg","accomodationTypeDesc":"","formattedDeposit":"80,000","id":"8a9f84038cbef04f018cbfa51c207e89","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Siddhapura","longitude":77.58056664362354,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"},{\"id\":\"ChIJvwy9o30WrjsR_3Soez0XLL8\",\"name\":\"Mahatma Gandhi Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-mg_road_metro_station_shanthala_nagar_ashok_nagar_bangalore\",\"latitude\":12.9755162,\"longitude\":77.6066919,\"placeType\":\"metro\"},{\"id\":\"ChIJybGxEPo9rjsRvVr1TcQEmxo\",\"name\":\"Magadi Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-magadi_road_metro_station_bangalore\",\"latitude\":12.9756582,\"longitude\":77.55541149999999,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"Siddhapura","active":true,"creationDate":1704022318000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"KHB Colony near Vijaya College","propertyScore":1719117323000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":80000,"gym":false,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-siddhapura-bangalore-for-rs-10000\u002F8a9f84038cbef04f018cbfa51c207e89\u002Fdetail","reactivationSource":"TIME_OUT_WHATSAPP_RENT","activationDate":1718426123000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F13BcRn5","latitude":12.940700506897878,"promoted_b":false,"reactivationReqDate":1718425853000,"title":"1 BHK House for Rent In Siddhapura","nbLocality":"Jayanagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Vijay","street":"KHB Colony near Vijaya College","propertyType":"RENT","secondaryTitle":"Independent House, KHB Colony near Vijaya College","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f84038cbef04f018cbfa51c207e89\u002F8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714483991000,"forLease":false,"address":"Independent House, KHB Colony near Vijaya College, Siddhapura, bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Si...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"10,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.940700506897878000,77.580566643623540000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718439783000,"furnishingDesc":"Unfurnished","localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK2","ownerId":"8a9f90837ca24e70017ca2e736586b58","rent":16000,"availableFrom":1718994600000,"photos":[{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53875_835602_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53875_777895_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53875_603806_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_41882_304543_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_41882_560184_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_41882_430541_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_41882_384863_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_14641_784893_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_14641_539605_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_14641_872036_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_14641_48664_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53558_505428_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53558_720169_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53558_824047_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53558_663729_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1632,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53198_286174_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53198_194764_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53198_314110_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53198_81207_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":1224,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_85328_954000_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_85328_329666_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_85328_755029_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_85328_380217_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_7646_39945_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_7646_938082_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_7646_309715_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_7646_307725_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_11639_898413_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_11639_21502_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_11639_946120_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_11639_241147_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_84505_10831_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_84505_203132_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_84505_320524_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_84505_826381_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_71409_592195_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_71409_766623_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_71409_293456_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_71409_746414_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8483900c1eea01900c46175d110d_53875_777895_original.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-12T17:22:20+05:30","transit":8.7,"id":"8a9f8483900c1eea01900c46175d110d","lifestyle":6.2},"propertyCode":"NB-1378701","formattedDeposit":"1 Lac","id":"8a9f8483900c1eea01900c46175d110d","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Rajajinagar","longitude":77.55096405744553,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Hotel Nalapaka\",\"longitude\":77.5524068,\"seoUrl\":\"\u002Fvillas-for-rent-near-hotel_nalapaka_rajajinagar_bangalore\",\"latitude\":12.998541699999999,\"id\":\"ChIJ1SPqPPE9rjsRF7XhzH3gZ3I\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","locality":"Rajajinagar","active":true,"creationDate":1718192838000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":" near warrior bakery ","propertyScore":1719061858000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":100000,"gym":false,"listingNudge":"Owner Is Live","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-16000\u002F8a9f8483900c1eea01900c46175d110d\u002Fdetail","activationDate":1718193048000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1d46tY5","latitude":12.986281779926175,"promoted_b":false,"title":"2 BHK House for Rent In Rajajinagar","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"11:30 AM Tomorrow","timeInLong":1718604000000,"type":"SCHEDULE_VISIT"},"leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"thilaka","street":" near warrior bakery ","propertyType":"RENT","secondaryTitle":"Independent House, near warrior bakery ","aea__":{"FRM_UPLOADED_PHOTO":{"value":"15\u002F06\u002F2024 01:14 PM"},"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"},"GATED_SECURITY":{"display_value":"No","value":"NO"},"NEGOTIATED_RENT":{"value":"15998"},"MAX_NEGOTIATED_DEPOSIT":{"value":"100000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 01:15 PM"},"KEY_COLLECTION_DETAILS":{"value":"keys r with owner "},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":""},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8483900c1eea01900c46175d110d\u002F8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg","showRequestPhoto":false,"forLease":false,"address":"Independent House, near warrior bakery , Rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[{"title":"1.6 km from Balagangadharanatha Swamiji Stn., Hosahalli","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FBalagangadharanatha%20Swamiji%20Stn.,%20Hosahalli?searchParam=W3sibGF0IjoxMi45NzQyOTc1LCJsb24iOjc3LjU0NTQ0MzYsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSlQ1MGh4ZVU5cmpzUmxQeG54aExmLVZjIiwicGxhY2VOYW1lIjoiQmFsYWdhbmdhZGhhcmFuYXRoYSBTd2FtaWppIFN0bi4sIEhvc2FoYWxsaSIsImNpdHkiOiJiYW5nYWxvcmUifV0=&city=bangalore&locality=Balagangadharanatha%20Swamiji%20Stn.,%20Hosahalli&searchViaMetro=true"}],"formattedPrice":"16,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.986281779926175000,77.550964057445530000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081815b954d52015b956c7e340fa9","rent":25000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081815b954d52015b956c7e8f0faa_877031_241936_original.jpg","score":{"lastUpdatedDate":"2019-10-10T17:37:27+05:30","transit":8.6,"id":"ff8081815b954d52015b956c7e8f0faa","lifestyle":8.4},"propertyCode":"NB-1372443","id":"ff8081815b954d52015b956c7e8f0faa","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1721025387000,"accurateLocation":true,"pinCode":560011,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000\u002Fff8081815b954d52015b956c7e8f0faa\u002Fdetail","futureActivationDate":"2024-07-05T00:00:00+05:30","activationDate":1718346987000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":true,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":true,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.92881008032945,"reactivationReqDate":1716091755000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"25,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":true,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718346991000,"balconies":0,"availableFrom":1718303400000,"photos":[{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_877031_366261_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_877031_241936_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_877031_342334_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_133716_824130_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_133716_164578_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_133716_988672_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_133716_673846_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_125187_261626_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_125187_121332_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_125187_629442_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_125187_336646_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_83722_633684_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_83722_460979_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_83722_273189_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_83722_218702_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_51340_604040_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_51340_399988_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_51340_397292_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_51340_10027_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_38915_656805_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_38915_727955_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_38915_824914_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_38915_421923_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_90846_713426_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_90846_529929_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_90846_942038_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_90846_770067_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_27260_650369_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_27260_949348_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_27260_745100_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_27260_589315_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_43952_905560_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_43952_941997_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_43952_65222_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_43952_918777_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_56758_439612_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_56758_212512_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_56758_760483_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_56758_190185_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081815b954d52015b956c7e8f0faa_1826_157052_thumbnail.jpg","original":"ff8081815b954d52015b956c7e8f0faa_1826_843489_original.jpg","large":"ff8081815b954d52015b956c7e8f0faa_1826_253569_large.jpg","medium":"ff8081815b954d52015b956c7e8f0faa_1826_91516_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5858978588955,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1492860567000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"cool joint, near complex, near to 1000 circle , near to hnimas hospital","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1x9MwX5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","society":"Independent House","ownerName":"Kiran","street":"cool joint, near complex, near to 1000 circle , near to hnimas hospital","propertyType":"RENT","secondaryTitle":"Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081815b954d52015b956c7e8f0faa\u002Fff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg","showRequestPhoto":false,"lastActivationDate":1716092452000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.928810080329450000,77.585897858895500000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","projectUrl":"rajajinagar-rajajinagar_bangalore-prjt-5e973845a5a1662dac0b078d","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Lakshminarayanapuram, Rajaj...","negotiable":false,"type":"BHK2","ownerId":"8a9fc3827f4a164f017f4a8388024036","rent":20000,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f91038ffcabc0018ffcd1f6810fbb_55502_524047_original.jpg","score":{"lastUpdatedDate":"2024-06-09T21:46:41+05:30","transit":8.3,"id":"8a9f91038ffcabc0018ffcd1f6810fbb","lifestyle":8.2},"propertyCode":"NB-1377274","id":"8a9f91038ffcabc0018ffcd1f6810fbb","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","active":true,"waterSupply":"CORP_BORE","propertyScore":1720442149000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-lakshminarayanapuram-rajajinagar-bengaluru-karnataka-560010-india-bangalore-for-rs-20000\u002F8a9f91038ffcabc0018ffcd1f6810fbb\u002Fdetail","activationDate":1717936549000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.992919276883832,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"11th Main 7th Cross ; TVS Showroom , Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Rajajinagar f...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","buildingId":"5e973845a5a1662dac0b078d","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718445382000,"balconies":1,"photos":[{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_288120_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_524047_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_145995_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":true,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_799413_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_719456_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_144404_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_50362_351440_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_958955_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_233284_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_374771_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_39271_445198_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_819927_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_445266_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_990493_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_19710_656062_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_486499_thumbnail.jpg","original":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_495870_original.jpg","large":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_754078_large.jpg","medium":"8a9f91038ffcabc0018ffcd1f6810fbb_62660_35632_medium.jpg"},"disAffinity":-70,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":540,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true}],"availableFrom":1718649000000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55692828446627,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fflats-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Big Bazaar\",\"longitude\":77.5736545,\"seoUrl\":\"\u002Fflats-for-rent-near-big_bazaar_malleswaram_bangalore\",\"latitude\":12.9972035,\"id\":\"ChIJnZWqqi8WrjsRA6tWsLnBkcA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","creationDate":1717933570000,"swimmingPool":false,"activeViewCount":2,"completeStreetName":"11th Main 7th Cross ; TVS Showroom ","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"mapped":false,"totalFloor":3,"gym":false,"listingNudge":"Owner Is Live","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1mC5CW5","promoted_b":false,"title":"2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"12:30 PM Tomorrow","timeInLong":1718607600000,"type":"SCHEDULE_VISIT"},"society":"Rajajinagar","ownerName":"Padma Srinivas","street":"11th Main 7th Cross ; TVS Showroom ","propertyType":"RENT","secondaryTitle":"11th Main 7th Cross ; TVS Showroom ","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"NEGOTIATED_RENT":{"value":"20001"},"ACCURATE_LOCATION":{"display_value":"Accurate","value":"ACCURATE"},"MAX_NEGOTIATED_DEPOSIT":{"value":"150000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"09\u002F06\u002F2024 08:38 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Near Basement market"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f91038ffcabc0018ffcd1f6810fbb\u002F8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg","floor":2,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"showProject":false,"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.992919276883832000,77.556928284466270000","maintenance":false,"sharedAccomodation":false},{"propertyAge":1,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Jayanagar 4th T block","negotiable":true,"type":"BHK3","ownerId":"ff8081815e7fc06e015e80a69d327d34","rent":49500,"propertySize":2000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f94438eb382b8018eb3b811611863_76930_524969_original.jpg","propertyCode":"NB-1345744","id":"8a9f94438eb382b8018eb3b811611863","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"3 BHK House for Rent In Jayanagar 4th T Block","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"Jayanagar 4th T block","active":true,"waterSupply":"CORPORATION","propertyScore":1720245495000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":350000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jayanagar-4th-t-block-bangalore-for-rs-49500\u002F8a9f94438eb382b8018eb3b811611863\u002Fdetail","activationDate":1718344695000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9236939,"facing":"N","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Jayanagar Head Postoffice, Jayanagar 4th T block, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"49,500","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718345114000,"balconies":3,"availableFrom":1718649000000,"photos":[{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_76930_252855_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_76930_524969_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_76930_178732_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_76930_265179_medium.jpg"},"disAffinity":999,"subReasons":"","displayPic":true,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_89167_568608_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_89167_484616_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_89167_240689_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_89167_790307_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_78116_480646_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_78116_710090_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_78116_627917_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_78116_778444_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_77181_407450_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_77181_473936_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_77181_522825_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_77181_540642_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_38075_229847_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_38075_272189_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_38075_125288_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_38075_972991_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_26439_317002_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_26439_933424_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_26439_469566_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_26439_275336_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_27260_62703_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_27260_500804_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_27260_932136_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_27260_804417_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_71894_128292_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_71894_313620_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_71894_871405_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_71894_819915_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_63260_664553_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_63260_495700_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_63260_460199_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_63260_740057_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Kitchen","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_41017_745096_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_41017_647670_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_41017_193571_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_41017_406393_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_960_778463_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_960_945465_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_960_182752_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_960_455344_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_95761_766845_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_95761_362000_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_95761_611064_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_95761_724297_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":4000,"duplicate":false,"title":"Bedroom","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_30623_38407_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_30623_705939_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_30623_932430_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_30623_253872_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":4000,"duplicate":false,"title":"Kitchen","imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_918_14596_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_918_637003_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_918_356466_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_918_846660_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1800,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_90694_235743_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_90694_458766_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_90694_335453_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_90694_50611_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f94438eb382b8018eb3b811611863_83123_306736_thumbnail.jpg","original":"8a9f94438eb382b8018eb3b811611863_83123_806288_original.jpg","large":"8a9f94438eb382b8018eb3b811611863_83123_86932_large.jpg","medium":"8a9f94438eb382b8018eb3b811611863_83123_863287_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":750,"name":"multipart","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5860969,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","creationDate":1712412169000,"swimmingPool":false,"listingVerified":true,"activeViewCount":3,"completeStreetName":"Jayanagar Head Postoffice","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","leaseTypeNew":["ANYONE"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1YQbZR5","promoted_b":false,"verifiedByUser":"ff8081815e7fc06e015e80a69d327d34","title":"3 BHK House for Rent In Jayanagar 4th T Block","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"03:00 PM Tomorrow","timeInLong":1718616600000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"renuga","street":"Jayanagar Head Postoffice","propertyType":"RENT","secondaryTitle":"Independent House, Jayanagar Head Postoffice","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fvideos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002Fthumbnail\u002F42922018124446","showRequestPhoto":false,"lastActivationDate":1712412941000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[{"high":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","thumbnail":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002Fthumbnail\u002F42922018124446","original":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","low":"videos\u002Fproperty\u002F8a9f94438eb382b8018eb3b811611863\u002F42920611664699","id":"5gxI9I1716346665546","state":"APPROVED"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.923693900000000000,77.586096900000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","cupBoard":0,"localityTruncated":" Jayanagar","negotiable":true,"type":"BHK3","ownerId":"8a9fa98278f8646f0178f89511361756","rent":26000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa98278f8646f0178f895115f1758_554374_195823_original.jpg","propertyCode":"NB-1373663","id":"8a9fa98278f8646f0178f895115f1758","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar","buyerProperty":false,"locality":" Jayanagar","active":true,"propertyScore":1720177837000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":300000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in--jayanagar-bangalore-for-rs-26000\u002F8a9fa98278f8646f0178f895115f1758\u002Fdetail","activationDate":1717225450000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":true,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.931366524251837,"reactivationReqDate":1717225043000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"RBI Extension, near medicure hospital, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"3 BHK Flat In Arifa Shaukha...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"26,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":true,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718351474000,"balconies":1,"availableFrom":1718649000000,"photos":[{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_554374_688698_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_554374_195823_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_554374_321041_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg"},"disAffinity":14,"displayPic":true,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_36488_191719_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_36488_276258_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_36488_138148_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_36488_160839_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1152,"name":"image","h":576,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_808073_613792_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_808073_476818_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_808073_579352_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_808073_703924_medium.jpg"},"disAffinity":12,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_417460_59914_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_417460_885804_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_417460_31467_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_417460_708730_medium.jpg"},"disAffinity":12,"subState":"IRIS_FAILED","displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_12739_535044_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_12739_319234_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_12739_507789_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_12739_289950_medium.jpg"},"disAffinity":11,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_637290_546402_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_637290_829499_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_637290_985118_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_637290_388476_medium.jpg"},"disAffinity":11,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_13672_34865_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_13672_766675_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_13672_834282_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_13672_447488_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_601468_923034_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_601468_658909_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_601468_892552_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_601468_981339_medium.jpg"},"disAffinity":-986,"displayPic":false,"w":576,"name":"image","h":1152,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa98278f8646f0178f895115f1758_63105_971343_thumbnail.jpg","original":"8a9fa98278f8646f0178f895115f1758_63105_803152_original.jpg","large":"8a9fa98278f8646f0178f895115f1758_63105_872600_large.jpg","medium":"8a9fa98278f8646f0178f895115f1758_63105_24368_medium.jpg"},"disAffinity":-987,"displayPic":false,"w":500,"name":"image","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5925282561873,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fflats-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fflats-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fflats-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","maintenanceAmount":2500,"creationDate":1619078222000,"swimmingPool":false,"listingVerified":false,"activeViewCount":1,"completeStreetName":"RBI Extension, near medicure hospital","totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1hZ5mm6","promoted_b":false,"title":"3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"11:00 AM Tomorrow","timeInLong":1718602200000,"type":"SCHEDULE_VISIT"},"society":"Arifa Shaukhath","ownerName":"kulsum ","street":"RBI Extension, near medicure hospital","propertyType":"RENT","secondaryTitle":"RBI Extension, near medicure hospital","aea__":{"FRM_UPLOADED_PHOTO":{"value":"01\u002F06\u002F2024 04:25 PM"},"NEGOTIATED_RENT":{"value":"24998"},"MAX_NEGOTIATED_DEPOSIT":{"value":"300000"},"SECONDARY_NUMBER":{"value":"OTExMzkwMzg0Mg=="},"KEY_COLLECTION_DATE":{"value":"01\u002F06\u002F2024 06:44 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa98278f8646f0178f895115f1758\u002F8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg","showRequestPhoto":false,"lastActivationDate":1702357505000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.931366524251837000,77.592528256187300000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK3","ownerId":"ff80818159fa0f0f0159fdcf606d0bca","rent":30000,"propertySize":1300,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9ffd83891317630189170f4e292447_178_405967_original.jpg","propertyCode":"NB-1379390","id":"8a9ffd83891317630189170f4e292447","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Sb for Rent In Rajajinagar","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"Rajajinagar","active":true,"propertyScore":1720164847000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":500000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-30000\u002F8a9ffd83891317630189170f4e292447\u002Fdetail","activationDate":1717844026000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":true,\"STP\":true,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.994155045489347,"reactivationReqDate":1717843647000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy, Rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK Flat In Sb for Rent ...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"30,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718361815000,"balconies":0,"availableFrom":1717785000000,"photos":[{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_178_131500_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_178_405967_original.jpg","large":"8a9ffd83891317630189170f4e292447_178_420409_large.jpg","medium":"8a9ffd83891317630189170f4e292447_178_206161_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_78750_729704_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_78750_135595_original.jpg","large":"8a9ffd83891317630189170f4e292447_78750_706469_large.jpg","medium":"8a9ffd83891317630189170f4e292447_78750_855527_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_22442_79418_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_22442_132621_original.jpg","large":"8a9ffd83891317630189170f4e292447_22442_702329_large.jpg","medium":"8a9ffd83891317630189170f4e292447_22442_94201_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":564,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_53740_863611_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_53740_731437_original.jpg","large":"8a9ffd83891317630189170f4e292447_53740_510929_large.jpg","medium":"8a9ffd83891317630189170f4e292447_53740_644811_medium.jpg"},"disAffinity":10,"subReasons":"","subState":"","displayPic":false,"w":752,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_17078_886273_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_17078_893762_original.jpg","large":"8a9ffd83891317630189170f4e292447_17078_42737_large.jpg","medium":"8a9ffd83891317630189170f4e292447_17078_194898_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_32615_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_91787_original.jpg","large":"8a9ffd83891317630189170f4e292447_99660_large.jpg","medium":"8a9ffd83891317630189170f4e292447_59765_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_90695_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_62917_original.jpg","large":"8a9ffd83891317630189170f4e292447_13641_large.jpg","medium":"8a9ffd83891317630189170f4e292447_65876_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_38283_830972_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_38283_619882_original.jpg","large":"8a9ffd83891317630189170f4e292447_38283_660365_large.jpg","medium":"8a9ffd83891317630189170f4e292447_38283_643931_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_76651_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_74174_original.jpg","large":"8a9ffd83891317630189170f4e292447_5802_large.jpg","medium":"8a9ffd83891317630189170f4e292447_12669_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_48048_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_45528_original.jpg","large":"8a9ffd83891317630189170f4e292447_81608_large.jpg","medium":"8a9ffd83891317630189170f4e292447_52733_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_78725_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_97297_original.jpg","large":"8a9ffd83891317630189170f4e292447_84951_large.jpg","medium":"8a9ffd83891317630189170f4e292447_26713_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":564,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_82684_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_3137_original.jpg","large":"8a9ffd83891317630189170f4e292447_93272_large.jpg","medium":"8a9ffd83891317630189170f4e292447_55995_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":750,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9ffd83891317630189170f4e292447_51525_895830_thumbnail.jpg","original":"8a9ffd83891317630189170f4e292447_51525_467249_original.jpg","large":"8a9ffd83891317630189170f4e292447_51525_164638_large.jpg","medium":"8a9ffd83891317630189170f4e292447_51525_17596_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":752,"name":"files[]","h":1000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55825549775173,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fflats-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fflats-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Malleswaram 15th Cross\",\"longitude\":77.5711638,\"seoUrl\":\"\u002Fflats-for-rent-near-malleswaram_15th_cross_bangalore\",\"latitude\":13.005122199999999,\"id\":\"ChIJXY5dei4WrjsRzPUWaBpQ9xQ\"}]","indexName":"nobroker","maintenanceAmount":1,"creationDate":1688309026000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F11VXRL5","promoted_b":false,"title":"3 BHK Flat In Sb for Rent In Rajajinagar","nbLocality":"Rajajinagar","society":"SB","ownerName":"Rajendran","street":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","propertyType":"RENT","secondaryTitle":"Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy","aea__":{"NEGOTIATED_RENT":{"value":"30000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"5L"},"MAX._NEGOTIATED_PRICE":{"value":"100000"},"KEY_COLLECTION_DATE":{"value":"13\u002F06\u002F2024 01:34 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"},"KEY_HOLDER_PHONE":{"value":"OWNER"}},"floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9ffd83891317630189170f4e292447\u002F8a9ffd83891317630189170f4e292447_178_206161_medium.jpg","showRequestPhoto":false,"lastActivationDate":1709955363000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.994155045489347000,77.558255497751730000","maintenance":false,"sharedAccomodation":false},{"propertyAge":15,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Rajaji Nagar","negotiable":true,"type":"BHK2","ownerId":"ff80818154609f50015461e3f95b1f27","rent":20000,"propertySize":1500,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181623e39b5016241576f2b64bd_44685_736664_original.jpg","propertyCode":"NB-1102743","id":"ff808181623e39b5016241576f2b64bd","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Rajaji Nagar","powerBackup":"FULL","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"Rajaji Nagar","active":true,"waterSupply":"CORPORATION","propertyScore":1720089928000,"accurateLocation":true,"pinCode":560010,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-20000\u002Fff808181623e39b5016241576f2b64bd\u002Fdetail","futureActivationDate":"2023-09-01T00:00:00+05:30","activationDate":1717839380000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.982262637697493,"reactivationReqDate":1717839091000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, 5 Block near venkat international public school, Rajaji Nagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718535802000,"balconies":0,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_44685_574443_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_44685_736664_original.jpg","large":"ff808181623e39b5016241576f2b64bd_44685_672240_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_22371_454320_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_22371_17250_original.jpg","large":"ff808181623e39b5016241576f2b64bd_22371_852955_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_22371_474009_medium.jpg"},"disAffinity":14,"displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16203_236566_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16203_210102_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16203_377836_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16203_621126_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_81694_730785_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_81694_760757_original.jpg","large":"ff808181623e39b5016241576f2b64bd_81694_159613_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_81694_566997_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_32384_562915_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_32384_529941_original.jpg","large":"ff808181623e39b5016241576f2b64bd_32384_759020_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_32384_339692_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_42717_220094_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_42717_98677_original.jpg","large":"ff808181623e39b5016241576f2b64bd_42717_357479_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_42717_750461_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_20225_617840_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_20225_411869_original.jpg","large":"ff808181623e39b5016241576f2b64bd_20225_143577_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_20225_963813_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_97437_805761_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_97437_480528_original.jpg","large":"ff808181623e39b5016241576f2b64bd_97437_398413_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_97437_538152_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_31187_378487_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_31187_388621_original.jpg","large":"ff808181623e39b5016241576f2b64bd_31187_764833_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_31187_576307_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16204_56167_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16204_561713_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16204_878382_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16204_908345_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_25441_182082_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_25441_230243_original.jpg","large":"ff808181623e39b5016241576f2b64bd_25441_50769_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_25441_622866_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_84898_363070_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_84898_797072_original.jpg","large":"ff808181623e39b5016241576f2b64bd_84898_265868_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_84898_684222_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_9217_36494_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_9217_618450_original.jpg","large":"ff808181623e39b5016241576f2b64bd_9217_790794_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_9217_739255_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_16634_654135_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_16634_189142_original.jpg","large":"ff808181623e39b5016241576f2b64bd_16634_45876_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_16634_861061_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_26796_878552_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_26796_40077_original.jpg","large":"ff808181623e39b5016241576f2b64bd_26796_645721_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_26796_984641_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_61552_551001_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_61552_565202_original.jpg","large":"ff808181623e39b5016241576f2b64bd_61552_660347_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_61552_379061_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_15705_401106_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_15705_833398_original.jpg","large":"ff808181623e39b5016241576f2b64bd_15705_376361_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_15705_374232_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff808181623e39b5016241576f2b64bd_55001_226897_thumbnail.jpg","original":"ff808181623e39b5016241576f2b64bd_55001_542768_original.jpg","large":"ff808181623e39b5016241576f2b64bd_55001_837453_large.jpg","medium":"ff808181623e39b5016241576f2b64bd_55001_952231_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":2448,"name":"multipart","h":3264,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.5530679326923,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Hotel Nalapaka\",\"longitude\":77.5524068,\"seoUrl\":\"\u002Fvillas-for-rent-near-hotel_nalapaka_rajajinagar_bangalore\",\"latitude\":12.998541699999999,\"id\":\"ChIJ1SPqPPE9rjsRF7XhzH3gZ3I\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","indexName":"nobroker","creationDate":1521514671000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":" 5 Block near venkat international public school","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1TLKwT4","promoted_b":false,"title":"2 BHK House for Rent In Rajaji Nagar","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"05:30 PM Today","timeInLong":1718539200000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Rukmini","street":" 5 Block near venkat international public school","propertyType":"RENT","secondaryTitle":"Independent House, 5 Block near venkat international public school","aea__":{"FRM_UPLOADED_PHOTO":{"value":"14\u002F06\u002F2024 01:51 PM"},"NEGOTIATED_RENT":{"value":"20000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"200000"},"KEY_COLLECTION_DATE":{"value":"08\u002F06\u002F2024 04:25 PM"},"SECONDARY_NUMBER":{"value":"NjM3OTM3ODc3Mg=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181623e39b5016241576f2b64bd\u002Fff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715246318000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.982262637697493000,77.553067932692300000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Basavanagudi","negotiable":false,"type":"BHK2","ownerId":"ff8081815acbdf0c015acc01b8e910ae","rent":17000,"propertySize":800,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816b74a761016b74c3fcf016e0_60477_168129_original.jpg","propertyCode":"NB-1022335","id":"ff8081816b74a761016b74c3fcf016e0","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Basavanagudi","active":true,"waterSupply":"BOREWELL","propertyScore":1719989208000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":170000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-basavanagudi-bangalore-for-rs-17000\u002Fff8081816b74a761016b74c3fcf016e0\u002Fdetail","activationDate":1717737162000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.934575962959528,"reactivationReqDate":1716447287000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Tata Silk Farm,Near Sri Kumaran Children's Home, Basavanagudi, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Sri Lakshmi V...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"17,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718347434000,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_60477_183548_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_60477_168129_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_60477_140500_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_30547_732901_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_30547_581617_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_30547_823259_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_30547_563727_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_56270_486657_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_56270_297374_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_56270_266165_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_56270_293106_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_62271_100734_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_62271_102401_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_62271_940170_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_62271_83591_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_7863_88560_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_7863_423335_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_7863_62506_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_7863_659600_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_93527_706518_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_93527_790029_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_93527_798754_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_93527_188165_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_88071_818364_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_88071_109792_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_88071_603795_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_88071_101745_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816b74a761016b74c3fcf016e0_77924_875872_thumbnail.jpg","original":"ff8081816b74a761016b74c3fcf016e0_77924_273287_original.jpg","large":"ff8081816b74a761016b74c3fcf016e0_77924_446253_large.jpg","medium":"ff8081816b74a761016b74c3fcf016e0_77924_361154_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.7 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.57386241108179,"dateOnly":"2024-06-14T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fflats-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fflats-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Shivaji Military Hotel\",\"longitude\":77.573996,\"seoUrl\":\"\u002Fflats-for-rent-near-shivaji_military_hotel_jayanagar_bangalore\",\"latitude\":12.918046,\"id\":\"ChIJqW0KBHcVrjsR6ZxxwAWap8U\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fflats-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","indexName":"nobroker","creationDate":1561032129000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"Tata Silk Farm,Near Sri Kumaran Children's Home","totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1HZpmH5","promoted_b":false,"title":"2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"12:30 PM Tomorrow","timeInLong":1718607600000,"type":"SCHEDULE_VISIT"},"society":"Sri Lakshmi venkateshawra Bhavana","ownerName":"KC NAGARAJ","street":"Tata Silk Farm,Near Sri Kumaran Children's Home","propertyType":"RENT","secondaryTitle":"Tata Silk Farm,Near Sri Kumaran Children's Home","aea__":{"NEGOTIATED_RENT":{"value":"17000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"170000"},"KEY_COLLECTION_DATE":{"value":"07\u002F06\u002F2024 04:23 PM"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816b74a761016b74c3fcf016e0\u002Fff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg","showRequestPhoto":true,"lastActivationDate":1716447674000,"inactiveReasonDesc":"Rented","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.934575962959528000,77.573862411081790000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718368219000,"furnishingDesc":"Semi","localityTruncated":"Basavanagudi, ","negotiable":false,"type":"BHK2","ownerId":"8a9f93438fd831a3018fd88a232f274d","rent":15000,"availableFrom":1718649000000,"photos":[],"propertySize":1000,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-02T17:00:39+05:30","transit":8.2,"id":"8a9f93438fd831a3018fd88a2338274e","lifestyle":6.3},"propertyCode":"NB-1374411","formattedDeposit":"1.5 Lacs","id":"8a9f93438fd831a3018fd88a2338274e","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Basavanagudi, ","longitude":77.57167775183916,"dateOnly":"2024-06-14T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fvillas-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Shivaji Military Hotel\",\"longitude\":77.573996,\"seoUrl\":\"\u002Fvillas-for-rent-near-shivaji_military_hotel_jayanagar_bangalore\",\"latitude\":12.918046,\"id\":\"ChIJqW0KBHcVrjsR6ZxxwAWap8U\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fvillas-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","locality":"Basavanagudi, ","active":true,"maintenanceAmount":1,"creationDate":1717324883000,"swimmingPool":false,"activeViewCount":1,"completeStreetName":"6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","propertyScore":1719912334000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":150000,"gym":false,"listingNudge":"Owner Is Live","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-basavanagudi--bangalore-for-rs-15000\u002F8a9f93438fd831a3018fd88a2338274e\u002Fdetail","activationDate":1717325254000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1TmDNQ5","latitude":12.934807968791038,"promoted_b":false,"title":"2 BHK House for Rent In Basavanagudi, ","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"07:00 PM Tomorrow","timeInLong":1718631000000,"type":"SCHEDULE_VISIT"},"leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Bhaskar N","street":"6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","propertyType":"RENT","secondaryTitle":"Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm ","aea__":{"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"},"GATED_SECURITY":{"display_value":"No","value":"NO"},"NEGOTIATED_RENT":{"value":"14997"},"KEY_HANDOVER_DATE":{"value":"12\u002F06\u002F2024 06:12 PM"},"MAX_NEGOTIATED_DEPOSIT":{"value":"150000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"03\u002F06\u002F2024 03:54 PM"},"SECONDARY_NUMBER":{"value":"ODkzOTY5MTAzMQ=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"KEY_HOLDER_NAME":{"value":"FRM"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"forLease":false,"address":"Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm , Basavanagudi, , bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"1","propertyTitleTruncated":"2 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[{"title":"1.2 km from South End Circle","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FSouth%20End%20Circle?searchParam=W3sibGF0IjoxMi45MzgzMjA4LCJsb24iOjc3LjU4MDA3NDc5OTk5OTk5LCJzaG93TWFwIjpmYWxzZSwicGxhY2VJZCI6IkNoSUpVZVozSFpRVnJqc1JZU2JUV3hjTFhaSSIsInBsYWNlTmFtZSI6IlNvdXRoIEVuZCBDaXJjbGUiLCJjaXR5IjoiYmFuZ2Fsb3JlIn1d&city=bangalore&locality=South%20End%20Circle&searchViaMetro=true"}],"formattedPrice":"15,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.934807968791038000,77.571677751839160000","maintenance":true,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":5,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":false,"type":"BHK2","ownerId":"ff80818154146b6b0154146cdbcc0017","rent":32000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816c64a007016c65497dbd4bc5_525792_659517_original.jpg","propertyCode":"NB-34664","id":"ff8081816c64a007016c65497dbd4bc5","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"POSTEDBYBROKER","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719811494000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000\u002Fff8081816c64a007016c65497dbd4bc5\u002Fdetail","activationDate":1717737894000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":true,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":true,\"HK\":true,\"PB\":true,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.938760203998262,"reactivationReqDate":1714636366000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"32,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":true,"PARK":true,"SC":true,"PB":true,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718414496000,"balconies":1,"availableFrom":1718389800000,"photos":[{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_525792_719564_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_525792_659517_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_525792_469092_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_50964_626958_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_50964_996089_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_50964_435632_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_50964_107154_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_51761_368173_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_51761_329736_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_51761_32218_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_51761_574661_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_99120_234633_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_99120_752724_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_99120_292480_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_99120_996784_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_45535_851986_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_45535_829323_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_45535_269388_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_45535_152132_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":4000,"name":"multipart","h":3000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_867097_105917_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_867097_823868_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_867097_85366_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_867097_226574_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_2178_707915_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_2178_523594_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_2178_693367_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_2178_208460_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_909275_462724_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_909275_646263_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_909275_226557_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_909275_624065_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_122839_13640_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_122839_146496_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_122839_696549_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_122839_55709_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_271529_808947_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_271529_526026_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_271529_501288_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_271529_34572_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_367923_387752_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_367923_666611_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_367923_687468_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_367923_545932_medium.jpg"},"disAffinity":15,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_902093_125856_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_902093_868369_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_902093_213391_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_902093_620544_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_45002_792418_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_45002_359387_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_45002_385317_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_45002_72335_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_91649_84710_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_91649_284435_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_91649_372812_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_91649_735063_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_489922_944384_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_489922_973400_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_489922_986276_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_489922_210099_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_424759_857094_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_424759_568854_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_424759_586253_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_424759_177309_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_68516_262829_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_68516_40464_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_68516_430442_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_68516_891849_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":3000,"name":"multipart","h":4000,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c64a007016c65497dbd4bc5_429865_931603_thumbnail.jpg","original":"ff8081816c64a007016c65497dbd4bc5_429865_464514_original.jpg","large":"ff8081816c64a007016c65497dbd4bc5_429865_132244_large.jpg","medium":"ff8081816c64a007016c65497dbd4bc5_429865_854286_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.59241960942745,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJRTHEy0sUrjsRV_BYNOUtpu4\",\"name\":\"The Forum Mall\",\"longitude\":77.61120190000003,\"seoUrl\":\"\u002Fvillas-for-rent-near-the_forum_mall_adugodi_bangalore\",\"latitude\":12.934297099999998,\"id\":\"ChIJuzGXhU0UrjsRCRsq7sQj5Xs\"},{\"localityId\":\"ChIJRTHEy0sUrjsRV_BYNOUtpu4\",\"name\":\"PVR\",\"longitude\":77.61151020000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-pvr_adugodi_bangalore\",\"latitude\":12.934505699999999,\"id\":\"ChIJO_zpj00UrjsRXS55DWfGeac\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fvillas-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","creationDate":1565067410000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":"Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","totalFloor":1,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_sms_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1Xnm3T5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"03:30 PM on 18 June!","timeInLong":1718704800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"G B Kiran BasaveGowda","street":"Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","propertyType":"RENT","secondaryTitle":"Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East","aea__":{"SECONDARY_NUMBER":{"value":"NjM2MjA5MTQ5Ng=="}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816c64a007016c65497dbd4bc5\u002Fff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715506865000,"inactiveReasonDesc":"Broker","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.938760203998262000,77.592419609427450000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff808181571207d1015712fb2f6d323f","rent":35000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa982780ade6301780b161a2315e3_51287_246061_original.jpg","propertyCode":"NB-1278329","id":"8a9fa982780ade6301780b161a2315e3","state":"READY","adminEvent":"PROPERTY","bathroom":3,"propertyTitle":"2 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719742163000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-35000\u002F8a9fa982780ade6301780b161a2315e3\u002Fdetail","activationDate":1717493496000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.923068529820162,"reactivationReqDate":1717493136000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, 11 cross 8 main, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1717923724000,"balconies":0,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_51287_60803_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_51287_246061_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_51287_272634_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_62921_126018_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_62921_418789_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_62921_137974_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_62921_495302_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_80067_361130_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_80067_115462_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_80067_979226_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_80067_539138_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_11765_974053_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_11765_763830_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_11765_820759_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_11765_796632_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_66255_431098_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_66255_167736_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_66255_165998_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_66255_365766_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_18018_505205_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_18018_356139_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_18018_80021_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_18018_969866_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_62682_768801_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_62682_265192_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_62682_187139_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_62682_100817_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_98195_278126_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_98195_433271_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_98195_308336_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_98195_49952_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_311_113744_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_311_295608_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_311_74201_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_311_365646_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_66244_688979_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_66244_413311_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_66244_525410_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_66244_456632_medium.jpg"},"disAffinity":35,"subReasons":"","displayPic":false,"w":2000,"name":"multipart","h":1500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_78961_887987_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_78961_97540_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_78961_470118_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_78961_243916_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":2560,"name":"multipart","h":1184,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_970585_777114_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_970585_445277_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_970585_792845_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_970585_630431_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_85191_111782_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_85191_637438_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_85191_512629_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_85191_524197_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_73889_266997_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_73889_619248_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_73889_801220_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_73889_115115_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_1162_721339_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_1162_129519_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_1162_695506_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_1162_289306_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_229145_171998_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_229145_636838_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_229145_266689_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_229145_91785_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_614254_118317_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_614254_274611_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_614254_524500_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_614254_754354_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_268190_452784_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_268190_750784_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_268190_655314_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_268190_296101_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9fa982780ade6301780b161a2315e3_452441_274622_thumbnail.jpg","original":"8a9fa982780ade6301780b161a2315e3_452441_133811_original.jpg","large":"8a9fa982780ade6301780b161a2315e3_452441_259970_large.jpg","medium":"8a9fa982780ade6301780b161a2315e3_452441_580392_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1184,"name":"multipart","h":2560,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58017867803574,"dateOnly":"2024-06-09T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"NR Colony\",\"longitude\":77.569845,\"seoUrl\":\"\u002Fvillas-for-rent-near-nr_colony_bangalore\",\"latitude\":12.938022,\"id\":\"ChIJJfahKIwVrjsRyhxfihZLU30\"}]","indexName":"nobroker","creationDate":1615093701000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"11 cross 8 main","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1QyMbS5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"06:30 PM Today","timeInLong":1718542800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Gopalan","street":"11 cross 8 main","propertyType":"RENT","secondaryTitle":"Independent House, 11 cross 8 main","aea__":{"FRM_UPLOADED_PHOTO":{"value":"07\u002F06\u002F2024 10:41 AM"},"NEGOTIATED_RENT":{"value":"35001"},"MAX_NEGOTIATED_DEPOSIT":{"value":"3.5 L"},"SECONDARY_NUMBER":{"value":"OTQ4MzAwMzI1OA=="},"KEY_COLLECTION_DATE":{"value":"04\u002F06\u002F2024 06:28 PM"},"KEY_HOLDER_NAME":{"value":"TENANTS"},"HOUSE_KEY_WITH":{"display_value":"Tenants","value":"TENANTS"},"KEY_HOLDER_PHONE":{"value":"8095904280"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa982780ade6301780b161a2315e3\u002F8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg","showRequestPhoto":false,"lastActivationDate":1699089746000,"inactiveReasonDesc":"Rented","videoUnit":[],"highLights":[{"title":"1.3 km from Jayanagar","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FJayanagar?searchParam=W3sibGF0IjoxMi45Mjk2NzQ5LCJsb24iOjc3LjU4MDE3NTMsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSjZ6U1hkcGtWcmpzUnZiMlNxa21ySEJjIiwicGxhY2VOYW1lIjoiSmF5YW5hZ2FyIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Jayanagar&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.923068529820162000,77.580178678035740000","maintenance":false,"sharedAccomodation":false},{"propertyAge":3,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Indira Nagar","negotiable":false,"type":"BHK3","ownerId":"8a9f8bfc70d82a330170d85c3cb51a55","rent":85000,"propertySize":1700,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8bfc70d82a330170d85d22f41af8_47089_81516_original.jpg","score":{"lastUpdatedDate":"2020-08-18T14:09:43+05:30","transit":7.1,"id":"8a9f8bfc70d82a330170d85d22f41af8","lifestyle":8.5},"propertyCode":"NB-1016462","id":"8a9f8bfc70d82a330170d85d22f41af8","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar","buyerProperty":false,"locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719479941000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":400000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-85000\u002F8a9f8bfc70d82a330170d85d22f41af8\u002Fdetail","activationDate":1717579141000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":true,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9736443,"reactivationReqDate":1717578691000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments, Indira Nagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"5,000","propertyTitleTruncated":"3 BHK Flat In Sivananda Chi...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"85,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":true,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":true,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1717833084000,"balconies":1,"availableFrom":1721413800000,"photos":[{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_47089_75812_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_47089_81516_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_47089_538192_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Master Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_81110_88328_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_81110_886992_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_81110_725477_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_81110_969052_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_59277_356487_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_59277_905590_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_59277_11003_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_59277_853147_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Hall","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_59933_423468_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_59933_223854_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_59933_172020_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_59933_310292_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_10103_379478_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_10103_569628_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_10103_289064_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_10103_485334_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_67917_319450_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_67917_564457_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_67917_198673_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_67917_621540_medium.jpg"},"disAffinity":8,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Puja Room","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_60898_821296_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_60898_745653_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_60898_948147_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_60898_353158_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Dining","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_30186_860018_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_30186_251322_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_30186_185899_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_30186_136348_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_62054_847887_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_62054_302164_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_62054_630906_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_62054_599771_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_65319_576282_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_65319_297120_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_65319_775717_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_65319_757570_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Dining","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_14327_661886_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_14327_838841_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_14327_886203_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_14327_755265_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Hall","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_95567_996532_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_95567_683556_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_95567_979575_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_95567_384445_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Study","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_43115_520447_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_43115_502773_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_43115_138961_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_43115_440398_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_39998_511368_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_39998_263599_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_39998_846238_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_39998_418131_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Common Bathroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f8bfc70d82a330170d85d22f41af8_48588_692557_thumbnail.jpg","original":"8a9f8bfc70d82a330170d85d22f41af8_48588_806933_original.jpg","large":"8a9f8bfc70d82a330170d85d22f41af8_48588_206539_large.jpg","medium":"8a9f8bfc70d82a330170d85d22f41af8_48588_382255_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"MB Bathroom","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"4 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.6353949,"dateOnly":"2024-06-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Cherry Hills\",\"longitude\":77.64173509999998,\"seoUrl\":\"\u002Fflats-for-rent-near-cherry_hills_challaghatta_bangalore\",\"latitude\":12.9501606,\"id\":\"ChIJTU2GexIUrjsRFyZ5EQhET5U\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"1 MG-Lido Mall\",\"longitude\":77.62041479999998,\"seoUrl\":\"\u002Fflats-for-rent-near-1_mg_lido_mall_ulsoor_bangalore\",\"latitude\":12.973290400000002,\"id\":\"ChIJQ_NRvx4RrjsRMM9IFxUFU5g\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Metro Station\",\"longitude\":77.62669620000001,\"seoUrl\":\"\u002Fflats-for-rent-near-lingayana_palya_metro_station_bangalore\",\"latitude\":12.9776185,\"id\":\"ChIJx5mwCJkWrjsRolYMLLCnSpM\"}]","indexName":"nobroker","maintenanceAmount":5000,"creationDate":1584177947000,"swimmingPool":false,"listingVerified":false,"activeViewCount":1,"completeStreetName":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indira Nagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","ownerDescription":"A relatively new property , well maintained, close to CMH road Metro station and Cauvery school. Lift available. Parking for 1 Car.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1VfrVS5","promoted_b":false,"title":"3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar","nbLocality":"Indiranagar","visits":{"isSelfBooked":false,"time":"04:00 PM Tomorrow","timeInLong":1718620200000,"type":"SCHEDULE_VISIT"},"society":"Sivananda Chidananda","ownerName":"Shivaprasad","street":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","propertyType":"RENT","secondaryTitle":"13th Cross, 2nd Stage, opposite Fortune Pride Apartments","aea__":{"SIMILAR_UNIT_AVAILABLE":{"display_value":"NO","value":"NO"},"DIRECTIONS":{"value":"In the Relaince Fresh road , closer to ESI signal."}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8bfc70d82a330170d85d22f41af8\u002F8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg","showRequestPhoto":true,"lastActivationDate":1653888301000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973644300000000000,77.635394900000000000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"rajajinagar","negotiable":true,"type":"BHK2","ownerId":"8a9fbf8282a61be40182a659a99b2865","rent":33000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f887b8e419117018e41add7ad12e8_86208_917682_original.jpg","score":{"lastUpdatedDate":"2024-05-02T17:56:22+05:30","transit":8.2,"id":"8a9f887b8e419117018e41add7ad12e8","lifestyle":6.3},"propertyCode":"NB-1375486","id":"8a9f887b8e419117018e41add7ad12e8","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In Rajajinagar","buyerProperty":false,"inactiveReason":"LETOUT","locality":"rajajinagar","active":true,"propertyScore":1719467484000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":300000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-33000\u002F8a9f887b8e419117018e41add7ad12e8\u002Fdetail","activationDate":1717503351000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.99116807144627,"reactivationReqDate":1717502850000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Standalone building, 3rd block near ESI hospital, rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"2 BHK Flat for Rent In Raj...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"33,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718101584000,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_86208_684165_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_86208_917682_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_86208_672819_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg"},"disAffinity":35,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_17110_384763_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_17110_158513_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_17110_904544_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_17110_541186_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_65555_709519_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_65555_665839_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_65555_78223_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_65555_178760_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_90114_386327_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_90114_840952_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_90114_726204_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_90114_865742_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_44201_74060_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_44201_137680_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_44201_530935_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_44201_295388_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_68434_422925_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_68434_384325_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_68434_424879_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_68434_514592_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":422,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_69926_41730_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_69926_550990_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_69926_804997_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_69926_188778_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":900,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f887b8e419117018e41add7ad12e8_95458_666037_thumbnail.jpg","original":"8a9f887b8e419117018e41add7ad12e8_95458_969660_original.jpg","large":"8a9f887b8e419117018e41add7ad12e8_95458_236402_large.jpg","medium":"8a9f887b8e419117018e41add7ad12e8_95458_89938_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.55347377727614,"dateOnly":"2024-06-11T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"Mantri Square Mall\",\"longitude\":77.57117190000002,\"seoUrl\":\"\u002Fflats-for-rent-near-mantri_square_mall_sheshadripura_bangalore\",\"latitude\":12.9916302,\"id\":\"ChIJoRKfACMWrjsRrWqiP9PBT5Y\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fflats-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJJ7TIpz4WrjsRZNYA2yXgwVU\",\"name\":\"INOX\",\"longitude\":77.57029770000003,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_sheshadripura_bangalore\",\"latitude\":12.992130099999999,\"id\":\"ChIJEX9yASMWrjsR-xp77jHqU-0\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fflats-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1710498896000,"swimmingPool":false,"listingVerified":true,"activeViewCount":5,"completeStreetName":"3rd block near ESI hospital","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Rajajinagar","url":"flats-for-rent-in-rajajinagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-rajajinagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"Yeshwanthpur and Majestic railway stations are both within a 2-kilometer radius. All major malls, including Orion, Mantri, and Lulu, are within a 2.5-kilometer radius. ISKCON is situated 1.75 kilometers away. Nearby schools and colleges such as NPS, Vidya Vardhaka, Chaitanya, and Venkat International are within 1-2 kilometers. Prominent hospitals are also conveniently located within a 1.5-kilomete","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1YfP6S5","promoted_b":false,"verifiedByUser":"8a9fbf8282a61be40182a659a99b2865","title":"2 BHK Flat for Rent In Rajajinagar","nbLocality":"Rajajinagar","society":"Standalone building","ownerName":"Raghavendra Ramesh","street":"3rd block near ESI hospital","propertyType":"RENT","secondaryTitle":"Standalone building, 3rd block near ESI hospital","aea__":{"NEGOTIATED_RENT":{"value":"1000"},"UNIQUE_SELLING_POINTS":{"value":"Center of the city ,Near to 3 metro stations,Close to iskcon, all prominent malls, prominent schools"},"MAX_NEGOTIATED_DEPOSIT":{"value":"1"},"PREFERRED_MEDIUM":{"value":"call"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"ACTUAL_BUILDING_AGE":{"value":"2"},"FLAT_NUMBER":{"value":"Door 947, 1st floor, 42nd cross, 3rd block, Rajajinagar, Standalone building, 3rd block near ESI hospital, rajajinagar, bangalore, "}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f887b8e419117018e41add7ad12e8\u002F8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717230688000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.991168071446270000,77.553473777276140000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081814e4801ec014e4a3c85f71c05","rent":32000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f92848e9da02c018e9db50adb0aa6_77427_300707_original.jpg","score":{"lastUpdatedDate":"2024-04-02T13:42:52+05:30","transit":8.3,"id":"8a9f92848e9da02c018e9db50adb0aa6","lifestyle":6.3},"propertyCode":"NB-1378429","id":"8a9f92848e9da02c018e9db50adb0aa6","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Stand Alone Building for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"POSTEDBYBROKER","locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":250000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000\u002F8a9f92848e9da02c018e9db50adb0aa6\u002Fdetail","activationDate":1718532067000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.935215925860163,"reactivationReqDate":1718531637000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"3rd main, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"2,000","propertyTitleTruncated":"2 BHK Flat In Stand Alone B...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"32,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718532067000,"balconies":1,"availableFrom":1718821800000,"photos":[{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_77427_815950_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_77427_300707_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_77427_417323_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_36934_113594_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_36934_293791_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_36934_51954_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_36934_764861_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_70704_688776_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_70704_649223_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_70704_227300_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_70704_149727_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_54561_92925_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_54561_669307_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_54561_138289_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_54561_692161_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_88444_932524_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_88444_255632_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_88444_155213_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_88444_543340_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","subState":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_57277_601163_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_57277_27248_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_57277_424837_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_57277_797128_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_10994_903150_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_10994_893037_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_10994_819933_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_10994_773296_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_80806_292233_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_80806_108577_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_80806_302721_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_80806_330007_medium.jpg"},"disAffinity":45,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_56534_123034_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_56534_715157_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_56534_353675_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_56534_589275_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":346,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_36972_739966_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_36972_570184_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_36972_419879_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_36972_230632_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":750,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_95334_782119_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_95334_750442_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_95334_457469_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_95334_904432_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":346,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":750,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f92848e9da02c018e9db50adb0aa6_11714_847708_thumbnail.jpg","original":"8a9f92848e9da02c018e9db50adb0aa6_11714_126697_original.jpg","large":"8a9f92848e9da02c018e9db50adb0aa6_11714_438860_large.jpg","medium":"8a9f92848e9da02c018e9db50adb0aa6_11714_63373_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":346,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5769990932541,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fflats-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fflats-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","maintenanceAmount":2000,"creationDate":1712042872000,"swimmingPool":false,"activeViewCount":4,"completeStreetName":"3rd main","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1N3rCY5","promoted_b":false,"title":"2 BHK Flat In Stand Alone Building for Rent In Jayanagar","nbLocality":"Jayanagar","society":"stand Alone Building","ownerName":"Manjunath","street":"3rd main","propertyType":"RENT","secondaryTitle":"3rd main","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f92848e9da02c018e9db50adb0aa6\u002F8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717506321000,"inactiveReasonDesc":"Broker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.935215925860163000,77.576999093254100000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"Indiranagar","negotiable":false,"type":"BHK1","ownerId":"ff80818159d0d3330159d9829f9a43e1","rent":33000,"propertySize":650,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f80de6f757c8b016f75e0edc61435_37620_72483_original.jpg","score":{"lastUpdatedDate":"2020-01-13T15:44:18+05:30","transit":7.9,"id":"8a9f80de6f757c8b016f75e0edc61435","lifestyle":6.4},"propertyCode":"NB-1380115","id":"8a9f80de6f757c8b016f75e0edc61435","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":200000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-33000\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fdetail","activationDate":1718522530000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":true,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.978160842721405,"reactivationReqDate":1708360410000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Stage 2 near Indiranagar Metro Station, Indiranagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"1 BHK House for Rent In In...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"33,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":true,"FS":true,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718535638000,"balconies":1,"availableFrom":1625077800000,"photos":[{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_37620_41496_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_37620_72483_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_37620_28223_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_37620_11841_medium.jpg"},"disAffinity":6,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Drawing","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_16203_3248_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_16203_71817_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_16203_17559_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_16203_44947_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Other","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_60610_77799_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_60610_69019_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_60610_94978_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_60610_80106_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_91098_44123_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_91098_53485_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_91098_64828_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_91098_3574_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Bedroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_68817_78195_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_68817_61037_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_68817_46652_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_68817_12169_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Other","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_75595_29271_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_75595_97090_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_75595_20112_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_75595_99135_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"Bathroom","landscape":false},{"imagesMap":{"thumbnail":"8a9f80de6f757c8b016f75e0edc61435_68341_88226_thumbnail.jpg","original":"8a9f80de6f757c8b016f75e0edc61435_68341_59186_original.jpg","large":"8a9f80de6f757c8b016f75e0edc61435_68341_61641_large.jpg","medium":"8a9f80de6f757c8b016f75e0edc61435_68341_29143_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"Kitchen","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.63837409917355,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1578230673000,"swimmingPool":false,"listingVerified":false,"activeViewCount":1,"completeStreetName":"Stage 2 near Indiranagar Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indira Nagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"1 BHK","url":"1bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"West","ownerDescription":"This is a luxury apartment for rent in privately owned building. The building is newly constructed and has a total of 6 apartments. The apartment is in a great locality with less than 5 minutes of walk to Indiranagar Metro station, all the major restaurants, grocery stores, hospitals, schools and shopping places. The apartment comes with the following amenities: 1) Car parking 2) Remote controlled Automated garage gates 3) CCTV 4) Elevator 5) UPS Power Backup for the house 6) Hafele interiors and kitchen 7) RO water purifier 8) Cauvery water supply and borewell water as backup","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1Wyg226","promoted_b":false,"title":"1 BHK House for Rent In Indiranagar","nbLocality":"Indiranagar","visits":{"isSelfBooked":false,"time":"08:00 AM Tomorrow","timeInLong":1718591400000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"Tribuvan Kumar","street":"Stage 2 near Indiranagar Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Stage 2 near Indiranagar Metro Station","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"DIRECTIONS":{"value":"Landmark : Opposite to Pradhan Hive Apartments\n\n1.â â Bike Parking with automatic garage gate\n2. AC is bedroom\n3.â â RO water purifier \n4. Free High Speed Internet\n5.â Elevator"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fvideos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fthumbnail\u002F4912791186689","showRequestPhoto":false,"lastActivationDate":1622700302000,"inactiveReasonDesc":"Inc Info","videoUnit":[{"high":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","thumbnail":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002Fthumbnail\u002F4912791186689","original":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","low":"videos\u002Fproperty\u002F8a9f80de6f757c8b016f75e0edc61435\u002F4911358147934","id":"IKkR2T1718519039306","state":"APPROVED"}],"tenantTypeDesc":"","location":"12.978160842721405000,77.638374099173550000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff80818168702546016870b5ddd73d55","rent":25000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f918673e358dc0173e6e16d613907_20173_981508_original.jpg","score":{"lastUpdatedDate":"2021-02-19T18:29:53+05:30","transit":8.4,"id":"8a9f918673e358dc0173e6e16d613907","lifestyle":8.6},"propertyCode":"NB-1033963","id":"8a9f918673e358dc0173e6e16d613907","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719314716000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000\u002F8a9f918673e358dc0173e6e16d613907\u002Fdetail","activationDate":1718443512000,"amenities":"{\"STP\":false,\"PARK\":false,\"SERVANT\":false,\"SC\":false,\"POOL\":false,\"PB\":false,\"VP\":false,\"GYM\":false,\"INTERCOM\":false,\"CLUB\":false,\"CPA\":false,\"HK\":false,\"LIFT\":false,\"GP\":false,\"RWH\":false,\"AC\":false,\"INTERNET\":false,\"FS\":false,\"SECURITY\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9307735,"reactivationReqDate":1718432471000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, East end 'A' main road Near PRISTINE SUPERMARKET, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"25,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"RWH":false,"AC":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718450716000,"balconies":1,"availableFrom":1719772200000,"photos":[{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_20173_442673_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_20173_981508_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_20173_53794_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_61784_615189_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_61784_404156_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_61784_384004_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_61784_980155_medium.jpg"},"disAffinity":999,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_71770_191089_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_71770_862313_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_71770_592752_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_71770_163354_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_47435_64012_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_47435_188448_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_47435_704684_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_47435_35689_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_63624_353208_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_63624_512975_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_63624_929708_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_63624_773684_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_1843_678507_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_1843_924907_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_1843_587658_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_1843_997693_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_65618_421585_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_65618_522505_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_65618_916086_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_65618_306182_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_65507_385313_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_65507_115216_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_65507_611292_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_65507_864956_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_33164_339620_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_33164_624123_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_33164_162358_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_33164_181832_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_96595_543909_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_96595_910779_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_96595_992654_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_96595_679315_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_17814_708424_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_17814_882065_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_17814_746999_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_17814_474497_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_40580_848768_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_40580_94664_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_40580_292828_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_40580_358558_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f918673e358dc0173e6e16d613907_53383_431261_thumbnail.jpg","original":"8a9f918673e358dc0173e6e16d613907_53383_374245_original.jpg","large":"8a9f918673e358dc0173e6e16d613907_53383_269553_large.jpg","medium":"8a9f918673e358dc0173e6e16d613907_53383_851260_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.5838302,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1597306400000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"East end 'A' main road Near PRISTINE SUPERMARKET","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Jayanagar","url":"flats-for-rent-in-jayanagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-jayanagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"owner_wa_reactivation","leaseTypeNew":["FAMILY"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F17BTp16","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","visits":{"isSelfBooked":false,"time":"06:30 PM Today","timeInLong":1718542800000,"type":"SCHEDULE_VISIT"},"society":"Independent House","ownerName":"K. V. Satyesha Simha","street":"East end 'A' main road Near PRISTINE SUPERMARKET","propertyType":"RENT","secondaryTitle":"Independent House, East end 'A' main road Near PRISTINE SUPERMARKET","aea__":{"NEGOTIATED_RENT":{"value":"24000"},"MAX_NEGOTIATED_DEPOSIT":{"value":"100000"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 05:22 PM"},"HOUSE_KEY_WITH":{"display_value":"Tenants","value":"TENANTS"},"KEY_HOLDER_NAME":{"value":"tenants"},"KEY_HOLDER_PHONE":{"value":"tenants"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f918673e358dc0173e6e16d613907\u002F8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg","showRequestPhoto":true,"lastActivationDate":1680736800000,"videoUnit":[],"tenantTypeDesc":"","location":"12.930773500000000000,77.583830200000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":3,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK3","ownerId":"ff8081814ed8e0b7014ede19dec71e8a","rent":28000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818161d167920161d18af8c51606_67_721503_original.jpg","score":{"lastUpdatedDate":"2020-05-29T14:01:00+05:30","transit":8.4,"id":"ff80818161d167920161d18af8c51606","lifestyle":7.7},"propertyCode":"NB-1113041","id":"ff80818161d167920161d18af8c51606","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Jayanagar","powerBackup":"None","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jayanagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719308274000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-28000\u002Fff80818161d167920161d18af8c51606\u002Fdetail","activationDate":1717493874000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.943036677461079,"reactivationReqDate":1650531350000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura, Jayanagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"28,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1717493879000,"balconies":2,"availableFrom":1717439400000,"photos":[{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_67_219529_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_67_721503_original.jpg","large":"ff80818161d167920161d18af8c51606_67_88846_large.jpg","medium":"ff80818161d167920161d18af8c51606_67_145201_medium.jpg"},"disAffinity":1013,"displayPic":true,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_57654_421003_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_57654_700582_original.jpg","large":"ff80818161d167920161d18af8c51606_57654_83013_large.jpg","medium":"ff80818161d167920161d18af8c51606_57654_321105_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_10727_519007_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_10727_811729_original.jpg","large":"ff80818161d167920161d18af8c51606_10727_946091_large.jpg","medium":"ff80818161d167920161d18af8c51606_10727_225834_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_670910_966690_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_670910_875741_original.jpg","large":"ff80818161d167920161d18af8c51606_670910_21539_large.jpg","medium":"ff80818161d167920161d18af8c51606_670910_764828_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1080,"name":"files[]","h":810,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_76033_385686_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_76033_800095_original.jpg","large":"ff80818161d167920161d18af8c51606_76033_232520_large.jpg","medium":"ff80818161d167920161d18af8c51606_76033_181230_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_36339_449282_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_36339_449271_original.jpg","large":"ff80818161d167920161d18af8c51606_36339_246906_large.jpg","medium":"ff80818161d167920161d18af8c51606_36339_514129_medium.jpg"},"disAffinity":0,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_45326_890053_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_45326_948297_original.jpg","large":"ff80818161d167920161d18af8c51606_45326_809081_large.jpg","medium":"ff80818161d167920161d18af8c51606_45326_971905_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_93686_722863_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_93686_218105_original.jpg","large":"ff80818161d167920161d18af8c51606_93686_670077_large.jpg","medium":"ff80818161d167920161d18af8c51606_93686_983570_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_244875_698232_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_244875_902493_original.jpg","large":"ff80818161d167920161d18af8c51606_244875_880637_large.jpg","medium":"ff80818161d167920161d18af8c51606_244875_371070_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":1440,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818161d167920161d18af8c51606_556294_596040_thumbnail.jpg","original":"ff80818161d167920161d18af8c51606_556294_607462_original.jpg","large":"ff80818161d167920161d18af8c51606_556294_118304_large.jpg","medium":"ff80818161d167920161d18af8c51606_556294_653973_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":1080,"name":"files[]","h":810,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"bangalore_urban_bangalore","lastUpdateString":"Today","longitude":77.58895463684004,"dateOnly":"2024-06-04T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJqfs4p5IVrjsRx2LhtOBKArk\",\"name\":\"Vidyarthi Bhavan\",\"longitude\":77.571343,\"seoUrl\":\"\u002Fvillas-for-rent-near-vidyarthi_bhavan_basavanagudi_bangalore\",\"latitude\":12.945072,\"id\":\"ChIJNdCK6PIVrjsR3I4feeftf-0\"},{\"localityId\":\"ChIJd0amqd0VrjsRYTI3xTjKLXo\",\"name\":\"Urvashi Theater\",\"longitude\":77.58540970000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-urvashi_theater_sudhama_nagar_bangalore\",\"latitude\":12.9560683,\"id\":\"ChIJm9vgRd0VrjsRGyKuciHCnVE\"},{\"localityId\":\"ChIJd0amqd0VrjsRYTI3xTjKLXo\",\"name\":\"MTR\",\"longitude\":77.5855377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mtr_sudhama_nagar_bangalore\",\"latitude\":12.955095199999999,\"id\":\"ChIJaaWjpN0VrjsRAsmfiafDlN4\"},{\"localityId\":\"ChIJ65Y-bcYVrjsRjDO0P4atn04\",\"name\":\"Lakkasandra\",\"longitude\":77.6006245,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakkasandra_laljinagar_bangalore\",\"latitude\":12.9434692,\"id\":\"ChIJeUgoqrMVrjsRWpqmvs1_9Ng\"}]","indexName":"nobroker","creationDate":1519639001000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Bangalore Urban","url":"flats-for-rent-in-bangalore_urban_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-bangalore_urban_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1z9JZQ5","promoted_b":false,"title":"3 BHK House for Rent In Jayanagar","nbLocality":"Bangalore Urban","society":"Independent House","ownerName":"Prasad","street":"Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","propertyType":"RENT","secondaryTitle":"Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818161d167920161d18af8c51606\u002Fff80818161d167920161d18af8c51606_67_145201_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714119457000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.943036677461079000,77.588954636840040000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","projectUrl":"-_-prjt-","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Jayanagar","negotiable":true,"type":"BHK2","ownerId":"ff8081814f5dc924014f631254321e13","rent":12000,"propertySize":550,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818164a7e35b0164a8307cdd35b1_90880_23443_original.jpg","id":"ff80818164a7e35b0164a8307cdd35b1","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Jayanagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Jayanagar","active":true,"waterSupply":"CORPORATION","propertyScore":1719303351000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":70000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-12000\u002Fff80818164a7e35b0164a8307cdd35b1\u002Fdetail","activationDate":1718352951000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.932155451802506,"reactivationReqDate":1718350614000,"facing":"W","leaseType":"BACHELOR","premium":false,"forLease":false,"address":"Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple, Jayanagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ja...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","buildingId":"Independent House","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718489844000,"balconies":1,"availableFrom":1644949800000,"photos":[{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_90880_372243_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_90880_23443_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_90880_104841_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg"},"disAffinity":1006,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_35253_179388_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_35253_321052_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_35253_486644_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_35253_894961_medium.jpg"},"disAffinity":15,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_52711_500082_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_52711_467215_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_52711_285291_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_52711_382317_medium.jpg"},"disAffinity":11,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_94037_625457_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_94037_159274_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_94037_310426_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_94037_558577_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_52225_656491_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_52225_386622_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_52225_146900_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_52225_422419_medium.jpg"},"disAffinity":2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_64556_111528_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_64556_682049_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_64556_663688_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_64556_87891_medium.jpg"},"disAffinity":1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_20649_273762_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_20649_845367_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_20649_563645_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_20649_334403_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_15105_424086_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_15105_865634_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_15105_600852_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_15105_256244_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_7623_174174_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_7623_468312_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_7623_340389_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_7623_700014_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_47906_282491_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_47906_582445_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_47906_685098_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_47906_397211_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818164a7e35b0164a8307cdd35b1_28109_26361_thumbnail.jpg","original":"ff80818164a7e35b0164a8307cdd35b1_28109_844405_original.jpg","large":"ff80818164a7e35b0164a8307cdd35b1_28109_468987_large.jpg","medium":"ff80818164a7e35b0164a8307cdd35b1_28109_736493_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"70,000","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58927041625026,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJezEhr10VrjsR8Kkc4v3gXeo\",\"name\":\"Yelachenahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-yelachenahalli_subway_station_konanakunte_bangalore\",\"latitude\":12.8960529,\"longitude\":77.5701606,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"},{\"id\":\"ChIJFfoeVXcVrjsRUKMZuV47coQ\",\"name\":\"Banashankari\",\"seoUrl\":\"\u002Fvillas-for-rent-near-banashankari-banashankari-temple-ward-bangalore\",\"latitude\":12.9155385,\"longitude\":77.5736288,\"placeType\":\"metro\"},{\"id\":\"ChIJUeZ3HZQVrjsRYSbTWxcLXZI\",\"name\":\"South End Circle\",\"seoUrl\":\"\u002Fvillas-for-rent-near-south-end-circle-jayanagar-bangalore\",\"latitude\":12.9383208,\"longitude\":77.58007479999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1531830107000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":", KV Layout Near Sri Lakshmi Narasimha Temple","totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"RM_TENANT_LEADS_DASHBOARD","leaseTypeNew":["BACHELOR"],"facingDesc":"West","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1FNNDZ5","promoted_b":false,"title":"2 BHK House for Rent In Jayanagar","nbLocality":"Jayanagar","society":"Independent House","ownerName":"Raju","street":", KV Layout Near Sri Lakshmi Narasimha Temple","propertyType":"RENT","secondaryTitle":"Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818164a7e35b0164a8307cdd35b1\u002Fff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg","showRequestPhoto":true,"lastActivationDate":1655651970000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"showProject":false,"tenantTypeDesc":"","location":"12.932155451802506000,77.589270416250260000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718146080000,"furnishingDesc":"Unfurnished","localityTruncated":"Rajaji Nagar","negotiable":true,"type":"BHK1","ownerId":"8a9f98827c749a0d017c74f9d3f730ca","rent":8500,"availableFrom":1719253800000,"photos":[{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_136594_373330_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_136594_339086_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_136594_589301_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg"},"disAffinity":16,"displayPic":true,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_586693_725127_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_586693_499799_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_586693_166351_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_586693_561222_medium.jpg"},"disAffinity":15,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_557343_907516_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_557343_321394_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_557343_107886_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_557343_139184_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_709882_21019_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_709882_959736_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_709882_611599_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_709882_815535_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_844774_242761_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_844774_843715_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_844774_721071_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_844774_217441_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_316611_656479_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_316611_18393_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_316611_709167_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_316611_787019_medium.jpg"},"disAffinity":14,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_457229_390307_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_457229_512821_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_457229_407849_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_457229_227789_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_564007_651658_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_564007_842754_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_564007_494232_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_564007_596779_medium.jpg"},"disAffinity":14,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_947349_395413_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_947349_418691_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_947349_412679_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_947349_934320_medium.jpg"},"disAffinity":12,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_197435_668116_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_197435_856463_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_197435_597870_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_197435_410619_medium.jpg"},"disAffinity":-84,"displayPic":false,"w":1280,"name":"image","h":960,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f98827c749a0d017c74f9d3fd30cb_774291_362312_thumbnail.jpg","original":"8a9f98827c749a0d017c74f9d3fd30cb_774291_757719_original.jpg","large":"8a9f98827c749a0d017c74f9d3fd30cb_774291_551561_large.jpg","medium":"8a9f98827c749a0d017c74f9d3fd30cb_774291_964479_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f98827c749a0d017c74f9d3fd30cb_136594_339086_original.jpg","accomodationTypeDesc":"","formattedDeposit":"75,000","id":"8a9f98827c749a0d017c74f9d3fd30cb","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat In Standalone Building for Rent In Rajaji Nagar","longitude":77.55077062618604,"dateOnly":"2024-06-12T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fflats-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Big Bazaar\",\"longitude\":77.55329509999999,\"seoUrl\":\"\u002Fflats-for-rent-near-big_bazaar_rajajinagar_bangalore\",\"latitude\":13.012256599999999,\"id\":\"ChIJfc8IuJo9rjsRTCjS_q6aN4U\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"METRO\",\"longitude\":77.5547912,\"seoUrl\":\"\u002Fflats-for-rent-near-metro_rajajinagar_bangalore\",\"latitude\":13.014542800000001,\"id\":\"ChIJ_xFbInk9rjsR9Xl90hepcO4\"},{\"localityId\":\"ChIJj0N-IWQ9rjsRxDxWEhcGs9E\",\"name\":\"Govardhan Theater\",\"longitude\":77.5512595,\"seoUrl\":\"\u002Fflats-for-rent-near-govardhan_theater_yeshwanthpur_bangalore\",\"latitude\":13.021644699999998,\"id\":\"ChIJ_X1NrXo9rjsRGNfazoiJ1yE\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Mahalakshmi Metro Station\",\"longitude\":77.5488289,\"seoUrl\":\"\u002Fflats-for-rent-near-mahalakshmi_metro_station_bangalore\",\"latitude\":13.0081972,\"id\":\"ChIJ6czjFp09rjsRX4p6ip6inSY\"}]","indexName":"nobroker","locality":"Rajaji Nagar","active":true,"creationDate":1634050102000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","propertyScore":1719287166000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":75000,"gym":false,"reactivationSource":"owner_wa_reactivation","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-8500\u002F8a9f98827c749a0d017c74f9d3fd30cb\u002Fdetail","activationDate":1717991166000,"leaseTypeNew":["ANYONE"],"facingDesc":"","ownerDescription":"Pooja room available","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1zfsRW5","latitude":13.004193873674117,"promoted_b":false,"reactivationReqDate":1717990389000,"title":"1 BHK Flat In Standalone Building for Rent In Rajaji Nagar","nbLocality":"Rajajinagar","leaseType":"ANYONE","society":"standalone building ","premium":false,"ownerName":"Jyothi","street":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","propertyType":"RENT","secondaryTitle":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f98827c749a0d017c74f9d3fd30cb\u002F8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg","showRequestPhoto":false,"lastActivationDate":1717990602000,"forLease":false,"address":"Rajaji Nagar near New Sagar Fast Food And Family Restaurant, Rajaji Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"8,500","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"13.004193873674117000,77.550770626186040000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Indiranagar","negotiable":true,"type":"BHK2","ownerId":"ff80818166a173ea0166a1b4868f0dc7","rent":35000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181684feaaf0168502997e70f12_8041_186729_original.jpg","score":{"lastUpdatedDate":"2020-11-11T07:25:59+05:30","transit":-10,"id":"ff808181684feaaf0168502997e70f12","lifestyle":1.5},"id":"ff808181684feaaf0168502997e70f12","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719216994000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-35000\u002Fff808181684feaaf0168502997e70f12\u002Fdetail","activationDate":1718352994000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.976422591353478,"reactivationReqDate":1718352793000,"facing":"W","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 2nd Stage, Near Sree Cauvery School, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In In...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718437629000,"balconies":2,"availableFrom":1691173800000,"photos":[{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_8041_284495_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_8041_186729_original.jpg","large":"ff808181684feaaf0168502997e70f12_8041_104862_large.jpg","medium":"ff808181684feaaf0168502997e70f12_8041_361654_medium.jpg"},"disAffinity":15,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_45373_436704_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_45373_206082_original.jpg","large":"ff808181684feaaf0168502997e70f12_45373_617873_large.jpg","medium":"ff808181684feaaf0168502997e70f12_45373_161907_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_70997_902598_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_70997_274338_original.jpg","large":"ff808181684feaaf0168502997e70f12_70997_645713_large.jpg","medium":"ff808181684feaaf0168502997e70f12_70997_345175_medium.jpg"},"disAffinity":6,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181684feaaf0168502997e70f12_10019_744750_thumbnail.jpg","original":"ff808181684feaaf0168502997e70f12_10019_444336_original.jpg","large":"ff808181684feaaf0168502997e70f12_10019_144514_large.jpg","medium":"ff808181684feaaf0168502997e70f12_10019_759215_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"indira_nagar_bangalore","lastUpdateString":"Today","longitude":77.63676833068848,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1547533129000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"2nd Stage, Near Sree Cauvery School","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Indiranagar","url":"flats-for-rent-in-indira_nagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-indira_nagar_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"Moengage_Gen","leaseTypeNew":["ANYONE"],"facingDesc":"West","ownerDescription":"Rent and Deposit Negotiable, Regarding Maintenance tenants can discuss on property visit. The property is located on the ground floor. 24hours water supply and less traffic area.--","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1JDGKr5","promoted_b":false,"title":"2 BHK House for Rent In Indiranagar","nbLocality":"Indiranagar","society":"Independent House","ownerName":"Yuktha","street":"2nd Stage, Near Sree Cauvery School","propertyType":"RENT","secondaryTitle":"Independent House, 2nd Stage, Near Sree Cauvery School","aea__":{"DIRECTIONS":{"value":""}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181684feaaf0168502997e70f12\u002Fff808181684feaaf0168502997e70f12_8041_361654_medium.jpg","showRequestPhoto":true,"lastActivationDate":1691214224000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.976422591353478000,77.636768330688480000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"********** Nagar, Rajajinagar","negotiable":true,"type":"BHK2","ownerId":"ff8081816ade4e8c016adea8ddfb2b41","rent":40000,"propertySize":1100,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f85c39001d20801900201d8cc1521_91851_863274_original.jpg","score":{"lastUpdatedDate":"2024-06-10T17:45:07+05:30","transit":8.6,"id":"8a9f85c39001d20801900201d8cc1521","lifestyle":6.2},"id":"8a9f85c39001d20801900201d8cc1521","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In ********** Nagar, Rajajinagar","powerBackup":"FULL","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"********** Nagar, Rajajinagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1719144671000,"accurateLocation":false,"filterPreferenceScore":0,"lift":false,"deposit":500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-**********-nagar-rajajinagar-bangalore-for-rs-40000\u002F8a9f85c39001d20801900201d8cc1521\u002Fdetail","activationDate":1718021471000,"amenities":"{\"CLUB\":false,\"LIFT\":false,\"PARK\":false,\"PB\":false,\"AC\":false,\"GP\":false,\"INTERCOM\":false,\"FS\":false,\"INTERNET\":false,\"RWH\":false,\"CPA\":false,\"SERVANT\":false,\"STP\":false,\"HK\":false,\"POOL\":false,\"SC\":false,\"GYM\":false,\"VP\":false,\"SECURITY\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":13.0063819,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, near Canara bank, ********** Nagar, Rajajinagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,000","propertyTitleTruncated":"2 BHK House for Rent In **...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"GP":false,"CLUB":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718446313000,"balconies":0,"photos":[{"h":1152,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_91851_365615_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_91851_863274_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_91851_484956_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":1536,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1152,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_14702_440938_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_14702_51967_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_14702_640218_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_14702_576520_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1536,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_71289_866735_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_71289_230697_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_71289_951108_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_71289_883923_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_71400_766942_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_71400_91570_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_71400_803914_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_71400_525841_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_56442_448206_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_56442_649120_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_56442_418336_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_56442_946259_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_57565_335691_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_57565_685059_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_57565_195193_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_57565_124726_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_77757_152153_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_77757_957785_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_77757_738869_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_77757_493415_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_11853_167899_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_11853_66692_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_11853_699260_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_11853_595660_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_11784_417512_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_11784_941123_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_11784_610563_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_11784_996334_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_68975_380197_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_68975_212446_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_68975_850364_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_68975_682862_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_68232_382445_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_68232_664888_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_68232_662693_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_68232_140745_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1536,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f85c39001d20801900201d8cc1521_21350_41194_thumbnail.jpg","original":"8a9f85c39001d20801900201d8cc1521_21350_204960_original.jpg","large":"8a9f85c39001d20801900201d8cc1521_21350_932495_large.jpg","medium":"8a9f85c39001d20801900201d8cc1521_21350_150852_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1152,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"availableFrom":1717957800000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","longitude":77.557643,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"PVR\",\"longitude\":77.5550589,\"seoUrl\":\"\u002Fvillas-for-rent-near-pvr_rajajinagar_bangalore\",\"latitude\":13.011007699999999,\"id\":\"ChIJQZkOs3g9rjsRlhZ6dYyogHA\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Big Bazaar\",\"longitude\":77.55329509999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-big_bazaar_rajajinagar_bangalore\",\"latitude\":13.012256599999999,\"id\":\"ChIJfc8IuJo9rjsRTCjS_q6aN4U\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Hallimane Restaurant\",\"longitude\":77.5717805,\"seoUrl\":\"\u002Fvillas-for-rent-near-hallimane_restaurant_malleswaram_bangalore\",\"latitude\":12.995495300000002,\"id\":\"ChIJS4tnGCQWrjsRxjyX4YmdJyI\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"METRO\",\"longitude\":77.5547912,\"seoUrl\":\"\u002Fvillas-for-rent-near-metro_rajajinagar_bangalore\",\"latitude\":13.014542800000001,\"id\":\"ChIJ_xFbInk9rjsR9Xl90hepcO4\"},{\"localityId\":\"ChIJw895_389rjsRvqWkRnqsut8\",\"name\":\"Malleswaram 15th Cross\",\"longitude\":77.5711638,\"seoUrl\":\"\u002Fvillas-for-rent-near-malleswaram_15th_cross_bangalore\",\"latitude\":13.005122199999999,\"id\":\"ChIJXY5dei4WrjsRzPUWaBpQ9xQ\"}]","maintenanceAmount":1000,"creationDate":1718020594000,"swimmingPool":false,"activeViewCount":1,"completeStreetName":"near Canara bank","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"mapped":false,"totalFloor":2,"leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"Charming 2 BHK Home in **********nagar, Rajajinagar - Perfect for *********\n\nDescription: Step into comfort with this well-appointed 2 BHK home on the ****** floor. It ******** two toilets, a utility area, and a covered car park for your convenience. Enjoy the reliability of solar ***** heating and UPS backup, ensuring your home is always warm and powered. With both borewell and Kaveri *****, youâll never have to worry about your ***** ******\nLocation: Centrally located in the vibrant neighborhood of **********nagar, Rajajinagar, this home offers a blend of convenience and comfort.\nNearby Amenities: Orion Mall, Isckon, Malleshwaram Railway station, Cluny convent, close to Kuvempu metro station, and Sandalwood factory metro station.\nRent: ****** per month (non-negotiable).\nIdeal Tenant: We are looking for an open-minded small family who is ********* about ***** ***** and ******* *********** living.\n******* us to ******** a ******* and **** this your *** ********\n\n**** **** to ***** out if you have any further ********* or **** ********** ********","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F14kcbX5","promoted_b":false,"title":"2 BHK House for Rent In ********** Nagar, Rajajinagar","nbLocality":"Rajajinagar","society":"Independent House","ownerName":"Shashi Kumar","street":"near Canara bank","propertyType":"RENT","secondaryTitle":"Independent House, near Canara bank","aea__":{"GATED_SECURITY":{"display_value":"No","value":"NO"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"SECONDARY_NUMBER":{"value":"9663565947"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Behind Sandeep Jewellers"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f85c39001d20801900201d8cc1521\u002F8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg","floor":0,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"highLights":[{"title":"1.1 km from Kuvempu Road","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FKuvempu%20Road?searchParam=W3sibGF0IjoxMi45OTg1MDIzLCJsb24iOjc3LjU1Njk0NzIsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSm4zaWJ1b2c5cmpzUlBOMGhONGVMZUJBIiwicGxhY2VOYW1lIjoiS3V2ZW1wdSBSb2FkIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Kuvempu%20Road&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"13.006381900000000000,77.557643000000000000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718268945000,"furnishingDesc":"Semi","localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK2","ownerId":"ff80808146e731140146ed963bca01a9","rent":18000,"availableFrom":1718217000000,"photos":[{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_470927_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_209932_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_763032_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg"},"disAffinity":18,"displayPic":true,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_891183_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_987680_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_671635_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_614027_872902_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_795205_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_197797_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_885995_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_815419_350384_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_220796_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_464463_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_806397_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_792184_552082_medium.jpg"},"disAffinity":17,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_54576_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_807689_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_95976_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_402468_807470_medium.jpg"},"disAffinity":16,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_17549_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_288188_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_171764_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_942138_420785_medium.jpg"},"disAffinity":16,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_366388_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_295966_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_291339_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_460904_327354_medium.jpg"},"disAffinity":15,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_316152_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_984503_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_565348_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_338884_844678_medium.jpg"},"disAffinity":-85,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_314169_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_285418_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_803140_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_788540_594760_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_781494_thumbnail.jpg","original":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_307964_original.jpg","large":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_640044_large.jpg","medium":"8a9fb1827b3a75df017b3aa5e9e510f3_213336_938169_medium.jpg"},"disAffinity":-986,"subState":"IRIS_FAILED","displayPic":false,"w":1600,"name":"image","h":1200,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":1100,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb1827b3a75df017b3aa5e9e510f3_940505_209932_original.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2021-08-13T08:08:52+05:30","transit":6.8,"id":"8a9fb1827b3a75df017b3aa5e9e510f3","lifestyle":6.2},"formattedDeposit":"1 Lac","id":"8a9fb1827b3a75df017b3aa5e9e510f3","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Rajajinagar","longitude":77.554078,"dateOnly":"2024-06-13T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJtzh6oQA-rjsRdEfqum77sLU\",\"name\":\"Cinepolis\",\"longitude\":77.561949,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_jagajeevanram_nagar_bangalore\",\"latitude\":12.965984599999999,\"id\":\"ChIJbcUUAAA-rjsR-wBUU2T-p8E\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","indexName":"nobroker","locality":"Rajajinagar","active":true,"creationDate":1628776557000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","propertyScore":1719132945000,"accurateLocation":true,"breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Rajajinagar","url":"flats-for-rent-in-rajajinagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-rajajinagar_bangalore"}],"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":100000,"gym":false,"reactivationSource":"Moengage_Gen","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-18000\u002F8a9fb1827b3a75df017b3aa5e9e510f3\u002Fdetail","activationDate":1718268945000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1chj5Z5","latitude":12.980148,"promoted_b":false,"reactivationReqDate":1718258030000,"title":"2 BHK House for Rent In Rajajinagar","nbLocality":"Rajajinagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Kunal Jain","street":"Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","propertyType":"RENT","secondaryTitle":"Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop","aea__":{"SECONDARY_NUMBER":{"value":"NzQ4MzM1MDAzNQ=="}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb1827b3a75df017b3aa5e9e510f3\u002F8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg","showRequestPhoto":false,"lastActivationDate":1698142580000,"forLease":false,"address":"Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop, Rajajinagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.980148000000000000,77.554078000000000000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":3,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718000975000,"balconies":1,"furnishingDesc":"Semi","localityTruncated":"C E S ENGLISH NURSERY SCHOOL","negotiable":false,"type":"BHK1","ownerId":"8a9f8a1872845bd501728e6d180263c9","rent":12000,"availableFrom":1692037800000,"photos":[{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_98185_510027_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_98185_956735_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_98185_292323_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_69984_730958_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_69984_926777_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_69984_542854_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_69984_451186_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_9985_244820_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_9985_630956_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_9985_558365_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_9985_923781_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_50104_654007_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_50104_896657_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_50104_258511_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_50104_904901_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_9553_292793_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_9553_896944_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_9553_107449_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_9553_961770_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_15203_411065_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_15203_937270_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_15203_388904_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_15203_338225_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_39987_485772_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_39987_969690_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_39987_773059_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_39987_688692_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1024,"name":"image","h":768,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_41153_542636_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_41153_734448_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_41153_63661_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_41153_609590_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":768,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f9182812a4ffa01812a772f1e0e73_49903_303237_thumbnail.jpg","original":"8a9f9182812a4ffa01812a772f1e0e73_49903_379564_original.jpg","large":"8a9f9182812a4ffa01812a772f1e0e73_49903_373142_large.jpg","medium":"8a9f9182812a4ffa01812a772f1e0e73_49903_248304_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":768,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"propertySize":500,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f9182812a4ffa01812a772f1e0e73_98185_956735_original.jpg","accomodationTypeDesc":"","formattedDeposit":"50,000","id":"8a9f9182812a4ffa01812a772f1e0e73","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In C E S English Nursery School","longitude":77.59264689999998,"powerBackup":"FULL","dateOnly":"2024-06-10T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fvillas-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"Lakshmi Theatre\",\"longitude\":77.6075668,\"seoUrl\":\"\u002Fvillas-for-rent-near-lakshmi_theatre_sadduguntepalya_bangalore\",\"latitude\":12.9252855,\"id\":\"ChIJK1rw1KoVrjsRwBfz4lUlFXY\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"SG Palya\",\"longitude\":77.6076298,\"seoUrl\":\"\u002Fvillas-for-rent-near-sg_palya_bangalore\",\"latitude\":12.9338083,\"id\":\"ChIJ69MIVa0VrjsRxj_OmfeeBeU\"}]","indexName":"nobroker","locality":"C E S ENGLISH NURSERY SCHOOL","active":true,"creationDate":1654274863000,"swimmingPool":false,"waterSupply":"CORPORATION","activeViewCount":3,"completeStreetName":"CES English high school","propertyScore":1719124175000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":3,"mapped":false,"lift":false,"deposit":50000,"gym":false,"reactivationSource":"owner_wa_reactivation","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-c-e-s-english-nursery-school-bangalore-for-rs-12000\u002F8a9f9182812a4ffa01812a772f1e0e73\u002Fdetail","activationDate":1718000975000,"leaseTypeNew":["ANYONE"],"facingDesc":"North","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":true}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1RJJnM5","latitude":12.929646599999998,"promoted_b":false,"reactivationReqDate":1718000183000,"facing":"N","title":"1 BHK House for Rent In C E S English Nursery School","nbLocality":"Jayanagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Nawaz Ahmed","street":"CES English high school","propertyType":"RENT","secondaryTitle":"Independent House, CES English high school","floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f9182812a4ffa01812a772f1e0e73\u002F8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg","showRequestPhoto":false,"lastActivationDate":1690816929000,"forLease":false,"address":"Independent House, CES English high school, C E S ENGLISH NURSERY SCHOOL, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In C ...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"location":"12.929646599999998000,77.592646899999980000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","localityTruncated":"4th T Block East, Jayanagar...","negotiable":true,"type":"BHK3","ownerId":"8a9f8e038fae70a6018fae9071c11439","rent":50000,"propertySize":1640,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8b438fae9104018fae9a9d410338_4865_947778_original.jpg","score":{"lastUpdatedDate":"2024-05-25T13:21:21+05:30","transit":8.1,"id":"8a9f8b438fae9104018fae9a9d410338","lifestyle":8.5},"propertyCode":"NB-1378843","id":"8a9f8b438fae9104018fae9a9d410338","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT_UNKNOWN","locality":"4th T Block East, Jayanagar 3rd Block East","active":true,"waterSupply":"CORP_BORE","propertyScore":1719118373000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":500000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-4th-t-block-east-jayanagar-3rd-block-east-bangalore-for-rs-50000\u002F8a9f8b438fae9104018fae9a9d410338\u002Fdetail","activationDate":1718011987000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.928203560708894,"reactivationReqDate":1718011510000,"facing":"SE","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India, 4th T Block East, Jayanagar 3rd Block East, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"3,000","propertyTitleTruncated":"3 BHK Flat In Ushas Apartme...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"50,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718444320000,"balconies":2,"availableFrom":1718217000000,"photos":[{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_4865_26715_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_4865_947778_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_4865_234580_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg"},"disAffinity":1019,"subReasons":"","displayPic":true,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_55705_250763_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_55705_916944_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_55705_675666_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_55705_773626_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_96661_169464_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_96661_282986_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_96661_362705_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_96661_468796_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_54202_190415_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_54202_703822_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_54202_337136_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_54202_602083_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_80183_393266_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_80183_67511_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_80183_487700_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_80183_355909_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_36799_844819_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_36799_697443_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_36799_151935_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_36799_240215_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_91689_323454_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_91689_90316_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_91689_446105_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_91689_137864_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_19651_66334_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_19651_946122_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_19651_739197_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_19651_223687_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6169_391230_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6169_476393_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6169_631498_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6169_674878_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_57065_483857_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_57065_492183_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_57065_587167_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_57065_567127_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_59446_424686_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_59446_695738_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_59446_33149_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_59446_330800_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_5441_943757_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_5441_611274_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_5441_104161_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_5441_610649_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_96898_902180_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_96898_270575_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_96898_595307_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_96898_51436_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_59922_112968_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_59922_990809_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_59922_577800_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_59922_123307_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_88014_404957_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_88014_437526_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_88014_336759_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_88014_758165_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_11022_965944_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_11022_614977_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_11022_507731_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_11022_73801_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_40356_126733_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_40356_785084_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_40356_248478_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_40356_372886_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_99804_186917_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_99804_332697_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_99804_487885_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_99804_373942_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6084_585602_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6084_755988_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6084_44397_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6084_569448_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_12672_24968_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_12672_964239_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_12672_226235_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_12672_832743_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_6145_476467_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_6145_933443_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_6145_354392_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_6145_400003_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_1922_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_92184_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_56610_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_35888_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_28977_708684_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_28977_888447_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_28977_105155_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_28977_685041_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_13275_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_48553_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_69674_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_17629_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_72670_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_5872_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_36652_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_51293_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_67868_556936_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_67868_295681_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_67868_948073_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_67868_102898_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_42279_310772_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_42279_445854_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_42279_993162_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_42279_572631_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_79860_633626_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_79860_689014_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_79860_744902_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_79860_17422_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_17908_904996_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_17908_15669_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_17908_440989_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_17908_576136_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1040,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_80673_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_12291_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_68903_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_67778_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":780,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_95924_571316_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_95924_486877_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_95924_896998_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_95924_816263_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_77789_751233_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_77789_508568_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_77789_284701_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_77789_279854_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8b438fae9104018fae9a9d410338_91080_993475_thumbnail.jpg","original":"8a9f8b438fae9104018fae9a9d410338_91080_715065_original.jpg","large":"8a9f8b438fae9104018fae9a9d410338_91080_163966_large.jpg","medium":"8a9f8b438fae9104018fae9a9d410338_91080_719715_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":780,"name":"multipart","h":1040,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"5 Lacs","localityId":"jayanagar_bangalore","lastUpdateString":"Today","longitude":77.58898805826902,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJWdbtHlMUrjsRggZh-zSF3jw\",\"name\":\"IBC Knowledge Park\",\"longitude\":77.6012865,\"seoUrl\":\"\u002Fflats-for-rent-near-ibc_knowledge_park_sadduguntepalya_bangalore\",\"latitude\":12.9333439,\"id\":\"ChIJrx4dbZAVrjsRp-6D3MUO87w\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Meghana Foods\",\"longitude\":77.58450590000002,\"seoUrl\":\"\u002Fflats-for-rent-near-meghana_foods_jayanagar_bangalore\",\"latitude\":12.926147300000002,\"id\":\"ChIJDZDp46EVrjsRgObcqyJbfyA\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Inox Theatre\",\"longitude\":77.59236829999998,\"seoUrl\":\"\u002Fflats-for-rent-near-inox_theatre_j_p_nagar_bangalore\",\"latitude\":12.9163975,\"id\":\"ChIJD-00OpkVrjsRD3niQor9diA\"},{\"localityId\":\"ChIJ2ddlZ5gVrjsRh1BOAaf-ors\",\"name\":\"Cool Joint\",\"longitude\":77.58589920000001,\"seoUrl\":\"\u002Fflats-for-rent-near-cool_joint_jayanagar_bangalore\",\"latitude\":12.9288091,\"id\":\"ChIJm1LybKIVrjsRwxfnAcgY6xs\"},{\"localityId\":\"ChIJK6dJcw0VrjsRRj3d4aE-0PM\",\"name\":\"Ragigudda Sri Prasanna Anjaneyaswamy Temple\",\"longitude\":77.5931717,\"seoUrl\":\"\u002Fflats-for-rent-near-ragigudda_sri_prasanna_anjaneyaswamy_temple_bangalore\",\"latitude\":12.914373300000001,\"id\":\"ChIJBwLj4g4VrjsRerGf4HTVPUc\"}]","indexName":"nobroker","maintenanceAmount":3000,"creationDate":1716621319000,"swimmingPool":false,"activeViewCount":4,"completeStreetName":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Vittal Mallya Road","url":"flats-for-rent-in-vittal_mallya_road_bangalore"},{"name":"3 BHK","url":"3bhk-flats-for-rent-in-vittal_mallya_road_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"USER_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"South-East","ownerDescription":"An independent block on the top (4th) floor, offering a spacious 3 BHK flat. The apartment includes two bathrooms, a kitchen, a pooja room, and two balconies, with ample open space on all sides for excellent ventilation and natural light. Located in a prime area, it is very close to several schools and colleges, all within a hundred yards. Additionally, it is within walking distance of shopping complexes, major hospitals, and malls, making it a highly convenient and desirable place to live.","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1c4BXJ5","promoted_b":false,"title":"3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East","nbLocality":"Jayanagar","society":"Ushas Apartments","ownerName":"H M Alva","street":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","propertyType":"RENT","secondaryTitle":"Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India","aea__":{"FRM_UPLOADED_PHOTO":{"value":"15\u002F06\u002F2024 02:43 PM"},"ACCURATE_LOCATION":{"display_value":"Accurate","value":"ACCURATE"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 02:44 PM"},"HOUSE_KEY_WITH":{"display_value":"Security","value":"SECURITY"}},"floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8b438fae9104018fae9a9d410338\u002F8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg","showRequestPhoto":false,"lastActivationDate":1716622203000,"inactiveReasonDesc":"Rented unknown","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.928203560708894000,77.588988058269020000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718426124000,"furnishingDesc":"Semi","localityTruncated":"Siddhapura","negotiable":false,"type":"BHK1","ownerId":"ff8081815cf81994015cf897b9d3371a","rent":10000,"availableFrom":1714415400000,"photos":[{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_226313_573120_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_226313_80769_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_226313_170689_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_551010_50313_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_551010_419621_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_551010_427871_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_551010_788450_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_623166_656365_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_623166_371305_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_623166_547339_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_623166_508054_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":1600,"name":"image","h":729,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":729,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_513678_554180_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_513678_409374_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_513678_960677_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_513678_851385_medium.jpg"},"disAffinity":30,"subReasons":"","subState":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":729,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f84038cbef04f018cbfa51c207e89_655993_354218_thumbnail.jpg","original":"8a9f84038cbef04f018cbfa51c207e89_655993_254610_original.jpg","large":"8a9f84038cbef04f018cbfa51c207e89_655993_133780_large.jpg","medium":"8a9f84038cbef04f018cbfa51c207e89_655993_755350_medium.jpg"},"disAffinity":-70,"subReasons":"","subState":"","displayPic":false,"w":1600,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"propertySize":430,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f84038cbef04f018cbfa51c207e89_226313_80769_original.jpg","accomodationTypeDesc":"","formattedDeposit":"80,000","id":"8a9f84038cbef04f018cbfa51c207e89","state":"READY","localityId":"jayanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Siddhapura","longitude":77.58056664362354,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJCwCOfGUVrjsRkNcI9wbOo4Q\",\"name\":\"Jaya Prakash Nagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jaya_j_p_nagar_bangalore\",\"latitude\":12.9075563,\"longitude\":77.573061,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"},{\"id\":\"ChIJvwy9o30WrjsR_3Soez0XLL8\",\"name\":\"Mahatma Gandhi Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-mg_road_metro_station_shanthala_nagar_ashok_nagar_bangalore\",\"latitude\":12.9755162,\"longitude\":77.6066919,\"placeType\":\"metro\"},{\"id\":\"ChIJybGxEPo9rjsRvVr1TcQEmxo\",\"name\":\"Magadi Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-magadi_road_metro_station_bangalore\",\"latitude\":12.9756582,\"longitude\":77.55541149999999,\"placeType\":\"metro\"},{\"id\":\"ChIJ6zSXdpkVrjsRvb2SqkmrHBc\",\"name\":\"Jayanagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-jayanagar-jayanagar-bangalore\",\"latitude\":12.9296749,\"longitude\":77.5801753,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"Siddhapura","active":true,"creationDate":1704022318000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"KHB Colony near Vijaya College","propertyScore":1719117323000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":80000,"gym":false,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-siddhapura-bangalore-for-rs-10000\u002F8a9f84038cbef04f018cbfa51c207e89\u002Fdetail","reactivationSource":"TIME_OUT_WHATSAPP_RENT","activationDate":1718426123000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F13BcRn5","latitude":12.940700506897878,"promoted_b":false,"reactivationReqDate":1718425853000,"title":"1 BHK House for Rent In Siddhapura","nbLocality":"Jayanagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"Vijay","street":"KHB Colony near Vijaya College","propertyType":"RENT","secondaryTitle":"Independent House, KHB Colony near Vijaya College","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f84038cbef04f018cbfa51c207e89\u002F8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714483991000,"forLease":false,"address":"Independent House, KHB Colony near Vijaya College, Siddhapura, bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Si...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"10,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.940700506897878000,77.580566643623540000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718439783000,"furnishingDesc":"Unfurnished","localityTruncated":"Rajajinagar","negotiable":false,"type":"BHK2","ownerId":"8a9f90837ca24e70017ca2e736586b58","rent":16000,"availableFrom":1718994600000,"photos":[{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53875_835602_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53875_777895_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53875_603806_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_41882_304543_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_41882_560184_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_41882_430541_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_41882_384863_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_14641_784893_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_14641_539605_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_14641_872036_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_14641_48664_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":1632,"name":"multipart","h":1224,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53558_505428_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53558_720169_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53558_824047_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53558_663729_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1632,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_53198_286174_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_53198_194764_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_53198_314110_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_53198_81207_medium.jpg"},"disAffinity":20,"subReasons":"","subState":"","displayPic":false,"w":1224,"name":"multipart","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_85328_954000_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_85328_329666_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_85328_755029_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_85328_380217_medium.jpg"},"disAffinity":10,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_7646_39945_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_7646_938082_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_7646_309715_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_7646_307725_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_11639_898413_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_11639_21502_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_11639_946120_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_11639_241147_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_84505_10831_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_84505_203132_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_84505_320524_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_84505_826381_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9f8483900c1eea01900c46175d110d_71409_592195_thumbnail.jpg","original":"8a9f8483900c1eea01900c46175d110d_71409_766623_original.jpg","large":"8a9f8483900c1eea01900c46175d110d_71409_293456_large.jpg","medium":"8a9f8483900c1eea01900c46175d110d_71409_746414_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":1224,"name":"multipart","h":1632,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8483900c1eea01900c46175d110d_53875_777895_original.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-12T17:22:20+05:30","transit":8.7,"id":"8a9f8483900c1eea01900c46175d110d","lifestyle":6.2},"propertyCode":"NB-1378701","formattedDeposit":"1 Lac","id":"8a9f8483900c1eea01900c46175d110d","state":"READY","localityId":"rajajinagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Rajajinagar","longitude":77.55096405744553,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"DMart\",\"longitude\":77.5471395,\"seoUrl\":\"\u002Fvillas-for-rent-near-dmart_vijayanagar_bangalore\",\"latitude\":12.974557,\"id\":\"ChIJdUqCoeU9rjsR9bX8PfM2cCQ\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Veeresh Cinema\",\"longitude\":77.5458287,\"seoUrl\":\"\u002Fvillas-for-rent-near-veeresh_cinema_vijayanagar_bangalore\",\"latitude\":12.9768251,\"id\":\"ChIJYZymRO89rjsRPFZP4AZ3QQ4\"},{\"localityId\":\"ChIJtXIcMPg9rjsR_Xl7MJVPD50\",\"name\":\"Anjan Cinemas\",\"longitude\":77.5588377,\"seoUrl\":\"\u002Fvillas-for-rent-near-anjan_cinemas_binnipete_bangalore\",\"latitude\":12.9752642,\"id\":\"ChIJE1uqtfk9rjsRDcglYWvCD1s\"},{\"localityId\":\"ChIJxfW4DPM9rjsRKsNTG-5p_QQ\",\"name\":\"Hotel Nalapaka\",\"longitude\":77.5524068,\"seoUrl\":\"\u002Fvillas-for-rent-near-hotel_nalapaka_rajajinagar_bangalore\",\"latitude\":12.998541699999999,\"id\":\"ChIJ1SPqPPE9rjsRF7XhzH3gZ3I\"},{\"localityId\":\"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck\",\"name\":\"Hosahalli Metro Station\",\"longitude\":77.5455406,\"seoUrl\":\"\u002Fvillas-for-rent-near-hosahalli_metro_station_bangalore\",\"latitude\":12.9741671,\"id\":\"ChIJT50hxeU9rjsRlPxnxhLf-Vc\"}]","locality":"Rajajinagar","active":true,"creationDate":1718192838000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":" near warrior bakery ","propertyScore":1719061858000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":100000,"gym":false,"listingNudge":"Owner Is Live","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-16000\u002F8a9f8483900c1eea01900c46175d110d\u002Fdetail","activationDate":1718193048000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1d46tY5","latitude":12.986281779926175,"promoted_b":false,"title":"2 BHK House for Rent In Rajajinagar","nbLocality":"Rajajinagar","visits":{"isSelfBooked":false,"time":"11:30 AM Tomorrow","timeInLong":1718604000000,"type":"SCHEDULE_VISIT"},"leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"thilaka","street":" near warrior bakery ","propertyType":"RENT","secondaryTitle":"Independent House, near warrior bakery ","aea__":{"FRM_UPLOADED_PHOTO":{"value":"15\u002F06\u002F2024 01:14 PM"},"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"},"GATED_SECURITY":{"display_value":"No","value":"NO"},"NEGOTIATED_RENT":{"value":"15998"},"MAX_NEGOTIATED_DEPOSIT":{"value":"100000"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"KEY_COLLECTION_DATE":{"value":"15\u002F06\u002F2024 01:15 PM"},"KEY_COLLECTION_DETAILS":{"value":"keys r with owner "},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":""},"KEY_HOLDER_NAME":{"value":"OWNER"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8483900c1eea01900c46175d110d\u002F8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg","showRequestPhoto":false,"forLease":false,"address":"Independent House, near warrior bakery , Rajajinagar, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ra...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[{"title":"1.6 km from Balagangadharanatha Swamiji Stn., Hosahalli","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FBalagangadharanatha%20Swamiji%20Stn.,%20Hosahalli?searchParam=W3sibGF0IjoxMi45NzQyOTc1LCJsb24iOjc3LjU0NTQ0MzYsInNob3dNYXAiOmZhbHNlLCJwbGFjZUlkIjoiQ2hJSlQ1MGh4ZVU5cmpzUmxQeG54aExmLVZjIiwicGxhY2VOYW1lIjoiQmFsYWdhbmdhZGhhcmFuYXRoYSBTd2FtaWppIFN0bi4sIEhvc2FoYWxsaSIsImNpdHkiOiJiYW5nYWxvcmUifV0=&city=bangalore&locality=Balagangadharanatha%20Swamiji%20Stn.,%20Hosahalli&searchViaMetro=true"}],"formattedPrice":"16,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.986281779926175000,77.550964057445530000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"}],"listPageSponsoredProperties":[],"listPageOtherParams":{"searchParam":"W3sibGF0IjoxMi45NzgzNjkyLCJsb24iOjc3LjY0MDgzNTYsInBsYWNlSWQiOiJDaElKa1FOM0dLUVdyanNSTmhCUUpyaEdEN1UiLCJwbGFjZU5hbWUiOiJJbmRpcmFuYWdhciJ9LHsibGF0IjoxMi45MzA3NzM1LCJsb24iOjc3LjU4MzgzMDIsInBsYWNlSWQiOiJDaElKMmRkbFo1Z1ZyanNSaDFCT0FhZi1vcnMiLCJwbGFjZU5hbWUiOiJKYXlhbmFnYXIifSx7ImxhdCI6MTIuOTk4MTczMiwibG9uIjo3Ny41NTMwNDQ1OTk5OTk5OSwicGxhY2VJZCI6IkNoSUp4Zlc0RFBNOXJqc1JLc05URy01cF9RUSIsInBsYWNlTmFtZSI6IlJhamFqaW5hZ2FyIn1d","placeId":null,"city":"bangalore","breadCrumbs":"W3sibmFtZSI6ImJhbmdhbG9yZSIsInVybCI6ImZsYXRzLWZvci1yZW50LWluLWJhbmdhbG9yZV9iYW5nYWxvcmUifV0=","count":26,"searchToken":null,"topPropertyId":null,"total_count":1081},"selectedLocalities":[{"lat":12.9783692,"lng":77.6408356,"place_id":"ChIJkQN3GKQWrjsRNhBQJrhGD7U","name":"Indiranagar"},{"lat":12.9307735,"lng":77.5838302,"place_id":"ChIJ2ddlZ5gVrjsRh1BOAaf-ors","name":"Jayanagar"},{"lat":12.9981732,"lng":77.55304459999999,"place_id":"ChIJxfW4DPM9rjsRKsNTG-5p_QQ","name":"Rajajinagar"}],"notSelectedData":[],"listPagebuilderProjects":null,"clearListPgaeProperties":false,"shortlistData":null,"listPageMapOtherProperties":[],"polygonData":[],"polygonDataOtherParams":null,"localityType":null,"nearbyProperties":{"status":200,"statusCode":200,"message":"success","seoData":null,"otherParams":{"count":9},"data":[{"urlName":"srirampuram_bangalore","placeType":"region","commuteScore":8.65,"city":"bangalore","center":{"lon":77.5663622,"lat":12.9948091},"lifestyleScore":7.37,"name":"Srirampura, Bangalore","id":"ChIJVX2PEPY9rjsRYbb8uQBFnFc"},{"urlName":"nagapura_bangalore","placeType":"region","commuteScore":9.66,"city":"bangalore","center":{"lon":77.5443184,"lat":13.0021081},"lifestyleScore":8.38,"name":"Nagapura, Bangalore","id":"ChIJH0ldiJw9rjsRvVs8H2YXhRI"},{"urlName":"yeshwanthpur_bangalore","placeType":"region","commuteScore":5.13,"city":"bangalore","center":{"lon":77.53402419999999,"lat":13.0250302},"lifestyleScore":3.85,"name":"Yeswanthpur, Bangalore","id":"ChIJj0N-IWQ9rjsRxDxWEhcGs9E"},{"urlName":"mahalakshmipuram_bangalore","placeType":"point","city":"bangalore","center":{"lon":77.5459766,"lat":13.0105367},"name":"Mahalakshmipuram, Bangalore","id":"ChIJZ5DYJ3Y9rjsRrOfdD6-K0_o"},{"urlName":"vijayanagar_bangalore","placeType":"region","commuteScore":9.27,"city":"bangalore","center":{"lon":77.53538809999999,"lat":12.975596},"lifestyleScore":7.99,"name":"Vijayanagar, Bangalore","id":"ChIJ5zr8Xtk9rjsRrZrdrpG3Dck"},{"urlName":"basaveshwara_nagar_bangalore","placeType":"region","commuteScore":8.95,"city":"bangalore","center":{"lon":77.5374662,"lat":12.9879576},"lifestyleScore":7.67,"name":"Basaveshwar Nagar, Bangalore","id":"ChIJu2vRsqI9rjsRZy0viMNvrWM"},{"urlName":"malleswaram_bangalore","placeType":"region","commuteScore":8.47,"city":"bangalore","center":{"lon":77.5692358,"lat":13.0055113},"lifestyleScore":7.19,"name":"Malleswaram, Bangalore","id":"ChIJw895_389rjsRvqWkRnqsut8"},{"urlName":"binnipete_bangalore","placeType":"region","commuteScore":7.44,"city":"bangalore","center":{"lon":77.56021659999999,"lat":12.9757767},"lifestyleScore":6.16,"name":"Binnipete, Bangalore","id":"ChIJtXIcMPg9rjsR_Xl7MJVPD50"},{"urlName":"mahalakshmi_layout_bangalore","placeType":"region","commuteScore":7.25,"city":"bangalore","center":{"lon":77.55140469999999,"lat":13.0145937},"lifestyleScore":5.97,"name":"Mahalakshmi Layout, Bangalore","id":"ChIJZ6biFXE9rjsRUjUG5N7M8vM"}]},"seoData":{"seo_description":"Contact Owners Directly - Get Without Brokerage Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka along with Rent Agreement and BEST Trusted local Packers And Movers for shifting to new Home only on NOBROKER. Check Now Rental Properties in Indiranagar,Jayanagar,Rajajinagar WITHOUT BROKERAGE to SAVE YOUR MONEY.","h1":"Apartments, Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage | Rental Houses in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage","title":"1,081 Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage - NoBroker Rental Properties in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage","seo_keywords":"flats for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, apartments for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, houses for rent in Indiranagar,Jayanagar,Rajajinagar"},"canonicalUrl":null,"seoFooterData":null,"listPageCommercialPropertyType":null,"faqData":null,"closeCard":false,"dashboardRmLead":null,"listPageBuilderCarouselData":[{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5e9733fba5a1662dac0ace46","projectImages":["https:\u002F\u002Fimages.nobroker.in\u002Fimg\u002F5e9733fba5a1662dac0ace46\u002F5e9733fba5a1662dac0ace46_44954_501915_medium.jpg"],"buildingPageUrl":"neo-divine-jayanagar_bangalore-prjt-5e9733fba5a1662dac0ace46","searchParam":"W3sibG9uIjo3Ny41OTI3MDksInBsYWNlTmFtZSI6Ik5lbyBEaXZpbmUiLCJsYXQiOjEyLjkyMjU4NX1d","buildingName":"Neo Divine","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b568105763742","projectImages":["https:\u002F\u002Fimages.nobroker.in\u002Fimg\u002F5ba009ad714b568105763742\u002F5ba009ad714b568105763742_35940_952565_medium.jpg"],"buildingPageUrl":"kumar-ashraya-apartments-jayanagar_bangalore-prjt-5ba009ad714b568105763742","searchParam":"W3sicGxhY2VJZCI6IkNoSUpMYWxKZmRZaXJqc1JzQjctMlZDdTU2MCIsImxvbiI6NzcuNTgwNTU1NSwicGxhY2VOYW1lIjoiS3VtYXIgQXNocmF5YSBBcGFydG1lbnRzIiwibGF0IjoxMi45MzkxNjM4fV0=","buildingName":"Kumar Ashraya Apartments","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b568105760909","projectImages":["https:\u002F\u002Fimages.nobroker.in\u002Fimg\u002F5ba009ad714b568105760909\u002F5ba009ad714b568105760909_63293_786632_medium.jpg"],"buildingPageUrl":"sobha-indraprastha--rajaji-nagar-bangalore_bangalore-prjt-5ba009ad714b568105760909","searchParam":"W3sicGxhY2VJZCI6IkNoSUpreGY2NVIwV3Jqc1JFdUo3eFV6ZW4ybyIsImxvbiI6NzcuNTY0MTMzMjk0OTA1ODIsInBsYWNlTmFtZSI6IlNvYmhhIEluZHJhcHJhc3RoYSIsImxhdCI6MTIuOTc5NzExNjMzMDM4OTI0fV0=","buildingName":"Sobha Indraprastha","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b56810576425d","projectImages":["https:\u002F\u002Fimages.nobroker.in\u002Fimg\u002F5ba009ad714b56810576425d\u002F5ba009ad714b56810576425d_10570_718278_medium.jpg"],"buildingPageUrl":"r-j-gardens-indira-nagar-bangalore_bangalore-prjt-5ba009ad714b56810576425d","searchParam":"W3sicGxhY2VJZCI6IkNoSUpBN1hkemFNV3Jqc1JGSHZYb3k2SXJKQSIsImxvbiI6NzcuNjM0MTA0MiwicGxhY2VOYW1lIjoiUiBKIEdhcmRlbnMiLCJsYXQiOjEyLjk3NTYyNDN9XQ==","buildingName":"R J Gardens","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b568105765b83","projectImages":[null],"buildingPageUrl":"bella-casa-indira-nagar_bangalore-prjt-5ba009ad714b568105765b83","searchParam":"W3sicGxhY2VJZCI6IkNoSUp5Zld3NVZ4cnJqc1I0OHQ5UzhjV0dHWSIsImxvbiI6NzcuNjM4NTU1LCJwbGFjZU5hbWUiOiJCZWxsYSBDYXNhIiwibGF0IjoxMi45NzMwNjV9XQ==","buildingName":"Bella Casa","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b5681057636c2","projectImages":[null],"buildingPageUrl":"merci-apartment-indiranagar_bangalore-prjt-5ba009ad714b5681057636c2","searchParam":"W3sicGxhY2VJZCI6IkNoSUpPMWFtbTZnV3Jqc1J5NHdfOF9ZZzdoVSIsImxvbiI6NzcuNjQyNjM5LCJwbGFjZU5hbWUiOiJNZXJjaSBBcGFydG1lbnQiLCJsYXQiOjEyLjk3MzIyMX1d","buildingName":"Merci Apartment","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b5681057644d0","projectImages":[null],"buildingPageUrl":"s.m.kuteer-kaggadasapura_bangalore-prjt-5ba009ad714b5681057644d0","searchParam":"W3sicGxhY2VJZCI6IkNoSUpnUURYQjJZUnJqc1J2UzhEMzdfS2VZTSIsImxvbiI6NzcuNjgyMDk5NDk5OTk5OTksInBsYWNlTmFtZSI6IlMuTS5LdXRlZXIiLCJsYXQiOjEyLjk4MTk5Njd9XQ==","buildingName":"S.M.Kuteer","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"63aac3a5289f010001810005","projectImages":[null],"buildingPageUrl":"jai-apartments-rajaji-nagar-rajaji-nagar_bangalore-prjt-63aac3a5289f010001810005","searchParam":"W3sicGxhY2VJZCI6IkNoSUpIMGxkaUp3OXJqc1J2VnM4SDJZWGhSSSIsImxvbiI6NzcuNTUyOTE0LCJwbGFjZU5hbWUiOiJKYWkgQXBhcnRtZW50cyBSYWphamkgTmFnYXIiLCJsYXQiOjEzLjAwNDgyNn1d","buildingName":"Jai Apartments Rajaji Nagar","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5ba009ad714b56810576329a","projectImages":[null],"buildingPageUrl":"windsor-villa-indiranagar_bangalore-prjt-5ba009ad714b56810576329a","searchParam":"W3sicGxhY2VJZCI6IkNoSUpnNDk0WUs4V3Jqc1JOWGtDWl90ZTNlSSIsImxvbiI6NzcuNjQyMzA1Mjk5OTk5OTksInBsYWNlTmFtZSI6IldpbmRzb3IgVmlsbGEiLCJsYXQiOjEyLjk3NjU1MDh9XQ==","buildingName":"Windsor Villa","propertyCount":1,"propertyType":"RENT"},{"maxBuiltUpArea":null,"minBuiltUpArea":null,"buildingId":"5e97386ba5a1662dac0b0a1c","projectImages":[null],"buildingPageUrl":"srirampura-srirampura_bangalore-prjt-5e97386ba5a1662dac0b0a1c","searchParam":"W3sibG9uIjo3Ny41NjYzNjIyLCJwbGFjZU5hbWUiOiJTcmlyYW1wdXJhIiwibGF0IjoxMi45OTQ4MDkxfV0=","buildingName":"Srirampura","propertyCount":1,"propertyType":"RENT"}],"listPageBuilderCarouselDataSale":null,"listPageSponsoredCarouselData":null,"listPageNearByOtherParams":{"searchParam":"W3sibGF0IjoxMi45NzgzNjkyLCJsb24iOjc3LjY0MDgzNTYsInBsYWNlSWQiOiJDaElKa1FOM0dLUVdyanNSTmhCUUpyaEdEN1UiLCJwbGFjZU5hbWUiOiJJbmRpcmFuYWdhciJ9LHsibGF0IjoxMi45MzA3NzM1LCJsb24iOjc3LjU4MzgzMDIsInBsYWNlSWQiOiJDaElKMmRkbFo1Z1ZyanNSaDFCT0FhZi1vcnMiLCJwbGFjZU5hbWUiOiJKYXlhbmFnYXIifSx7ImxhdCI6MTIuOTk4MTczMiwibG9uIjo3Ny41NTMwNDQ1OTk5OTk5OSwicGxhY2VJZCI6IkNoSUp4Zlc0RFBNOXJqc1JLc05URy01cF9RUSIsInBsYWNlTmFtZSI6IlJhamFqaW5hZ2FyIn1d","placeId":null,"city":"bangalore","breadCrumbs":"W3sibmFtZSI6ImJhbmdhbG9yZSIsInVybCI6ImZsYXRzLWZvci1yZW50LWluLWJhbmdhbG9yZV9iYW5nYWxvcmUifV0=","count":26,"searchToken":null,"topPropertyId":null,"total_count":6851},"listPageNearByProperties":[{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Indiranagar","negotiable":false,"type":"BHK2","ownerId":"ff80818155915073015591daa8d008c6","rent":40000,"propertySize":850,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818155914e890155922239b42a9b_3621_970222_original.jpg","score":{"lastUpdatedDate":"2024-02-23T16:22:22+05:30","transit":8.3,"id":"ff80818155914e890155922239b42a9b","lifestyle":8.2},"propertyCode":"NB-6868","id":"ff80818155914e890155922239b42a9b","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In Indiranagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714623706000,"accurateLocation":true,"pinCode":560075,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-40000\u002Fff80818155914e890155922239b42a9b\u002Fdetail","activationDate":1715142106000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":true,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.979253944686246,"reactivationReqDate":1715138595000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"standalone building, 80 Feet Road, Near Sapna Book House, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"2 BHK Flat for Rent In Ind...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715142113000,"balconies":1,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_3621_966446_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_3621_970222_original.jpg","large":"ff80818155914e890155922239b42a9b_3621_664378_large.jpg","medium":"ff80818155914e890155922239b42a9b_3621_774045_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_8956_397354_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_8956_133942_original.jpg","large":"ff80818155914e890155922239b42a9b_8956_703788_large.jpg","medium":"ff80818155914e890155922239b42a9b_8956_274213_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_79699_501269_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_79699_155905_original.jpg","large":"ff80818155914e890155922239b42a9b_79699_254675_large.jpg","medium":"ff80818155914e890155922239b42a9b_79699_254399_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_4503_211935_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_4503_20733_original.jpg","large":"ff80818155914e890155922239b42a9b_4503_404189_large.jpg","medium":"ff80818155914e890155922239b42a9b_4503_718790_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_10853_621180_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_10853_509433_original.jpg","large":"ff80818155914e890155922239b42a9b_10853_454650_large.jpg","medium":"ff80818155914e890155922239b42a9b_10853_46381_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.6465675104227,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1467035564000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"80 Feet Road, Near Sapna Book House","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"New Tippasandra","url":"flats-for-rent-in-new_thippasandra_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-new_thippasandra_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"The house is semi furnished with wardrobes and modular kitchen with chimney. It has easy access to market, schools, hospitals, banks ATM's and 5 min walk to Vivekananda metro station as well.\nspeciality\nVivekananda metro station- 2 mins\nmother hood\ncmh hospital- 1 mins walk\ngopalan signature mall- 500 mtrs","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F16WJ2z4","promoted_b":false,"title":"2 BHK Flat for Rent In Indiranagar","nbLocality":"New Tippasandra","society":"standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Road, Near Sapna Book House","propertyType":"RENT","secondaryTitle":"standalone building, 80 Feet Road, Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818155914e890155922239b42a9b\u002Fff80818155914e890155922239b42a9b_3621_774045_medium.jpg","showRequestPhoto":true,"lastActivationDate":1710134239000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979253944686246000,77.646567510422700000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":1,"localityTruncated":"Indira Nagar","negotiable":false,"type":"BHK1","ownerId":"ff80818155915073015591daa8d008c6","rent":30000,"propertySize":650,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818155915073015591daa94208c7_58071_889466_original.jpg","propertyCode":"NB-1005550","id":"ff80818155915073015591daa94208c7","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat for Rent In Indira Nagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714536911000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-30000\u002Fff80818155915073015591daa94208c7\u002Fdetail","activationDate":1715141711000,"amenities":"{\"INTERNET\":true,\"POOL\":false,\"AC\":false,\"RWH\":true,\"STP\":false,\"LIFT\":false,\"HK\":false,\"FS\":false,\"VP\":false,\"INTERCOM\":false,\"GYM\":false,\"PB\":true,\"CLUB\":false,\"SERVANT\":false,\"SC\":false,\"GP\":false,\"CPA\":false,\"PARK\":false,\"SECURITY\":false}","typeDesc":"1 BHK","city":"bangalore","latitude":12.979056583948227,"reactivationReqDate":1715141372000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":"standalone building, 80 Feet Rd Near Sapna Book House, Indira Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"1 BHK Flat for Rent In Ind...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"30,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715141713000,"balconies":1,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_58071_939560_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_58071_889466_original.jpg","large":"ff80818155915073015591daa94208c7_58071_568849_large.jpg","medium":"ff80818155915073015591daa94208c7_58071_549829_medium.jpg"},"disAffinity":912,"displayPic":true,"w":562,"name":"image","h":750,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_10650_228191_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_10650_90425_original.jpg","large":"ff80818155915073015591daa94208c7_10650_718511_large.jpg","medium":"ff80818155915073015591daa94208c7_10650_52001_medium.jpg"},"disAffinity":16,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_65809_899129_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_65809_183088_original.jpg","large":"ff80818155915073015591daa94208c7_65809_760335_large.jpg","medium":"ff80818155915073015591daa94208c7_65809_717498_medium.jpg"},"disAffinity":15,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_396800_367699_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_396800_266177_original.jpg","large":"ff80818155915073015591daa94208c7_396800_758805_large.jpg","medium":"ff80818155915073015591daa94208c7_396800_74772_medium.jpg"},"disAffinity":14,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_32934_699382_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_32934_359197_original.jpg","large":"ff80818155915073015591daa94208c7_32934_958352_large.jpg","medium":"ff80818155915073015591daa94208c7_32934_966442_medium.jpg"},"disAffinity":13,"displayPic":false,"w":750,"name":"image","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_45194_754656_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_45194_124879_original.jpg","large":"ff80818155915073015591daa94208c7_45194_925864_large.jpg","medium":"ff80818155915073015591daa94208c7_45194_322423_medium.jpg"},"disAffinity":13,"displayPic":false,"w":562,"name":"image","h":750,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_90568_151082_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_90568_138250_original.jpg","large":"ff80818155915073015591daa94208c7_90568_769994_large.jpg","medium":"ff80818155915073015591daa94208c7_90568_335348_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_88001_331805_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_88001_94272_original.jpg","large":"ff80818155915073015591daa94208c7_88001_261598_large.jpg","medium":"ff80818155915073015591daa94208c7_88001_980493_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664111779098,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1467030874000,"swimmingPool":true,"listingVerified":false,"activeViewCount":4,"completeStreetName":"80 Feet Rd Near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"East","ownerDescription":"Live- in bachelors not allowed\t\tWith an ATM, petrol pump & super market near this home, you'll never have to go far for these essentials. Access to bus station & pharmacies is very easy & convenient from this house.\nIf you are a frequent traveller, then you'll be happy to note that train station is less than 10 minutes from this house. only married couple,or working professional bachelors are also allowed. its for long duration minimum 11 months.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1xwbGV4","promoted_b":false,"title":"1 BHK Flat for Rent In Indira Nagar","nbLocality":"New Tippasandra","society":"standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Rd Near Sapna Book House","propertyType":"RENT","secondaryTitle":"standalone building, 80 Feet Rd Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818155915073015591daa94208c7\u002Fff80818155915073015591daa94208c7_58071_549829_medium.jpg","showRequestPhoto":false,"lastActivationDate":1713347792000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979056583948227000,77.646641117790980000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":3,"localityTruncated":" Indiranagar","negotiable":true,"type":"BHK2","ownerId":"8a9f908276ccb9cd0176cdbe687c6534","rent":18000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f908276ccb9cd0176cdbe689f6536_4174_554754_original.jpg","id":"8a9f908276ccb9cd0176cdbe689f6536","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":" Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1717882675000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in--indiranagar-bangalore-for-rs-18000\u002F8a9f908276ccb9cd0176cdbe689f6536\u002Fdetail","activationDate":1716932275000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9791265,"reactivationReqDate":1716893852000,"facing":"S","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 80 feet road near Sapna Book House, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In I...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716932344000,"balconies":0,"availableFrom":1716834600000,"photos":[{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_4174_489559_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_4174_554754_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_4174_955332_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_4174_646412_medium.jpg"},"disAffinity":15,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_37253_725129_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_37253_153319_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_37253_57252_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_37253_26070_medium.jpg"},"disAffinity":11,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_19819_759534_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_19819_718919_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_19819_966282_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_19819_680779_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_73084_703527_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_73084_325731_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_73084_652256_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_73084_798231_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_25935_754213_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_25935_780038_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_25935_192140_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_25935_224307_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_25993_559142_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_25993_827489_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_25993_515903_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_25993_468297_medium.jpg"},"disAffinity":1,"displayPic":false,"w":562,"name":"image","h":750,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_28282_812431_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_28282_312965_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_28282_645349_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_28282_372573_medium.jpg"},"disAffinity":0,"displayPic":false,"w":750,"name":"image","h":562,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_21322_131683_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_21322_945020_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_21322_672593_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_21322_664262_medium.jpg"},"disAffinity":0,"displayPic":false,"w":750,"name":"image","h":562,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_39113_301302_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_39113_570961_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_39113_963920_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_39113_870138_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_39664_423408_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_39664_501822_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_39664_51272_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_39664_768427_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_22983_494084_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_22983_311405_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_22983_859863_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_22983_623969_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_40846_145592_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_40846_743959_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_40846_898730_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_40846_673160_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664379999999,"dateOnly":"2024-05-29T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1609769577000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":" 80 feet road near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"South","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1J4QsM5","promoted_b":false,"title":"2 BHK House for Rent In Indiranagar","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"kailash","street":" 80 feet road near Sapna Book House","propertyType":"RENT","secondaryTitle":"Independent House, 80 feet road near Sapna Book House","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f908276ccb9cd0176cdbe689f6536\u002F8a9f908276ccb9cd0176cdbe689f6536_4174_646412_medium.jpg","showRequestPhoto":true,"lastActivationDate":1712240121000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979126500000000000,77.646643799999990000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":1,"localityTruncated":"Indira Nagar","negotiable":false,"type":"RK1","ownerId":"ff80818155915073015591daa8d008c6","rent":20000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816c8fe4dd016c931f9483064a_73430_693136_original.jpg","propertyCode":"NB-1017663","id":"ff8081816c8fe4dd016c931f9483064a","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK Flat for Rent In Indira Nagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714275039000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-20000\u002Fff8081816c8fe4dd016c931f9483064a\u002Fdetail","activationDate":1715139039000,"amenities":"{\"FS\":false,\"GP\":true,\"CPA\":false,\"PB\":false,\"PARK\":false,\"SERVANT\":false,\"SC\":false,\"POOL\":false,\"LIFT\":false,\"HK\":true,\"INTERCOM\":false,\"VP\":false,\"GYM\":false,\"CLUB\":false,\"INTERNET\":true,\"AC\":false,\"RWH\":true,\"STP\":false,\"SECURITY\":false}","typeDesc":"1 RK","city":"bangalore","latitude":12.979103654983414,"reactivationReqDate":1715138561000,"facing":"E","leaseType":"BACHELOR_FEMALE","premium":false,"forLease":false,"address":"Standalone building, 80 Feet Rd Near Sapna Book House, Indira Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"1 RK Flat for Rent In Indi...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"20,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"GP":true,"CLUB":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715139041000,"balconies":0,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_73430_587370_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_73430_693136_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_73430_80566_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_73430_629783_medium.jpg"},"disAffinity":1013,"displayPic":true,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_27014_921645_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_27014_486205_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_27014_922731_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_27014_615879_medium.jpg"},"disAffinity":16,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_223569_932815_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_223569_408653_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_223569_528309_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_223569_965967_medium.jpg"},"disAffinity":14,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_814649_689478_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_814649_961645_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_814649_723933_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_814649_101057_medium.jpg"},"disAffinity":12,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_45755_593936_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_45755_516121_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_45755_985927_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_45755_281521_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_6765_508327_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_6765_619247_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_6765_260357_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_6765_524648_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_88136_97553_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_88136_322945_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_88136_813645_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_88136_124389_medium.jpg"},"disAffinity":-84,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_413272_829592_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_413272_972726_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_413272_944730_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_413272_743531_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664729781195,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1565836416000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"80 Feet Rd Near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["BACHELOR"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1pNcfB4","promoted_b":false,"title":"1 RK Flat for Rent In Indira Nagar","nbLocality":"New Tippasandra","society":"Standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Rd Near Sapna Book House","propertyType":"RENT","secondaryTitle":"Standalone building, 80 Feet Rd Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816c8fe4dd016c931f9483064a\u002Fff8081816c8fe4dd016c931f9483064a_73430_629783_medium.jpg","showRequestPhoto":false,"lastActivationDate":1713347462000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979103654983414000,77.646647297811950000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":false,"type":"BHK2","ownerId":"ff808181563ba11101563fcc85865557","rent":18000,"propertySize":800,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181563ba11101563fcc85e15558_18325_903996_original.jpg","propertyCode":"NB-1368342","id":"ff808181563ba11101563fcc85e15558","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In New Tippasandra","powerBackup":"None","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717672677000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-18000\u002Fff808181563ba11101563fcc85e15558\u002Fdetail","activationDate":1716808318000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":true,\"GP\":false,\"PARK\":true,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.980853909067433,"reactivationReqDate":1716806269000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall, New Tippasandra, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ne...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":true,"SC":true,"PB":false,"CPA":true,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718462562000,"balconies":1,"availableFrom":1718994600000,"photos":[{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_18325_900632_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_18325_903996_original.jpg","large":"ff808181563ba11101563fcc85e15558_18325_74988_large.jpg","medium":"ff808181563ba11101563fcc85e15558_18325_760724_medium.jpg"},"disAffinity":1029,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_34808_301678_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_34808_600201_original.jpg","large":"ff808181563ba11101563fcc85e15558_34808_940431_large.jpg","medium":"ff808181563ba11101563fcc85e15558_34808_114881_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_85153_788515_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_85153_741870_original.jpg","large":"ff808181563ba11101563fcc85e15558_85153_629651_large.jpg","medium":"ff808181563ba11101563fcc85e15558_85153_931995_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_34441_357106_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_34441_113093_original.jpg","large":"ff808181563ba11101563fcc85e15558_34441_388799_large.jpg","medium":"ff808181563ba11101563fcc85e15558_34441_839602_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":667,"name":"files[]","h":500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_42271_168558_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_42271_580460_original.jpg","large":"ff808181563ba11101563fcc85e15558_42271_989274_large.jpg","medium":"ff808181563ba11101563fcc85e15558_42271_993894_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64738108962774,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1469949183000,"swimmingPool":false,"activeViewCount":5,"completeStreetName":"Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F18K3rZ4","promoted_b":false,"title":"2 BHK House for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"A G Sekhar","street":"Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","propertyType":"RENT","secondaryTitle":"Independent House, Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","aea__":{"NEGOTIATED_RENT":{"display_value":"","value":"13000"},"KEY_COLLECTION_DATE":{"value":"03\u002F06\u002F2024, 12:53:16\t"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181563ba11101563fcc85e15558\u002Fff808181563ba11101563fcc85e15558_18325_760724_medium.jpg","showRequestPhoto":false,"lastActivationDate":1711526828000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"highLights":[{"title":"0.8 km from Indiranagar","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FIndiranagar?searchParam=W3sibGF0IjoxMi45NzgyNjE5LCJsb24iOjc3LjYzODUyNTcwMDAwMDAyLCJzaG93TWFwIjpmYWxzZSwicGxhY2VJZCI6IkNoSUpaYlpkLXFRV3Jqc1JlN0c1YTlHVVo5VSIsInBsYWNlTmFtZSI6IkluZGlyYW5hZ2FyIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Indiranagar&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.980853909067433000,77.647381089627740000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":0,"localityTruncated":"Kadiranapalya","negotiable":true,"type":"BHK2","ownerId":"8a9f8cc38d3418f0018d34bf784c3fd1","rent":0,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8cc38d3418f0018d34bf78a63fd3_100527_606860_original.jpg","id":"8a9f8cc38d3418f0018d34bf78a63fd3","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Lease In Kadiranapalya","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Kadiranapalya","active":true,"propertyScore":1715503922000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":1500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-lease-in-kadiranapalya-bangalore-for-rs-1500000\u002F8a9f8cc38d3418f0018d34bf78a63fd3\u002Fdetail","activationDate":1715158322000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.982525755026344,"reactivationReqDate":1715157814000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":true,"address":"Independent House, Sarvagnanagar, near MMA Kababs & Rolls, Kadiranapalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Lease In K...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"0","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1715158324000,"balconies":0,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_392757_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_606860_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_696535_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_362421_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":true,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"h":1280,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_188744_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_894599_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_926788_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_755509_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":960,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_241736_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_854979_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_318029_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_743721_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1280,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_533744_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_831678_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_810705_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_22153_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":960,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_517826_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_642100_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_572709_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_186611_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"15 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.63388143846166,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"1 MG-Lido Mall\",\"longitude\":77.62041479999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-1_mg_lido_mall_ulsoor_bangalore\",\"latitude\":12.973290400000002,\"id\":\"ChIJQ_NRvx4RrjsRMM9IFxUFU5g\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"INOX Lido\",\"longitude\":77.6212762,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_lido_ulsoor_bangalore\",\"latitude\":12.9732369,\"id\":\"ChIJ75mhkZwWrjsRNOJD_eyez5U\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Big Bazaar\",\"longitude\":77.6216231,\"seoUrl\":\"\u002Fvillas-for-rent-near-big_bazaar_ulsoor_bangalore\",\"latitude\":12.973165,\"id\":\"ChIJ5w8fjpwWrjsRxpw9UXdCKws\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Metro Station\",\"longitude\":77.62669620000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-lingayana_palya_metro_station_bangalore\",\"latitude\":12.9776185,\"id\":\"ChIJx5mwCJkWrjsRolYMLLCnSpM\"}]","indexName":"nobroker","creationDate":1705986980000,"swimmingPool":false,"activeViewCount":2,"completeStreetName":"Sarvagnanagar, near MMA Kababs & Rolls","totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["COMPANY"],"facingDesc":"East","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1yKryY3","promoted_b":false,"title":"2 BHK House for Lease In Kadiranapalya","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"sekar Mallikaraj","street":"Sarvagnanagar, near MMA Kababs & Rolls","propertyType":"RENT","secondaryTitle":"Independent House, Sarvagnanagar, near MMA Kababs & Rolls","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8cc38d3418f0018d34bf78a63fd3\u002F8a9f8cc38d3418f0018d34bf78a63fd3_100527_362421_medium.jpg","showRequestPhoto":false,"lastActivationDate":1710320869000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.982525755026344000,77.633881438461660000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Swami Vivekananda Metro Sta...","negotiable":true,"type":"BHK3","ownerId":"ff8081816d190fe4016d1a2a5305130b","rent":32000,"propertySize":925,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816d190fe4016d1a2a535f130c_28454_513572_original.jpg","propertyCode":"NB-36066","id":"ff8081816d190fe4016d1a2a535f130c","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Swami Vivekananda Metro Station","buyerProperty":false,"locality":"Swami Vivekananda Metro Station","active":true,"waterSupply":"CORPORATION","propertyScore":1718688467000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":160000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-swami-vivekananda-metro-station-bangalore-for-rs-32000\u002Fff8081816d190fe4016d1a2a535f130c\u002Fdetail","activationDate":1715969704000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9856284,"reactivationReqDate":1715959752000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, Swami Vivekananda Metro Station, near Resurrection Church, Swami Vivekananda Metro Station, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Sw...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"32,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1716402609000,"balconies":1,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_28454_765350_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_28454_513572_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_28454_509523_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_28454_364793_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_12958_362884_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_12958_230403_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_12958_248286_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_12958_526859_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_25020_607500_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_25020_942903_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_25020_80170_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_25020_443792_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_84222_413876_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_84222_914976_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_84222_498636_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_84222_255474_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_37169_130434_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_37169_102704_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_37169_15027_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_37169_266371_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_12711_926209_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_12711_154464_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_12711_46069_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_12711_97055_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_53072_795254_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_53072_907815_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_53072_945560_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_53072_888568_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_26329_524240_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_26329_305526_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_26329_304666_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_26329_851682_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_74094_484096_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_74094_958964_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_74094_474813_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_74094_785647_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_88513_638578_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_88513_820815_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_88513_520052_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_88513_910043_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_19038_558338_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_19038_284703_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_19038_602337_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_19038_216567_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":449,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_95389_417718_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_95389_925854_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_95389_854511_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_95389_164435_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_43640_322993_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_43640_733315_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_43640_660394_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_43640_942036_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.6 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64446420000002,"dateOnly":"2024-05-23T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1568102044000,"swimmingPool":false,"listingVerified":true,"activeViewCount":5,"completeStreetName":"Swami Vivekananda Metro Station, near Resurrection Church","totalFloor":1,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"West","ownerDescription":"A one storeyed Residential House is located in Bangalore for family purpose. The space is airy and has friendly neighbourhood and two furball frenzy in the ground floor. Major key facilities are located nearby such metro station (SV Road metro station) at 150m. The age of construction for this Residential House is between 10 to 15 years.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1JLvBC5","promoted_b":false,"verifiedByUser":"ff8081816d190fe4016d1a2a5305130b","title":"3 BHK House for Rent In Swami Vivekananda Metro Station","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"tr suraj","street":"Swami Vivekananda Metro Station, near Resurrection Church","propertyType":"RENT","secondaryTitle":"Independent House, Swami Vivekananda Metro Station, near Resurrection Church","aea__":{"SECONDARY_NUMBER":{"value":"ODEzNTM0OTgyOQ=="},"DIRECTIONS":{"value":"Landmark: Near SV road metro station\n1st main 4th cross, near Jos clothing"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816d190fe4016d1a2a535f130c\u002Fff8081816d190fe4016d1a2a535f130c_28454_364793_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715960107000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.985628400000000000,77.644464200000020000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK3","ownerId":"ff80818166434ab3016643cab9fd3580","rent":22000,"propertySize":1150,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818166434ab3016643cabab03582_38691_383154_original.jpg","score":{"lastUpdatedDate":"2021-02-19T10:13:51+05:30","transit":8.4,"id":"ff80818166434ab3016643cabab03582","lifestyle":6.4},"id":"ff80818166434ab3016643cabab03582","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In New Tippasandra","buyerProperty":false,"locality":"New Tippasandra","active":true,"waterSupply":"CORPORATION","propertyScore":1718376317000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-22000\u002Fff80818166434ab3016643cabab03582\u002Fdetail","activationDate":1717512317000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.973307869761701,"reactivationReqDate":1717511826000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ne...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"22,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1717625245000,"balconies":1,"availableFrom":1607020200000,"photos":[{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_38691_545738_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_38691_383154_original.jpg","large":"ff80818166434ab3016643cabab03582_38691_352607_large.jpg","medium":"ff80818166434ab3016643cabab03582_38691_768774_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_40235_556072_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_40235_450159_original.jpg","large":"ff80818166434ab3016643cabab03582_40235_329225_large.jpg","medium":"ff80818166434ab3016643cabab03582_40235_926491_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_19769_351997_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_19769_915095_original.jpg","large":"ff80818166434ab3016643cabab03582_19769_18737_large.jpg","medium":"ff80818166434ab3016643cabab03582_19769_882460_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_52384_412264_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_52384_747523_original.jpg","large":"ff80818166434ab3016643cabab03582_52384_754959_large.jpg","medium":"ff80818166434ab3016643cabab03582_52384_558579_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_14822_579539_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_14822_589415_original.jpg","large":"ff80818166434ab3016643cabab03582_14822_371159_large.jpg","medium":"ff80818166434ab3016643cabab03582_14822_330008_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_8718_89112_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_8718_916962_original.jpg","large":"ff80818166434ab3016643cabab03582_8718_731397_large.jpg","medium":"ff80818166434ab3016643cabab03582_8718_865411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_62601_431482_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_62601_523677_original.jpg","large":"ff80818166434ab3016643cabab03582_62601_882963_large.jpg","medium":"ff80818166434ab3016643cabab03582_62601_645248_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64736926778232,"dateOnly":"2024-06-06T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","creationDate":1538735651000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"owner_sms_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"","ownerDescription":"If you love living in New Tippasandra then this home is just for you, at just 22,000 rupees this independent house could soon be your new home. Now rent a 3 BHK that is semi furnished at an unbeatable price, this home comes with plenty of comforts. This 700 sqft. home is on the 1st floor & comes with ample parking facility for car and bike. This home is well equipped with 2 wardrobes & also has 2 bathrooms.\n\nIf you need amenities such as Wi-Fi access you?ll be happy to note that this home has this & more.\n\nIf you are in need of any emergency services or medical assistance, you will be happy to note that Motherhood Hospital Indiranagar, Axon Speciality Hospital and ESI Hospital are very close by. With Tree House Play Group, EuroKids Pre-School Indiranagar and Sanfort - Playschool, Daycare, Kindergarten, Preschool Franchise in Bangalore, India close to this home, you?ll be able to provide your children with many options to choose from.\n\nWith Fame Shankarnag Chitra Mandira, Gopalan Cinemas & INOX Lido Mall close by, you can catch your favourite movies running & never worry about missing a show because of traffic. If you are looking for gifts, or just want to spoil yourself, 1 MG-Lido Mall, Gangarams book bureau and BDA Complex have a wide variety of things that you can choose from.\n\nThe ATM & bus stop are close by, you will find having money in hand & access to public transport very easy. With a petrol pump & super market your daily needs are easily fulfilled--","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002Fw44Qc","promoted_b":false,"title":"3 BHK House for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Anantha Krishna ","street":"HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","propertyType":"RENT","secondaryTitle":"Independent House, HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818166434ab3016643cabab03582\u002Fff80818166434ab3016643cabab03582_38691_768774_medium.jpg","showRequestPhoto":true,"lastActivationDate":1611126978000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973307869761701000,77.647369267782320000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718423738000,"furnishingDesc":"Semi","localityTruncated":"New Thippasandra","negotiable":false,"type":"RK1","ownerId":"ff80818168f513730168f531528b198e","rent":9000,"availableFrom":1722277800000,"photos":[{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_51829_901434_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_51829_814670_original.jpg","large":"ff80818168f513730168f531528f198f_51829_702515_large.jpg","medium":"ff80818168f513730168f531528f198f_51829_106379_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_46090_688958_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_46090_792396_original.jpg","large":"ff80818168f513730168f531528f198f_46090_923923_large.jpg","medium":"ff80818168f513730168f531528f198f_46090_178880_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_66359_96877_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_66359_956776_original.jpg","large":"ff80818168f513730168f531528f198f_66359_406383_large.jpg","medium":"ff80818168f513730168f531528f198f_66359_766499_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_70695_600436_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_70695_34438_original.jpg","large":"ff80818168f513730168f531528f198f_70695_112176_large.jpg","medium":"ff80818168f513730168f531528f198f_70695_318218_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_25350_528525_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_25350_885160_original.jpg","large":"ff80818168f513730168f531528f198f_25350_572592_large.jpg","medium":"ff80818168f513730168f531528f198f_25350_38192_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"propertySize":120,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818168f513730168f531528f198f_51829_814670_original.jpg","accomodationTypeDesc":"","formattedDeposit":"60,000","id":"ff80818168f513730168f531528f198f","state":"READY","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK Flat for Rent In New Thippasandra","longitude":77.64742806163075,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fflats-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fflats-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fflats-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"New Thippasandra","active":true,"creationDate":1550301876000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","propertyScore":1718164538000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":4,"mapped":false,"lift":false,"deposit":60000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-new-thippasandra-bangalore-for-rs-9000\u002Fff80818168f513730168f531528f198f\u002Fdetail","activationDate":1718423738000,"leaseTypeNew":["BACHELOR"],"facingDesc":"North-West","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1QHq316","latitude":12.973145043139112,"promoted_b":false,"reactivationReqDate":1718423425000,"facing":"NW","title":"1 RK Flat for Rent In New Thippasandra","nbLocality":"New Tippasandra","leaseType":"BACHELOR","society":"Standalone building","premium":false,"ownerName":"Ramchandra","street":"HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","propertyType":"RENT","secondaryTitle":"Standalone building, HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818168f513730168f531528f198f\u002Fff80818168f513730168f531528f198f_51829_106379_medium.jpg","showRequestPhoto":true,"lastActivationDate":1702736184000,"forLease":false,"address":"Standalone building, HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya, New Thippasandra, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK Flat for Rent In New ...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"9,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.973145043139112000,77.647428061630750000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK2","ownerId":"8a9f82ca7028d2c301702d0ceb911f55","rent":40000,"propertySize":995,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb1827ab86dca017ab871960200ec_20821_221581_original.jpg","id":"8a9fb1827ab86dca017ab871960200ec","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Sri Sri Paradise New Thippasandra for Rent In New Tippasandra","powerBackup":"FULL","buyerProperty":false,"locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717650977000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":140000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-40000\u002F8a9fb1827ab86dca017ab871960200ec\u002Fdetail","activationDate":1716527777000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":true,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":true,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":true,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.97313756336153,"reactivationReqDate":1714027395000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":false,"address":"New Tippasandra, Bengaluru, Karnataka, India, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"2 BHK Flat In Sri Sri Parad...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718027245000,"balconies":2,"availableFrom":1716575400000,"photos":[{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_20821_633810_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_20821_221581_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_20821_89352_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_20821_924744_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_25790_723112_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_25790_114002_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_25790_971294_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_25790_472317_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_74953_38482_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_74953_942166_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_74953_175875_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_74953_371475_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_64547_617190_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_64547_521635_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_64547_52108_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_64547_23112_medium.jpg"},"disAffinity":35,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_7028_115554_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_7028_872556_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_7028_336810_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_7028_501500_medium.jpg"},"disAffinity":35,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_72272_513766_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_72272_776085_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_72272_746856_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_72272_946222_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_62770_347005_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_62770_454107_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_62770_71217_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_62770_294139_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_66630_798565_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_66630_663146_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_66630_245846_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_66630_11658_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_41072_46750_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_41072_993819_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_41072_525127_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_41072_838407_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_97114_911087_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_97114_108153_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_97114_204964_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_97114_133664_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_79142_470023_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_79142_559547_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_79142_260449_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_79142_115095_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_47789_485050_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_47789_643229_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_47789_312760_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_47789_420665_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_39699_980063_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_39699_608493_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_39699_534918_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_39699_75204_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_38566_259051_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_38566_516312_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_38566_782071_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_38566_328288_medium.jpg"},"disAffinity":17,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_70825_125646_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_70825_810755_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_70825_636967_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_70825_959566_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_43440_246437_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_43440_62393_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_43440_353958_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_43440_892600_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_37645_760943_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_37645_286491_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_37645_75060_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_37645_75349_medium.jpg"},"disAffinity":15,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_64163_30054_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_64163_913263_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_64163_666626_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_64163_277796_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_82862_726672_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_82862_741958_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_82862_871316_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_82862_501271_medium.jpg"},"disAffinity":11,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_80006_513977_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_80006_859961_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_80006_591429_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_80006_327358_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_31620_799717_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_31620_96196_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_31620_339965_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_31620_685032_medium.jpg"},"disAffinity":9,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_81815_284895_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_81815_839261_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_81815_410895_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_81815_994543_medium.jpg"},"disAffinity":5,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_40639_468530_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_40639_485402_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_40639_889378_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_40639_619397_medium.jpg"},"disAffinity":0,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_19601_377831_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_19601_513040_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_19601_126996_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_19601_165706_medium.jpg"},"disAffinity":0,"displayPic":false,"w":1024,"name":"image","h":576,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_34930_722251_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_34930_279907_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_34930_931550_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_34930_163340_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_3446_559270_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_3446_310751_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_3446_698298_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_3446_128237_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_35238_729192_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_35238_206401_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_35238_443158_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_35238_995475_medium.jpg"},"disAffinity":0,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_77649_556693_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_77649_790880_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_77649_794583_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_77649_954805_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_19056_38714_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_19056_523022_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_19056_942730_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_19056_488316_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.4 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64743538990396,"dateOnly":"2024-06-10T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fflats-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","maintenanceAmount":2500,"creationDate":1626592090000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":"New Tippasandra, Bengaluru, Karnataka, India","totalFloor":4,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1jPw9j5","promoted_b":false,"title":"2 BHK Flat In Sri Sri Paradise New Thippasandra for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Sri Sri Paradise New Thippasandra ","ownerName":"Parthasaradhi Reddy","street":"New Tippasandra, Bengaluru, Karnataka, India","propertyType":"RENT","secondaryTitle":"New Tippasandra, Bengaluru, Karnataka, India","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb1827ab86dca017ab871960200ec\u002F8a9fb1827ab86dca017ab871960200ec_20821_924744_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714029739000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973137563361530000,77.647435389903960000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Maruthi Sevanagar","negotiable":false,"type":"BHK1","ownerId":"8a9fea8285052699018505750d1053fd","rent":12000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f058287c187010187c1a3423610da_98814_217337_original.jpg","score":{"lastUpdatedDate":"2023-04-27T13:17:26+05:30","transit":7.5,"id":"8a9f058287c187010187c1a3423610da","lifestyle":7.3},"id":"8a9f058287c187010187c1a3423610da","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Maruthi Sevanagar","buyerProperty":false,"locality":"Maruthi Sevanagar","active":true,"waterSupply":"CORPORATION","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":50000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-maruthi-sevanagar-bangalore-for-rs-12000\u002F8a9f058287c187010187c1a3423610da\u002Fdetail","activationDate":1718537448000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.985758721165597,"reactivationReqDate":1718173441000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station, Maruthi Sevanagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Ma...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718537449000,"balconies":0,"availableFrom":1717525800000,"photos":[{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_98814_772629_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_98814_217337_original.jpg","large":"8a9f058287c187010187c1a3423610da_98814_699851_large.jpg","medium":"8a9f058287c187010187c1a3423610da_98814_535703_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_86802_828049_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_86802_83912_original.jpg","large":"8a9f058287c187010187c1a3423610da_86802_623262_large.jpg","medium":"8a9f058287c187010187c1a3423610da_86802_854442_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_76137_878837_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_76137_632739_original.jpg","large":"8a9f058287c187010187c1a3423610da_76137_218474_large.jpg","medium":"8a9f058287c187010187c1a3423610da_76137_435205_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_37400_881541_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_37400_189516_original.jpg","large":"8a9f058287c187010187c1a3423610da_37400_474040_large.jpg","medium":"8a9f058287c187010187c1a3423610da_37400_140767_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"50,000","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64472153588086,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fvillas-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1682580915000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Old Madras Road-C V Raman Nagar","url":"flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"},{"name":"1 BHK","url":"1bhk-flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["COMPANY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1RYYXS5","promoted_b":false,"title":"1 BHK House for Rent In Maruthi Sevanagar","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"M Chethan","street":"Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f058287c187010187c1a3423610da\u002F8a9f058287c187010187c1a3423610da_98814_535703_medium.jpg","showRequestPhoto":false,"lastActivationDate":1718173950000,"videoUnit":[],"tenantTypeDesc":"","location":"12.985758721165597000,77.644721535880860000","maintenance":false,"sharedAccomodation":false},{"propertyAge":3,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"New Baiyyappanahalli ","negotiable":true,"type":"BHK2","ownerId":"ff808181539dd84101539e2354240785","rent":20000,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f86d070e321d60170e34a1a6d11ff_88813_217138_original.jpg","score":{"lastUpdatedDate":"2020-09-16T16:37:35+05:30","transit":5.3,"id":"8a9f86d070e321d60170e34a1a6d11ff","lifestyle":5.9},"id":"8a9f86d070e321d60170e34a1a6d11ff","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In New Baiyyappanahalli ","buyerProperty":false,"inactiveReason":"LETOUT","locality":"New Baiyyappanahalli ","active":true,"waterSupply":"CORP_BORE","propertyScore":1716968708000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":100000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-baiyyappanahalli--bangalore-for-rs-20000\u002F8a9f86d070e321d60170e34a1a6d11ff\u002Fdetail","futureActivationDate":"2024-07-14T00:00:00+05:30","activationDate":1718178308000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9858453,"reactivationReqDate":1718167196000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"standalone building, 9th cross near Vivekanandha Metro Railway Station,, New Baiyyappanahalli , bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat for Rent In New...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718178309000,"availableFrom":1717439400000,"photos":[{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_88813_950946_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_88813_217138_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_88813_420622_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_88813_908871_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_14526_405927_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_14526_317232_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_14526_191274_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_14526_721870_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_73761_828879_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_73761_859589_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_73761_141086_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_73761_788033_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_87843_533100_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_87843_163283_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_87843_522275_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_87843_662447_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_94399_50466_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_94399_280837_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_94399_24806_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_94399_12193_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_69893_22631_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_69893_240882_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_69893_536083_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_69893_95646_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_75306_123892_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_75306_319607_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_75306_70580_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_75306_315539_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_87782_762924_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_87782_259029_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_87782_661276_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_87782_111568_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.6448454,"dateOnly":"2024-06-12T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fflats-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1584361249000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":"9th cross near Vivekanandha Metro Railway Station,","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Old Madras Road-C V Raman Nagar","url":"flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"ownerDescription":"5 years old building, Near Vivekananda metro station and NH4 (400 mts), both Kaveri and bore well water available, covered totally with grill for safety , two wheeler parking, , lift available.","facingDesc":"North","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1fjVJn5","promoted_b":false,"title":"2 BHK Flat for Rent In New Baiyyappanahalli ","nbLocality":"Old Madras Road-C V Raman Nagar","society":"standalone building","ownerName":"Prabhakar","street":"9th cross near Vivekanandha Metro Railway Station,","propertyType":"RENT","secondaryTitle":"standalone building, 9th cross near Vivekanandha Metro Railway Station,","floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f86d070e321d60170e34a1a6d11ff\u002F8a9f86d070e321d60170e34a1a6d11ff_88813_908871_medium.jpg","showRequestPhoto":true,"lastActivationDate":1717493708000,"inactiveReasonDesc":"Rented","videoUnit":[],"tenantTypeDesc":"","location":"12.985845300000000000,77.644845400000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717226375000,"balconies":0,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli Extension","negotiable":false,"type":"BHK1","ownerId":"ff8081814f93cf00014f9a000d181d15","rent":15000,"availableFrom":1717180200000,"photos":[],"propertySize":500,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","id":"8a9f8bfa6fb498de016fc19009ff5531","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Baiyyappanahalli Extension","longitude":77.64518003988955,"dateOnly":"2024-06-01T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fvillas-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"Baiyyappanahalli Extension","active":true,"creationDate":1579500440000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"new Baiyappanahalli Near Swami Vivekananda Metro Station","propertyScore":1717310977000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":150000,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-baiyyappanahalli-extension-bangalore-for-rs-15000\u002F8a9f8bfa6fb498de016fc19009ff5531\u002Fdetail","activationDate":1717224577000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1gpkKP5","latitude":12.98569022089517,"promoted_b":false,"reactivationReqDate":1717224232000,"title":"1 BHK House for Rent In Baiyyappanahalli Extension","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"siddiq","street":"new Baiyappanahalli Near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, new Baiyappanahalli Near Swami Vivekananda Metro Station","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1685250938000,"forLease":false,"address":"Independent House, new Baiyappanahalli Near Swami Vivekananda Metro Station, Baiyyappanahalli Extension, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"15,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":false},"location":"12.985690220895170000,77.645180039889550000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":0,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"New Tippasandra","negotiable":false,"type":"BHK2","ownerId":"ff8081816284bca701628562b3112e97","rent":22000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb3827a4c4c72017a4c9c893e3502_777820_427223_original.jpg","id":"8a9fb3827a4c4c72017a4c9c893e3502","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Lease In New Tippasandra","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"New Tippasandra","active":true,"waterSupply":"CORPORATION","propertyScore":1714025579000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":2500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-lease-in-new-tippasandra-bangalore-for-rs-2500000\u002F8a9fb3827a4c4c72017a4c9c893e3502\u002Fdetail","activationDate":1716099179000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.973128336763018,"reactivationReqDate":1716098091000,"facing":"NE","leaseType":"ANYONE","premium":false,"forLease":true,"address":"Independent House, 4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Lease In N...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"22,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716609206000,"balconies":1,"availableFrom":1716057000000,"photos":[{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_777820_154903_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_777820_427223_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_777820_954954_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_777820_850666_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":true,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_25392_420561_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_25392_504342_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_25392_485920_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_25392_271296_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_244456_772033_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_244456_601754_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_244456_515569_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_244456_207649_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_289817_172688_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_289817_730492_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_289817_365479_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_289817_792631_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_242299_402313_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_242299_314143_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_242299_171915_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_242299_343369_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_819516_899379_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_819516_116890_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_819516_450930_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_819516_392626_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_928609_47825_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_928609_328252_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_928609_721752_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_928609_358439_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_366135_804925_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_366135_920349_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_366135_341030_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_366135_951667_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"25 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64765676612329,"dateOnly":"2024-05-25T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","creationDate":1624782965000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"North-East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1LBhvD5","promoted_b":false,"title":"2 BHK House for Lease In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Akhilan","street":"4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","propertyType":"RENT","secondaryTitle":"Independent House, 4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","aea__":{"SECONDARY_NUMBER":{"value":"OTE2NDIzOTEzOA=="}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb3827a4c4c72017a4c9c893e3502\u002F8a9fb3827a4c4c72017a4c9c893e3502_777820_850666_medium.jpg","showRequestPhoto":false,"lastActivationDate":1669702516000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973128336763018000,77.647656766123290000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":3,"localityTruncated":"80, 4th Cross Rd, HAL 3rd S...","negotiable":true,"type":"BHK2","ownerId":"ff80818155f3f9b90155f89c311475d6","rent":24000,"propertySize":750,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f92ed7592b80801759312ed8730f6_11280_753083_original.jpg","score":{"lastUpdatedDate":"2021-02-18T13:14:50+05:30","transit":8.2,"id":"8a9f92ed7592b80801759312ed8730f6","lifestyle":6.3},"propertyCode":"NB-1057469","id":"8a9f92ed7592b80801759312ed8730f6","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In 80, 4th Cross Rd, Hal 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"80, 4th Cross Rd, HAL 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","active":true,"waterSupply":"CORPORATION","propertyScore":1715063880000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":90000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-80-4th-cross-rd-hal-3rd-stage-colony-new-515-new-tippasandra-bengaluru-karnataka-560075-india-bangalore-for-rs-24000\u002F8a9f92ed7592b80801759312ed8730f6\u002Fdetail","activationDate":1714718280000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":true,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.974437930524891,"reactivationReqDate":1714717766000,"facing":"N","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, hal 3rd stage,opp Indira Canteen, New Thippasandra, 80, 4th Cross Rd, HAL 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India, bangalore","sponsored":false,"documentName":"property","propertyTitleTruncated":"2 BHK House for Rent In 80...","formattedMaintenanceAmount":"400","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"24,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":true,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718536847000,"balconies":1,"availableFrom":1718476200000,"photos":[{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_11280_150728_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_11280_753083_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_11280_435224_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_11280_783347_medium.jpg"},"disAffinity":999,"displayPic":true,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_10553_763973_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_10553_244839_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_10553_732675_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_10553_926784_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_965_113836_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_965_576350_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_965_956034_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_965_853285_medium.jpg"},"disAffinity":0,"subState":"IRIS_FAILED","displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_14118_594576_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_14118_664563_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_14118_755785_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_14118_927229_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_11965_694753_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_11965_431281_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_11965_398319_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_11965_81383_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_16456_163388_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_16456_282958_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_16456_959278_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_16456_116666_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_95996_590580_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_95996_232919_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_95996_378721_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_95996_166864_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_29246_527912_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_29246_180896_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_29246_513035_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_29246_490843_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"90,000","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64853779226542,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\": \"ChIJywiewU8RrjsR6WUvFJFcNvU\", \"name\": \"Bagmane Tech Park\", \"longitude\": 77.65807290000001, \"seoUrl\": \"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\", \"latitude\": 12.978763, \"id\": \"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}, {\"localityId\": \"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\", \"name\": \"RMZ Infinity\", \"longitude\": 77.661129, \"seoUrl\": \"\u002Fvillas-for-rent-near-rmz_infinity_bangalore\", \"latitude\": 12.994054400000001, \"id\": \"ChIJOer_PTYRrjsR_1OAbl3VReg\"}, {\"localityId\": \"ChIJkQN3GKQWrjsRNhBQJrhGD7U\", \"name\": \"Toit Micro Brewery\", \"longitude\": 77.6405569, \"seoUrl\": \"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\", \"latitude\": 12.9792514, \"id\": \"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"}, {\"localityId\": \"ChIJX9OZehsUrjsRjlnPb6fKWYI\", \"name\": \"Barbeque Nation\", \"longitude\": 77.6414312, \"seoUrl\": \"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\", \"latitude\": 12.9626563, \"id\": \"ChIJK7aICxoVrjsRnjZbF0TjvNo\"}, {\"localityId\": \"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\", \"name\": \"Baiyappanahalli Metro Station\", \"longitude\": 77.6524562, \"seoUrl\": \"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\", \"latitude\": 12.9907481, \"id\": \"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":400,"creationDate":1604490293000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"hal 3rd stage,opp Indira Canteen, New Thippasandra","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"North","ownerDescription":"1 Hall, 1 kitchen, 2 bedroom, 1 Pooja room, 1 attached toilet, balcony-","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1WFnnq5","promoted_b":false,"title":"2 BHK House for Rent In 80, 4th Cross Rd, Hal 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Prashanthkumar S","street":"hal 3rd stage,opp Indira Canteen, New Thippasandra","propertyType":"RENT","secondaryTitle":"Independent House, hal 3rd stage,opp Indira Canteen, New Thippasandra","aea__":{"DIRECTIONS":{"value":"opp to indira canteen corner building"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f92ed7592b80801759312ed8730f6\u002F8a9f92ed7592b80801759312ed8730f6_11280_783347_medium.jpg","showRequestPhoto":false,"lastActivationDate":1649390408000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974437930524891000,77.648537792265420000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718506811000,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli ","negotiable":false,"type":"BHK2","ownerId":"8a9f998276b70af50176b77334d8202f","rent":10000,"availableFrom":1723660200000,"photos":[{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_451653_662112_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_451653_152187_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_451653_415199_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_451653_291471_medium.jpg"},"disAffinity":0,"displayPic":true,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_36977_276217_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_36977_750276_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_36977_671556_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_36977_723416_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_47725_689677_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_47725_846368_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_47725_33950_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_47725_864845_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"duplicate":false,"title":"","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa78276b70af70176b775bd881fda_451653_152187_original.jpg","accomodationTypeDesc":"","formattedDeposit":"1 Lac","id":"8a9fa78276b70af70176b775bd881fda","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Baiyyappanahalli ","longitude":77.64508561367857,"dateOnly":"2024-06-16T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fvillas-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"Baiyyappanahalli ","active":true,"creationDate":1609395715000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"Old Madras Rd, near Swami Vivekanada Metro Station","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":100000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-baiyyappanahalli--bangalore-for-rs-10000\u002F8a9fa78276b70af70176b775bd881fda\u002Fdetail","activationDate":1718506810000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1p19R16","latitude":12.98582865180645,"promoted_b":false,"reactivationReqDate":1718506495000,"title":"2 BHK House for Rent In Baiyyappanahalli ","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"BALAJI","street":"Old Madras Rd, near Swami Vivekanada Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Old Madras Rd, near Swami Vivekanada Metro Station","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa78276b70af70176b775bd881fda\u002F8a9fa78276b70af70176b775bd881fda_451653_291471_medium.jpg","showRequestPhoto":false,"lastActivationDate":1673945712000,"forLease":false,"address":"Independent House, Old Madras Rd, near Swami Vivekanada Metro Station, Baiyyappanahalli , bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"10,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.985828651806450000,77.645085613678570000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Baiyyappanahalli","negotiable":false,"type":"BHK1","ownerId":"ff80818167b1206c0167b13732c70cde","rent":12000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818167b1206c0167b13732db0cdf_57679_147623_original.jpg","score":{"lastUpdatedDate":"2018-12-19T16:28:01+05:30","transit":8.9,"id":"ff80818167b1206c0167b13732db0cdf","lifestyle":7.8},"id":"ff80818167b1206c0167b13732db0cdf","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Baiyyappanahalli","buyerProperty":false,"inactiveReason":"ALREADY_LISTED","locality":"Baiyyappanahalli","active":true,"waterSupply":"CORP_BORE","propertyScore":1716959377000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-baiyyappanahalli-bangalore-for-rs-12000\u002Fff80818167b1206c0167b13732db0cdf\u002Fdetail","activationDate":1715749777000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.986025669228184,"reactivationReqDate":1715682400000,"facing":"N","leaseType":"BACHELOR_FEMALE","premium":false,"forLease":false,"address":"Independent House, New Baiyyappanahalli Extension near Swami Vivekananda Metro Station, Baiyyappanahalli, bangalore","sponsored":false,"documentName":"property","propertyTitleTruncated":"1 BHK House for Rent In Ba...","formattedMaintenanceAmount":"","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1716707091000,"balconies":0,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_57679_321322_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_57679_147623_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_57679_436185_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_57679_785930_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1600,"name":"files[]","h":720,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_3536_637709_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_3536_972337_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_3536_650741_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_3536_52380_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_25574_927986_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_25574_844156_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_25574_278739_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_25574_903241_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_1466_684796_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_1466_104461_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_1466_671046_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_1466_630783_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_48450_451069_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_48450_917888_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_48450_925997_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_48450_282182_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64474851415561,"dateOnly":"2024-05-26T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1544866443000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":"New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Maruthi Sevanagar","url":"flats-for-rent-in-maruthi_sevanagar_bangalore"},{"name":"1 RK","url":"1rk-flats-for-rent-in-maruthi_sevanagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"North","ownerDescription":"The house is unfurnished.It has easy access to market, schools, hospitals, banks and ATM's as well.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1crcGz5","promoted_b":false,"title":"1 BHK House for Rent In Baiyyappanahalli","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"RAVI S","street":"New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","aea__":{"FRM_UPLOADED_PHOTO":{"value":"26\u002F05\u002F2024 12:24 PM"},"SIMILAR_UNIT_AVAILABLE":{"display_value":"NO","value":"NO"},"SECONDARY_NUMBER":{"value":"9036535280"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Near Ganesha temple and walkable to sami Vivekananda's metro "}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818167b1206c0167b13732db0cdf\u002Fff80818167b1206c0167b13732db0cdf_57679_785930_medium.jpg","showRequestPhoto":false,"lastActivationDate":1683986454000,"inactiveReasonDesc":"Already Listed","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.986025669228184000,77.644748514155610000","maintenance":false,"sharedAccomodation":false},{"propertyAge":6,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":4,"localityTruncated":"Indiranagar","negotiable":false,"type":"BHK4","ownerId":"ff808181629564ba016299171fa85b2a","rent":200000,"propertySize":2400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181629564ba0162993851976605_98313_532342_original.jpg","id":"ff808181629564ba0162993851976605","state":"READY","adminEvent":"PROPERTY","bathroom":4,"propertyTitle":"4 BHK Flat In T Kamalnath Naidu for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Indiranagar","active":true,"waterSupply":"CORPORATION","propertyScore":1717766837000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":2000000,"detailUrl":"\u002Fproperty\u002F4-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-200000\u002Fff808181629564ba0162993851976605\u002Fdetail","activationDate":1717766837000,"amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":true,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":true,\"HK\":false,\"PB\":true,\"VP\":false}","typeDesc":"4 BHK","city":"bangalore","latitude":12.985701320342903,"reactivationReqDate":1717766393000,"facing":"NE","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"4 BHK Flat In T Kamalnath N...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_4.png","formattedPrice":"2 Lacs","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":true,"RWH":true,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":true,"PARK":true,"SC":false,"PB":true,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1717766837000,"balconies":2,"availableFrom":1717698600000,"photos":[{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_98313_572965_thumbnail.jpg","original":"ff808181629564ba0162993851976605_98313_532342_original.jpg","large":"ff808181629564ba0162993851976605_98313_748773_large.jpg","medium":"ff808181629564ba0162993851976605_98313_189628_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_35831_644357_thumbnail.jpg","original":"ff808181629564ba0162993851976605_35831_631450_original.jpg","large":"ff808181629564ba0162993851976605_35831_845919_large.jpg","medium":"ff808181629564ba0162993851976605_35831_810847_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_31173_664181_thumbnail.jpg","original":"ff808181629564ba0162993851976605_31173_346221_original.jpg","large":"ff808181629564ba0162993851976605_31173_284529_large.jpg","medium":"ff808181629564ba0162993851976605_31173_694805_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_47098_254335_thumbnail.jpg","original":"ff808181629564ba0162993851976605_47098_889908_original.jpg","large":"ff808181629564ba0162993851976605_47098_917902_large.jpg","medium":"ff808181629564ba0162993851976605_47098_285875_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_36395_125743_thumbnail.jpg","original":"ff808181629564ba0162993851976605_36395_146731_original.jpg","large":"ff808181629564ba0162993851976605_36395_170517_large.jpg","medium":"ff808181629564ba0162993851976605_36395_514017_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_38596_763061_thumbnail.jpg","original":"ff808181629564ba0162993851976605_38596_700870_original.jpg","large":"ff808181629564ba0162993851976605_38596_402103_large.jpg","medium":"ff808181629564ba0162993851976605_38596_291754_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_75545_458488_thumbnail.jpg","original":"ff808181629564ba0162993851976605_75545_587550_original.jpg","large":"ff808181629564ba0162993851976605_75545_768473_large.jpg","medium":"ff808181629564ba0162993851976605_75545_47523_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_35956_131950_thumbnail.jpg","original":"ff808181629564ba0162993851976605_35956_466275_original.jpg","large":"ff808181629564ba0162993851976605_35956_851221_large.jpg","medium":"ff808181629564ba0162993851976605_35956_95280_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"20 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64550497499137,"dateOnly":"2024-06-07T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fflats-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Gopalan Cinemas\",\"longitude\":77.6618806,\"seoUrl\":\"\u002Fflats-for-rent-near-gopalan_cinemas_c_v_raman_nagar_bangalore\",\"latitude\":12.9929898,\"id\":\"ChIJrZrY-0kRrjsR8bCOajjYFPg\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1522989027000,"swimmingPool":false,"activeViewCount":2,"completeStreetName":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","totalFloor":2,"mapped":false,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North-East","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F18dFMD3","promoted_b":false,"title":"4 BHK Flat In T Kamalnath Naidu for Rent In Indiranagar","nbLocality":"Old Madras Road-C V Raman Nagar","society":"T Kamalnath Naidu ","ownerName":"sunitha.bhasker","street":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","propertyType":"RENT","secondaryTitle":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181629564ba0162993851976605\u002Fff808181629564ba0162993851976605_98313_189628_medium.jpg","showRequestPhoto":true,"lastActivationDate":1713064570000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.985701320342903000,77.645504974991370000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717240674000,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli Extension","negotiable":false,"type":"RK1","ownerId":"ff8081814f93cf00014f9a000d181d15","rent":13000,"availableFrom":1717180200000,"photos":[],"propertySize":210,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"80,000","id":"8a9fad838c56a76f018c579664877a9f","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK House for Rent In Baiyyappanahalli Extension","longitude":77.64498976048421,"dateOnly":"2024-06-01T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fvillas-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"Baiyyappanahalli Extension","active":true,"creationDate":1702276523000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","propertyScore":1717062735000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":0,"mapped":false,"lift":false,"deposit":80000,"gym":false,"detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-baiyyappanahalli-extension-bangalore-for-rs-13000\u002F8a9fad838c56a76f018c579664877a9f\u002Fdetail","reactivationSource":"PROPERTY_DASHBOARD","activationDate":1717235535000,"leaseTypeNew":["BACHELOR"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1FJFXP5","latitude":12.986148822863619,"promoted_b":false,"reactivationReqDate":1717224210000,"title":"1 RK House for Rent In Baiyyappanahalli Extension","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"BACHELOR","society":"Independent House","premium":false,"ownerName":"siddiq","street":"Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1702276821000,"forLease":false,"address":"Independent House, Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station, Baiyyappanahalli Extension, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK House for Rent In Bai...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"13,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.986148822863619000,77.644989760484210000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK2","ownerId":"ff80818154a96cab0154aa0d39751570","rent":35000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818154a96cab0154aa0d39b61571_34487_272645_original.jpg","score":{"lastUpdatedDate":"2019-04-24T19:36:32+05:30","transit":5.6,"id":"ff80818154a96cab0154aa0d39b61571","lifestyle":9.1},"id":"ff80818154a96cab0154aa0d39b61571","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Maruthi Mahal Apts for Rent In New Tippasandra","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717403307000,"accurateLocation":true,"pinCode":560075,"filterPreferenceScore":0,"lift":true,"deposit":300000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-35000\u002Fff80818154a96cab0154aa0d39b61571\u002Fdetail","activationDate":1717057707000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.974344224452594,"reactivationReqDate":1717054588000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"2 BHK Flat In Maruthi Mahal...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":true,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":true,"SC":false,"PB":true,"CPA":true,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1717195961000,"balconies":1,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_34487_557378_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_34487_272645_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_34487_773099_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_34487_869576_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_41839_445320_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_41839_496076_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_41839_766927_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_41839_607483_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_93811_720193_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_93811_383496_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_93811_673313_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_93811_799954_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_43336_173885_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_43336_269419_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_43336_760722_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_43336_351416_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_88472_537812_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_88472_837051_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_88472_853129_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_88472_386411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64891727809709,"dateOnly":"2024-06-01T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","maintenanceAmount":2500,"creationDate":1463141874000,"swimmingPool":false,"activeViewCount":2,"completeStreetName":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"East","ownerDescription":"2 bed room apartment semi furnished with 2 bed room , 2 bath room attached and common ,living room hall ,kitchen , work area ,balcony available for lease only. Wardrobes , crockery stand, TV stand ,lofts , gas fabrication etc with chimney","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1f5nnN5","promoted_b":false,"title":"2 BHK Flat In Maruthi Mahal Apts for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Maruthi Mahal Apts","ownerName":"Harikrishnan SN","street":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","propertyType":"RENT","secondaryTitle":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","aea__":{"SECONDARY_NUMBER":{"value":"9886131979"},"DIRECTIONS":{"value":""}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818154a96cab0154aa0d39b61571\u002Fff80818154a96cab0154aa0d39b61571_34487_869576_medium.jpg","showRequestPhoto":true,"lastActivationDate":1549624817000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974344224452594000,77.648917278097090000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":2,"localityTruncated":"Jogupalya","negotiable":false,"type":"BHK3","ownerId":"ff8081815e6f0bfa015e7060d5ce300a","rent":30000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816cccfcbb016ccd96b29208c6_51189_17901_original.jpg","id":"ff8081816cccfcbb016ccd96b29208c6","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Jogupalya","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jogupalya","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":300000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jogupalya-bangalore-for-rs-30000\u002Fff8081816cccfcbb016ccd96b29208c6\u002Fdetail","activationDate":1718528538000,"amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.974884225050978,"reactivationReqDate":1718527973000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple , Jogupalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Jo...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"30,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718528539000,"balconies":1,"availableFrom":1723660200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_51189_20597_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_51189_17901_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_51189_66955_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_51189_84322_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_15601_50909_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_15601_17836_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_15601_64901_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_15601_93524_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_74152_63328_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_74152_50885_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_74152_81072_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_74152_23989_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_21241_60247_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_21241_3874_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_21241_37243_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_21241_34411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_50287_71289_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_50287_84036_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_50287_83763_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_50287_35818_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"jogupalya_bangalore","lastUpdateString":"Today","longitude":77.63177264481784,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","creationDate":1566817301000,"swimmingPool":false,"activeViewCount":4,"completeStreetName":"9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","totalFloor":1,"mapped":false,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1fqx826","promoted_b":false,"title":"3 BHK House for Rent In Jogupalya","nbLocality":"Jogupalya","society":"Independent House","ownerName":"K.N Ramachandra","street":"9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","propertyType":"RENT","secondaryTitle":"Independent House, 9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816cccfcbb016ccd96b29208c6\u002Fff8081816cccfcbb016ccd96b29208c6_51189_84322_medium.jpg","showRequestPhoto":true,"lastActivationDate":1590239409000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974884225050978000,77.631772644817840000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717082882000,"furnishingDesc":"Unfurnished","localityTruncated":"J C Nagar","negotiable":false,"type":"RK1","ownerId":"8a9faf82808d3d2101808d82b3b02252","rent":3000,"availableFrom":1714933800000,"photos":[],"propertySize":200,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"15,000","id":"8a9faf82808d3d2101808d82b3c92253","state":"READY","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK House for Rent In J C Nagar","longitude":77.63786189999999,"dateOnly":"2024-05-30T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"J C Nagar","active":true,"creationDate":1651641595000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":" 16th Main Rd KSRTC Layout near Nalanda High School","propertyScore":1714543502000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":15000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-j-c-nagar-bangalore-for-rs-3000\u002F8a9faf82808d3d2101808d82b3c92253\u002Fdetail","activationDate":1714975502000,"leaseTypeNew":["BACHELOR"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1zDcBq7","latitude":12.9876391,"promoted_b":false,"reactivationReqDate":1714975068000,"title":"1 RK House for Rent In J C Nagar","nbLocality":"Sarvagnanagar","leaseType":"BACHELOR","society":"Independent House","premium":false,"ownerName":"ramchandra ","street":" 16th Main Rd KSRTC Layout near Nalanda High School","propertyType":"RENT","secondaryTitle":"Independent House, 16th Main Rd KSRTC Layout near Nalanda High School","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1710318385000,"forLease":false,"address":"Independent House, 16th Main Rd KSRTC Layout near Nalanda High School, J C Nagar, bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK House for Rent In J C...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"3,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.987639100000000000,77.637861899999990000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":-1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1716968206000,"furnishingDesc":"Semi","localityTruncated":"J C Nagar","negotiable":false,"type":"BHK1","ownerId":"8a9fcd82814220a60181427968323d73","rent":15000,"availableFrom":1716921000000,"photos":[{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_94101_173771_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_94101_648204_original.jpg","large":"8a9fcd82814220a60181427969273d74_94101_817208_large.jpg","medium":"8a9fcd82814220a60181427969273d74_94101_933079_medium.jpg"},"disAffinity":1034,"subReasons":"","displayPic":true,"w":720,"name":"files[]","h":512,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":596,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_25540_10750_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_25540_852214_original.jpg","large":"8a9fcd82814220a60181427969273d74_25540_373933_large.jpg","medium":"8a9fcd82814220a60181427969273d74_25540_511137_medium.jpg"},"disAffinity":50,"subReasons":"","subState":"","displayPic":false,"w":1152,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_14193_312120_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_14193_115232_original.jpg","large":"8a9fcd82814220a60181427969273d74_14193_433710_large.jpg","medium":"8a9fcd82814220a60181427969273d74_14193_359412_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":504,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_77994_963551_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_77994_502507_original.jpg","large":"8a9fcd82814220a60181427969273d74_77994_66262_large.jpg","medium":"8a9fcd82814220a60181427969273d74_77994_601839_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":514,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_83601_259934_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_83601_685462_original.jpg","large":"8a9fcd82814220a60181427969273d74_83601_158263_large.jpg","medium":"8a9fcd82814220a60181427969273d74_83601_456356_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":514,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_55797_363340_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_55797_127862_original.jpg","large":"8a9fcd82814220a60181427969273d74_55797_568537_large.jpg","medium":"8a9fcd82814220a60181427969273d74_55797_739143_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":502,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_30356_206299_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_30356_661012_original.jpg","large":"8a9fcd82814220a60181427969273d74_30356_500542_large.jpg","medium":"8a9fcd82814220a60181427969273d74_30356_311257_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":510,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_26842_294634_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_26842_832524_original.jpg","large":"8a9fcd82814220a60181427969273d74_26842_885640_large.jpg","medium":"8a9fcd82814220a60181427969273d74_26842_79443_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":502,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1038,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_32600_89591_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_32600_84039_original.jpg","large":"8a9fcd82814220a60181427969273d74_32600_894510_large.jpg","medium":"8a9fcd82814220a60181427969273d74_32600_663278_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":512,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_78289_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_80024_original.jpg","large":"8a9fcd82814220a60181427969273d74_42122_large.jpg","medium":"8a9fcd82814220a60181427969273d74_60785_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":720,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":1032,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_37179_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_71851_original.jpg","large":"8a9fcd82814220a60181427969273d74_60147_large.jpg","medium":"8a9fcd82814220a60181427969273d74_11525_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_41285_353038_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_41285_936568_original.jpg","large":"8a9fcd82814220a60181427969273d74_41285_888521_large.jpg","medium":"8a9fcd82814220a60181427969273d74_41285_325631_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1035,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1038,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_2440_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_19875_original.jpg","large":"8a9fcd82814220a60181427969273d74_65411_large.jpg","medium":"8a9fcd82814220a60181427969273d74_16574_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_34662_695306_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_34662_76993_original.jpg","large":"8a9fcd82814220a60181427969273d74_34662_513207_large.jpg","medium":"8a9fcd82814220a60181427969273d74_34662_433470_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1032,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_36436_147500_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_36436_842412_original.jpg","large":"8a9fcd82814220a60181427969273d74_36436_328045_large.jpg","medium":"8a9fcd82814220a60181427969273d74_36436_733001_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1032,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1035,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_61183_510186_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_61183_124927_original.jpg","large":"8a9fcd82814220a60181427969273d74_61183_884524_large.jpg","medium":"8a9fcd82814220a60181427969273d74_61183_422534_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1032,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_77176_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_60382_original.jpg","large":"8a9fcd82814220a60181427969273d74_16445_large.jpg","medium":"8a9fcd82814220a60181427969273d74_59940_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1026,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_22369_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_48411_original.jpg","large":"8a9fcd82814220a60181427969273d74_31677_large.jpg","medium":"8a9fcd82814220a60181427969273d74_70852_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fcd82814220a60181427969273d74_94101_648204_original.jpg","accomodationTypeDesc":"","formattedDeposit":"8 Lacs","id":"8a9fcd82814220a60181427969273d74","state":"READY","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat In Standalone Building for Lease In J C Nagar","longitude":77.63786189999999,"dateOnly":"2024-05-29T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fflats-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fflats-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","locality":"J C Nagar","active":true,"creationDate":1654677662000,"swimmingPool":false,"activeViewCount":2,"propertyScore":1717659405000,"completeStreetName":"1st Main Road, near Ganesha temple ","accurateLocation":true,"filterPreferenceScore":0,"totalFloor":5,"mapped":false,"lift":false,"deposit":800000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-lease-in-j-c-nagar-bangalore-for-rs-800000\u002F8a9fcd82814220a60181427969273d74\u002Fdetail","activationDate":1716968205000,"leaseTypeNew":["FAMILY"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1VWt715","latitude":12.9876391,"promoted_b":false,"reactivationReqDate":1716957268000,"title":"1 BHK Flat In Standalone Building for Lease In J C Nagar","nbLocality":"Sarvagnanagar","leaseType":"FAMILY","society":"standalone building ","premium":false,"ownerName":"chandru raj ","street":"1st Main Road, near Ganesha temple ","propertyType":"RENT","secondaryTitle":"1st Main Road, near Ganesha temple ","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fcd82814220a60181427969273d74\u002F8a9fcd82814220a60181427969273d74_94101_933079_medium.jpg","showRequestPhoto":false,"lastActivationDate":1710510706000,"forLease":true,"address":"1st Main Road, near Ganesha temple , J C Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"15,000","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.987639100000000000,77.637861899999990000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"68\u002F1, Kadiranapalya, Indira...","negotiable":false,"type":"BHK2","ownerId":"ff8081815752a21b015755b970173ad9","rent":15000,"propertySize":850,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8bc38fadb4da018fadd875c308ab_43802_910839_original.jpg","score":{"lastUpdatedDate":"2024-05-25T13:20:28+05:30","transit":3.5,"id":"8a9f8bc38fadb4da018fadd875c308ab","lifestyle":7.3},"id":"8a9f8bc38fadb4da018fadd875c308ab","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In 681, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"68\u002F1, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","active":true,"waterSupply":"CORP_BORE","propertyScore":1716793021000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-68-1-kadiranapalya-indiranagar-bengaluru-j-c-nagar-karnataka-560038-india-bangalore-for-rs-15000\u002F8a9f8bc38fadb4da018fadd875c308ab\u002Fdetail","activationDate":1716620221000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.987639219163267,"facing":"S","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, 20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar , 68\u002F1, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In 68...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"15,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716648803000,"balconies":0,"photos":[{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_43802_29062_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_43802_910839_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_43802_485578_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_43802_853530_medium.jpg"},"disAffinity":1019,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":450,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_17552_828401_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_17552_712888_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_17552_414337_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_17552_14306_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_64139_667291_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_64139_208349_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_64139_932275_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_64139_203323_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_88269_185574_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_88269_605124_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_88269_137195_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_88269_148430_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","subState":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_3627_101339_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_3627_677135_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_3627_810561_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_3627_569894_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_791_560226_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_791_923790_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_791_173837_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_791_855824_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_96945_965055_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_96945_504230_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_96945_26570_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_96945_764467_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":337,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_44571_666568_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_44571_865689_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_44571_735274_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_44571_115046_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":450,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"availableFrom":1716575400000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","longitude":77.63786192983389,"dateOnly":"2024-05-25T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","creationDate":1716608595000,"swimmingPool":false,"activeViewCount":4,"completeStreetName":"20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","mapped":false,"totalFloor":3,"gym":false,"leaseTypeNew":["COMPANY"],"facingDesc":"South","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1vT1CJ5","promoted_b":false,"title":"2 BHK House for Rent In 681, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","nbLocality":"Sarvagnanagar","society":"Independent House","ownerName":"Nizamuddin Fakruddin","street":"20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","propertyType":"RENT","secondaryTitle":"Independent House, 20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"SECONDARY_NUMBER":{"value":"NjM2MjM0NzY5MQ=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"It's on the main church road j.c.nagar. next to Balaji home needs store"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8bc38fadb4da018fadd875c308ab\u002F8a9f8bc38fadb4da018fadd875c308ab_43802_853530_medium.jpg","floor":0,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.987639219163267000,77.637861929833890000","maintenance":false,"sharedAccomodation":false},{"propertyAge":1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718529201000,"balconies":2,"furnishingDesc":"Semi","localityTruncated":"Jogupalya","negotiable":false,"type":"BHK2","ownerId":"ff8081815bedef9f015bf1b0af942770","rent":35000,"availableFrom":1719772200000,"photos":[],"propertySize":1100,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-16T15:12:38+05:30","transit":7.1,"id":"8a9f8e43901c6d6e01901cd46173146c","lifestyle":8.2},"formattedDeposit":"1.5 Lacs","id":"8a9f8e43901c6d6e01901cd46173146c","state":"READY","localityId":"jogupalya_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Standalone Building for Rent In Jogupalya","longitude":77.63238194579877,"dateOnly":"2024-06-16T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fflats-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fflats-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fflats-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","locality":"Jogupalya","active":true,"creationDate":1718470599000,"swimmingPool":false,"waterSupply":"CORP_BORE","activeViewCount":3,"completeStreetName":"Halasuru, near Temple Tree Apartment","accurateLocation":true,"filterPreferenceScore":0,"totalFloor":3,"mapped":false,"lift":false,"deposit":150000,"gym":false,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jogupalya-bangalore-for-rs-35000\u002F8a9f8e43901c6d6e01901cd46173146c\u002Fdetail","reactivationSource":"PROPERTY_DASHBOARD","activationDate":1718529195000,"leaseTypeNew":["FAMILY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1SQ4926","latitude":12.973223466234932,"promoted_b":false,"reactivationReqDate":1718526710000,"facing":"E","title":"2 BHK Flat In Standalone Building for Rent In Jogupalya","nbLocality":"Jogupalya","leaseType":"FAMILY","society":"standalone building ","premium":false,"ownerName":"K Sheshadri","street":"Halasuru, near Temple Tree Apartment","propertyType":"RENT","secondaryTitle":"Halasuru, near Temple Tree Apartment","aea__":{"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"forLease":false,"address":"Halasuru, near Temple Tree Apartment, Jogupalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[],"formattedPrice":"35,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.973223466234932000,77.632381945798770000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"Indiranagar","negotiable":false,"type":"BHK2","ownerId":"ff80818155915073015591daa8d008c6","rent":40000,"propertySize":850,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818155914e890155922239b42a9b_3621_970222_original.jpg","score":{"lastUpdatedDate":"2024-02-23T16:22:22+05:30","transit":8.3,"id":"ff80818155914e890155922239b42a9b","lifestyle":8.2},"propertyCode":"NB-6868","id":"ff80818155914e890155922239b42a9b","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In Indiranagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714623706000,"accurateLocation":true,"pinCode":560075,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-40000\u002Fff80818155914e890155922239b42a9b\u002Fdetail","activationDate":1715142106000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":false,\"RWH\":true,\"STP\":false,\"HK\":true,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.979253944686246,"reactivationReqDate":1715138595000,"facing":"E","leaseType":"FAMILY","premium":false,"forLease":false,"address":"standalone building, 80 Feet Road, Near Sapna Book House, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"2 BHK Flat for Rent In Ind...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715142113000,"balconies":1,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_3621_966446_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_3621_970222_original.jpg","large":"ff80818155914e890155922239b42a9b_3621_664378_large.jpg","medium":"ff80818155914e890155922239b42a9b_3621_774045_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_8956_397354_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_8956_133942_original.jpg","large":"ff80818155914e890155922239b42a9b_8956_703788_large.jpg","medium":"ff80818155914e890155922239b42a9b_8956_274213_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_79699_501269_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_79699_155905_original.jpg","large":"ff80818155914e890155922239b42a9b_79699_254675_large.jpg","medium":"ff80818155914e890155922239b42a9b_79699_254399_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_4503_211935_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_4503_20733_original.jpg","large":"ff80818155914e890155922239b42a9b_4503_404189_large.jpg","medium":"ff80818155914e890155922239b42a9b_4503_718790_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155914e890155922239b42a9b_10853_621180_thumbnail.jpg","original":"ff80818155914e890155922239b42a9b_10853_509433_original.jpg","large":"ff80818155914e890155922239b42a9b_10853_454650_large.jpg","medium":"ff80818155914e890155922239b42a9b_10853_46381_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.6465675104227,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1467035564000,"swimmingPool":false,"listingVerified":false,"activeViewCount":3,"completeStreetName":"80 Feet Road, Near Sapna Book House","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"New Tippasandra","url":"flats-for-rent-in-new_thippasandra_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-new_thippasandra_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"East","ownerDescription":"The house is semi furnished with wardrobes and modular kitchen with chimney. It has easy access to market, schools, hospitals, banks ATM's and 5 min walk to Vivekananda metro station as well.\nspeciality\nVivekananda metro station- 2 mins\nmother hood\ncmh hospital- 1 mins walk\ngopalan signature mall- 500 mtrs","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F16WJ2z4","promoted_b":false,"title":"2 BHK Flat for Rent In Indiranagar","nbLocality":"New Tippasandra","society":"standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Road, Near Sapna Book House","propertyType":"RENT","secondaryTitle":"standalone building, 80 Feet Road, Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818155914e890155922239b42a9b\u002Fff80818155914e890155922239b42a9b_3621_774045_medium.jpg","showRequestPhoto":true,"lastActivationDate":1710134239000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979253944686246000,77.646567510422700000","maintenance":true,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":1,"localityTruncated":"Indira Nagar","negotiable":false,"type":"BHK1","ownerId":"ff80818155915073015591daa8d008c6","rent":30000,"propertySize":650,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818155915073015591daa94208c7_58071_889466_original.jpg","propertyCode":"NB-1005550","id":"ff80818155915073015591daa94208c7","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat for Rent In Indira Nagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714536911000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-30000\u002Fff80818155915073015591daa94208c7\u002Fdetail","activationDate":1715141711000,"amenities":"{\"INTERNET\":true,\"POOL\":false,\"AC\":false,\"RWH\":true,\"STP\":false,\"LIFT\":false,\"HK\":false,\"FS\":false,\"VP\":false,\"INTERCOM\":false,\"GYM\":false,\"PB\":true,\"CLUB\":false,\"SERVANT\":false,\"SC\":false,\"GP\":false,\"CPA\":false,\"PARK\":false,\"SECURITY\":false}","typeDesc":"1 BHK","city":"bangalore","latitude":12.979056583948227,"reactivationReqDate":1715141372000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":"standalone building, 80 Feet Rd Near Sapna Book House, Indira Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"1 BHK Flat for Rent In Ind...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"30,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":true,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715141713000,"balconies":1,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_58071_939560_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_58071_889466_original.jpg","large":"ff80818155915073015591daa94208c7_58071_568849_large.jpg","medium":"ff80818155915073015591daa94208c7_58071_549829_medium.jpg"},"disAffinity":912,"displayPic":true,"w":562,"name":"image","h":750,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_10650_228191_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_10650_90425_original.jpg","large":"ff80818155915073015591daa94208c7_10650_718511_large.jpg","medium":"ff80818155915073015591daa94208c7_10650_52001_medium.jpg"},"disAffinity":16,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_65809_899129_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_65809_183088_original.jpg","large":"ff80818155915073015591daa94208c7_65809_760335_large.jpg","medium":"ff80818155915073015591daa94208c7_65809_717498_medium.jpg"},"disAffinity":15,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_396800_367699_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_396800_266177_original.jpg","large":"ff80818155915073015591daa94208c7_396800_758805_large.jpg","medium":"ff80818155915073015591daa94208c7_396800_74772_medium.jpg"},"disAffinity":14,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_32934_699382_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_32934_359197_original.jpg","large":"ff80818155915073015591daa94208c7_32934_958352_large.jpg","medium":"ff80818155915073015591daa94208c7_32934_966442_medium.jpg"},"disAffinity":13,"displayPic":false,"w":750,"name":"image","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_45194_754656_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_45194_124879_original.jpg","large":"ff80818155915073015591daa94208c7_45194_925864_large.jpg","medium":"ff80818155915073015591daa94208c7_45194_322423_medium.jpg"},"disAffinity":13,"displayPic":false,"w":562,"name":"image","h":750,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_90568_151082_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_90568_138250_original.jpg","large":"ff80818155915073015591daa94208c7_90568_769994_large.jpg","medium":"ff80818155915073015591daa94208c7_90568_335348_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818155915073015591daa94208c7_88001_331805_thumbnail.jpg","original":"ff80818155915073015591daa94208c7_88001_94272_original.jpg","large":"ff80818155915073015591daa94208c7_88001_261598_large.jpg","medium":"ff80818155915073015591daa94208c7_88001_980493_medium.jpg"},"disAffinity":-86,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664111779098,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1467030874000,"swimmingPool":true,"listingVerified":false,"activeViewCount":4,"completeStreetName":"80 Feet Rd Near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"East","ownerDescription":"Live- in bachelors not allowed\t\tWith an ATM, petrol pump & super market near this home, you'll never have to go far for these essentials. Access to bus station & pharmacies is very easy & convenient from this house.\nIf you are a frequent traveller, then you'll be happy to note that train station is less than 10 minutes from this house. only married couple,or working professional bachelors are also allowed. its for long duration minimum 11 months.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1xwbGV4","promoted_b":false,"title":"1 BHK Flat for Rent In Indira Nagar","nbLocality":"New Tippasandra","society":"standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Rd Near Sapna Book House","propertyType":"RENT","secondaryTitle":"standalone building, 80 Feet Rd Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818155915073015591daa94208c7\u002Fff80818155915073015591daa94208c7_58071_549829_medium.jpg","showRequestPhoto":false,"lastActivationDate":1713347792000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979056583948227000,77.646641117790980000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":3,"localityTruncated":" Indiranagar","negotiable":true,"type":"BHK2","ownerId":"8a9f908276ccb9cd0176cdbe687c6534","rent":18000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f908276ccb9cd0176cdbe689f6536_4174_554754_original.jpg","id":"8a9f908276ccb9cd0176cdbe689f6536","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":" Indiranagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1717882675000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in--indiranagar-bangalore-for-rs-18000\u002F8a9f908276ccb9cd0176cdbe689f6536\u002Fdetail","activationDate":1716932275000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9791265,"reactivationReqDate":1716893852000,"facing":"S","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 80 feet road near Sapna Book House, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In I...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716932344000,"balconies":0,"availableFrom":1716834600000,"photos":[{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_4174_489559_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_4174_554754_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_4174_955332_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_4174_646412_medium.jpg"},"disAffinity":15,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_37253_725129_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_37253_153319_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_37253_57252_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_37253_26070_medium.jpg"},"disAffinity":11,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_19819_759534_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_19819_718919_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_19819_966282_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_19819_680779_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_73084_703527_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_73084_325731_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_73084_652256_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_73084_798231_medium.jpg"},"disAffinity":9,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_25935_754213_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_25935_780038_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_25935_192140_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_25935_224307_medium.jpg"},"disAffinity":5,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_25993_559142_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_25993_827489_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_25993_515903_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_25993_468297_medium.jpg"},"disAffinity":1,"displayPic":false,"w":562,"name":"image","h":750,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_28282_812431_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_28282_312965_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_28282_645349_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_28282_372573_medium.jpg"},"disAffinity":0,"displayPic":false,"w":750,"name":"image","h":562,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_21322_131683_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_21322_945020_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_21322_672593_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_21322_664262_medium.jpg"},"disAffinity":0,"displayPic":false,"w":750,"name":"image","h":562,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_39113_301302_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_39113_570961_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_39113_963920_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_39113_870138_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_39664_423408_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_39664_501822_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_39664_51272_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_39664_768427_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_22983_494084_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_22983_311405_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_22983_859863_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_22983_623969_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f908276ccb9cd0176cdbe689f6536_40846_145592_thumbnail.jpg","original":"8a9f908276ccb9cd0176cdbe689f6536_40846_743959_original.jpg","large":"8a9f908276ccb9cd0176cdbe689f6536_40846_898730_large.jpg","medium":"8a9f908276ccb9cd0176cdbe689f6536_40846_673160_medium.jpg"},"disAffinity":-2,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664379999999,"dateOnly":"2024-05-29T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1609769577000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":" 80 feet road near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"South","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1J4QsM5","promoted_b":false,"title":"2 BHK House for Rent In Indiranagar","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"kailash","street":" 80 feet road near Sapna Book House","propertyType":"RENT","secondaryTitle":"Independent House, 80 feet road near Sapna Book House","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f908276ccb9cd0176cdbe689f6536\u002F8a9f908276ccb9cd0176cdbe689f6536_4174_646412_medium.jpg","showRequestPhoto":true,"lastActivationDate":1712240121000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979126500000000000,77.646643799999990000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":1,"localityTruncated":"Indira Nagar","negotiable":false,"type":"RK1","ownerId":"ff80818155915073015591daa8d008c6","rent":20000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816c8fe4dd016c931f9483064a_73430_693136_original.jpg","propertyCode":"NB-1017663","id":"ff8081816c8fe4dd016c931f9483064a","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK Flat for Rent In Indira Nagar","powerBackup":"Partial","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Indira Nagar","active":true,"waterSupply":"CORP_BORE","propertyScore":1714275039000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-20000\u002Fff8081816c8fe4dd016c931f9483064a\u002Fdetail","activationDate":1715139039000,"amenities":"{\"FS\":false,\"GP\":true,\"CPA\":false,\"PB\":false,\"PARK\":false,\"SERVANT\":false,\"SC\":false,\"POOL\":false,\"LIFT\":false,\"HK\":true,\"INTERCOM\":false,\"VP\":false,\"GYM\":false,\"CLUB\":false,\"INTERNET\":true,\"AC\":false,\"RWH\":true,\"STP\":false,\"SECURITY\":false}","typeDesc":"1 RK","city":"bangalore","latitude":12.979103654983414,"reactivationReqDate":1715138561000,"facing":"E","leaseType":"BACHELOR_FEMALE","premium":false,"forLease":false,"address":"Standalone building, 80 Feet Rd Near Sapna Book House, Indira Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"1,500","propertyTitleTruncated":"1 RK Flat for Rent In Indi...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"20,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":true,"INTERNET":true,"LIFT":false,"GP":true,"CLUB":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"VP":false,"GYM":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1715139041000,"balconies":0,"availableFrom":1715106600000,"photos":[{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_73430_587370_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_73430_693136_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_73430_80566_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_73430_629783_medium.jpg"},"disAffinity":1013,"displayPic":true,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_27014_921645_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_27014_486205_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_27014_922731_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_27014_615879_medium.jpg"},"disAffinity":16,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_223569_932815_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_223569_408653_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_223569_528309_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_223569_965967_medium.jpg"},"disAffinity":14,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_814649_689478_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_814649_961645_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_814649_723933_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_814649_101057_medium.jpg"},"disAffinity":12,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_45755_593936_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_45755_516121_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_45755_985927_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_45755_281521_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_6765_508327_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_6765_619247_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_6765_260357_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_6765_524648_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_88136_97553_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_88136_322945_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_88136_813645_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_88136_124389_medium.jpg"},"disAffinity":-84,"displayPic":false,"w":4128,"name":"image","h":3096,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816c8fe4dd016c931f9483064a_413272_829592_thumbnail.jpg","original":"ff8081816c8fe4dd016c931f9483064a_413272_972726_original.jpg","large":"ff8081816c8fe4dd016c931f9483064a_413272_944730_large.jpg","medium":"ff8081816c8fe4dd016c931f9483064a_413272_743531_medium.jpg"},"disAffinity":-88,"displayPic":false,"w":3096,"name":"image","h":4128,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64664729781195,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":1500,"creationDate":1565836416000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"80 Feet Rd Near Sapna Book House","totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["BACHELOR"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1pNcfB4","promoted_b":false,"title":"1 RK Flat for Rent In Indira Nagar","nbLocality":"New Tippasandra","society":"Standalone building","ownerName":"Venkatesh Srinivasan","street":"80 Feet Rd Near Sapna Book House","propertyType":"RENT","secondaryTitle":"Standalone building, 80 Feet Rd Near Sapna Book House","aea__":{"NON_VEG_ALLOWED":{"display_value":"No","value":"ONLY_VEG"}},"floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816c8fe4dd016c931f9483064a\u002Fff8081816c8fe4dd016c931f9483064a_73430_629783_medium.jpg","showRequestPhoto":false,"lastActivationDate":1713347462000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.979103654983414000,77.646647297811950000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":false,"type":"BHK2","ownerId":"ff808181563ba11101563fcc85865557","rent":18000,"propertySize":800,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181563ba11101563fcc85e15558_18325_903996_original.jpg","propertyCode":"NB-1368342","id":"ff808181563ba11101563fcc85e15558","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In New Tippasandra","powerBackup":"None","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717672677000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":180000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-18000\u002Fff808181563ba11101563fcc85e15558\u002Fdetail","activationDate":1716808318000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":true,\"GP\":false,\"PARK\":true,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.980853909067433,"reactivationReqDate":1716806269000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall, New Tippasandra, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ne...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"18,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":true,"SC":true,"PB":false,"CPA":true,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718462562000,"balconies":1,"availableFrom":1718994600000,"photos":[{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_18325_900632_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_18325_903996_original.jpg","large":"ff808181563ba11101563fcc85e15558_18325_74988_large.jpg","medium":"ff808181563ba11101563fcc85e15558_18325_760724_medium.jpg"},"disAffinity":1029,"subReasons":"","displayPic":true,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_34808_301678_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_34808_600201_original.jpg","large":"ff808181563ba11101563fcc85e15558_34808_940431_large.jpg","medium":"ff808181563ba11101563fcc85e15558_34808_114881_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_85153_788515_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_85153_741870_original.jpg","large":"ff808181563ba11101563fcc85e15558_85153_629651_large.jpg","medium":"ff808181563ba11101563fcc85e15558_85153_931995_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_34441_357106_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_34441_113093_original.jpg","large":"ff808181563ba11101563fcc85e15558_34441_388799_large.jpg","medium":"ff808181563ba11101563fcc85e15558_34441_839602_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":false,"w":667,"name":"files[]","h":500,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff808181563ba11101563fcc85e15558_42271_168558_thumbnail.jpg","original":"ff808181563ba11101563fcc85e15558_42271_580460_original.jpg","large":"ff808181563ba11101563fcc85e15558_42271_989274_large.jpg","medium":"ff808181563ba11101563fcc85e15558_42271_993894_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":562,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.8 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64738108962774,"dateOnly":"2024-06-15T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1469949183000,"swimmingPool":false,"activeViewCount":5,"completeStreetName":"Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","totalFloor":2,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F18K3rZ4","promoted_b":false,"title":"2 BHK House for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"A G Sekhar","street":"Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","propertyType":"RENT","secondaryTitle":"Independent House, Shri Krishna Temple Rd, Michael Palaya Near Sapna book stall","aea__":{"NEGOTIATED_RENT":{"display_value":"","value":"13000"},"KEY_COLLECTION_DATE":{"value":"03\u002F06\u002F2024, 12:53:16\t"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181563ba11101563fcc85e15558\u002Fff808181563ba11101563fcc85e15558_18325_760724_medium.jpg","showRequestPhoto":false,"lastActivationDate":1711526828000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"highLights":[{"title":"0.8 km from Indiranagar","category":"subway_station","redirectionUrl":"\u002Fproperty\u002Frent\u002Fbangalore\u002FIndiranagar?searchParam=W3sibGF0IjoxMi45NzgyNjE5LCJsb24iOjc3LjYzODUyNTcwMDAwMDAyLCJzaG93TWFwIjpmYWxzZSwicGxhY2VJZCI6IkNoSUpaYlpkLXFRV3Jqc1JlN0c1YTlHVVo5VSIsInBsYWNlTmFtZSI6IkluZGlyYW5hZ2FyIiwiY2l0eSI6ImJhbmdhbG9yZSJ9XQ==&city=bangalore&locality=Indiranagar&searchViaMetro=true"}],"colour":"GREEN","tenantTypeDesc":"","location":"12.980853909067433000,77.647381089627740000","maintenance":false,"sharedAccomodation":false},{"propertyAge":0,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":0,"localityTruncated":"Kadiranapalya","negotiable":true,"type":"BHK2","ownerId":"8a9f8cc38d3418f0018d34bf784c3fd1","rent":0,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8cc38d3418f0018d34bf78a63fd3_100527_606860_original.jpg","id":"8a9f8cc38d3418f0018d34bf78a63fd3","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Lease In Kadiranapalya","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Kadiranapalya","active":true,"propertyScore":1715503922000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":1500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-lease-in-kadiranapalya-bangalore-for-rs-1500000\u002F8a9f8cc38d3418f0018d34bf78a63fd3\u002Fdetail","activationDate":1715158322000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.982525755026344,"reactivationReqDate":1715157814000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":true,"address":"Independent House, Sarvagnanagar, near MMA Kababs & Rolls, Kadiranapalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Lease In K...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"0","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1715158324000,"balconies":0,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_392757_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_606860_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_696535_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_100527_362421_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":true,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"h":1280,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_188744_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_894599_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_926788_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_879477_755509_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":960,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_241736_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_854979_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_318029_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_846175_743721_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1280,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_533744_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_831678_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_810705_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_399756_22153_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":960,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_517826_thumbnail.jpg","original":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_642100_original.jpg","large":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_572709_large.jpg","medium":"8a9f8cc38d3418f0018d34bf78a63fd3_861249_186611_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"15 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.63388143846166,"dateOnly":"2024-05-08T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"1 MG-Lido Mall\",\"longitude\":77.62041479999998,\"seoUrl\":\"\u002Fvillas-for-rent-near-1_mg_lido_mall_ulsoor_bangalore\",\"latitude\":12.973290400000002,\"id\":\"ChIJQ_NRvx4RrjsRMM9IFxUFU5g\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"INOX Lido\",\"longitude\":77.6212762,\"seoUrl\":\"\u002Fvillas-for-rent-near-inox_lido_ulsoor_bangalore\",\"latitude\":12.9732369,\"id\":\"ChIJ75mhkZwWrjsRNOJD_eyez5U\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Big Bazaar\",\"longitude\":77.6216231,\"seoUrl\":\"\u002Fvillas-for-rent-near-big_bazaar_ulsoor_bangalore\",\"latitude\":12.973165,\"id\":\"ChIJ5w8fjpwWrjsRxpw9UXdCKws\"},{\"localityId\":\"ChIJCWWE2o8WrjsRlAtQivbhJqU\",\"name\":\"Metro Station\",\"longitude\":77.62669620000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-lingayana_palya_metro_station_bangalore\",\"latitude\":12.9776185,\"id\":\"ChIJx5mwCJkWrjsRolYMLLCnSpM\"}]","indexName":"nobroker","creationDate":1705986980000,"swimmingPool":false,"activeViewCount":1,"completeStreetName":"Sarvagnanagar, near MMA Kababs & Rolls","totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["COMPANY"],"facingDesc":"East","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1yKryY3","promoted_b":false,"title":"2 BHK House for Lease In Kadiranapalya","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"sekar Mallikaraj","street":"Sarvagnanagar, near MMA Kababs & Rolls","propertyType":"RENT","secondaryTitle":"Independent House, Sarvagnanagar, near MMA Kababs & Rolls","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8cc38d3418f0018d34bf78a63fd3\u002F8a9f8cc38d3418f0018d34bf78a63fd3_100527_362421_medium.jpg","showRequestPhoto":false,"lastActivationDate":1710320869000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.982525755026344000,77.633881438461660000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Swami Vivekananda Metro Sta...","negotiable":true,"type":"BHK3","ownerId":"ff8081816d190fe4016d1a2a5305130b","rent":32000,"propertySize":925,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816d190fe4016d1a2a535f130c_28454_513572_original.jpg","propertyCode":"NB-36066","id":"ff8081816d190fe4016d1a2a535f130c","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Swami Vivekananda Metro Station","buyerProperty":false,"locality":"Swami Vivekananda Metro Station","active":true,"waterSupply":"CORPORATION","propertyScore":1718688467000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":160000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-swami-vivekananda-metro-station-bangalore-for-rs-32000\u002Fff8081816d190fe4016d1a2a535f130c\u002Fdetail","activationDate":1715969704000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"3 BHK","city":"bangalore","latitude":12.9856284,"reactivationReqDate":1715959752000,"facing":"W","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Independent House, Swami Vivekananda Metro Station, near Resurrection Church, Swami Vivekananda Metro Station, bangalore","sponsored":true,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Sw...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"32,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1716402609000,"balconies":1,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_28454_765350_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_28454_513572_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_28454_509523_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_28454_364793_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_12958_362884_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_12958_230403_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_12958_248286_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_12958_526859_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_25020_607500_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_25020_942903_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_25020_80170_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_25020_443792_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_84222_413876_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_84222_914976_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_84222_498636_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_84222_255474_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_37169_130434_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_37169_102704_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_37169_15027_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_37169_266371_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_12711_926209_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_12711_154464_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_12711_46069_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_12711_97055_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_53072_795254_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_53072_907815_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_53072_945560_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_53072_888568_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_26329_524240_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_26329_305526_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_26329_304666_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_26329_851682_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_74094_484096_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_74094_958964_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_74094_474813_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_74094_785647_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_88513_638578_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_88513_820815_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_88513_520052_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_88513_910043_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_19038_558338_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_19038_284703_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_19038_602337_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_19038_216567_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":449,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_95389_417718_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_95389_925854_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_95389_854511_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_95389_164435_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816d190fe4016d1a2a535f130c_43640_322993_thumbnail.jpg","original":"ff8081816d190fe4016d1a2a535f130c_43640_733315_original.jpg","large":"ff8081816d190fe4016d1a2a535f130c_43640_660394_large.jpg","medium":"ff8081816d190fe4016d1a2a535f130c_43640_942036_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.6 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64446420000002,"dateOnly":"2024-05-23T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1568102044000,"swimmingPool":false,"listingVerified":true,"activeViewCount":4,"completeStreetName":"Swami Vivekananda Metro Station, near Resurrection Church","totalFloor":1,"mapped":false,"gym":false,"listingNudge":"Owner Is Live","reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"facingDesc":"West","ownerDescription":"A one storeyed Residential House is located in Bangalore for family purpose. The space is airy and has friendly neighbourhood and two furball frenzy in the ground floor. Major key facilities are located nearby such metro station (SV Road metro station) at 150m. The age of construction for this Residential House is between 10 to 15 years.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1JLvBC5","promoted_b":false,"verifiedByUser":"ff8081816d190fe4016d1a2a5305130b","title":"3 BHK House for Rent In Swami Vivekananda Metro Station","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"tr suraj","street":"Swami Vivekananda Metro Station, near Resurrection Church","propertyType":"RENT","secondaryTitle":"Independent House, Swami Vivekananda Metro Station, near Resurrection Church","aea__":{"SECONDARY_NUMBER":{"value":"ODEzNTM0OTgyOQ=="},"DIRECTIONS":{"value":"Landmark: Near SV road metro station\n1st main 4th cross, near Jos clothing"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816d190fe4016d1a2a535f130c\u002Fff8081816d190fe4016d1a2a535f130c_28454_364793_medium.jpg","showRequestPhoto":false,"lastActivationDate":1715960107000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.985628400000000000,77.644464200000020000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK3","ownerId":"ff80818166434ab3016643cab9fd3580","rent":22000,"propertySize":1150,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818166434ab3016643cabab03582_38691_383154_original.jpg","score":{"lastUpdatedDate":"2021-02-19T10:13:51+05:30","transit":8.4,"id":"ff80818166434ab3016643cabab03582","lifestyle":6.4},"id":"ff80818166434ab3016643cabab03582","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In New Tippasandra","buyerProperty":false,"locality":"New Tippasandra","active":true,"waterSupply":"CORPORATION","propertyScore":1718376317000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":150000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-22000\u002Fff80818166434ab3016643cabab03582\u002Fdetail","activationDate":1717512317000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.973307869761701,"reactivationReqDate":1717511826000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Ne...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"22,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":true,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1717625245000,"balconies":1,"availableFrom":1607020200000,"photos":[{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_38691_545738_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_38691_383154_original.jpg","large":"ff80818166434ab3016643cabab03582_38691_352607_large.jpg","medium":"ff80818166434ab3016643cabab03582_38691_768774_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_40235_556072_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_40235_450159_original.jpg","large":"ff80818166434ab3016643cabab03582_40235_329225_large.jpg","medium":"ff80818166434ab3016643cabab03582_40235_926491_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_19769_351997_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_19769_915095_original.jpg","large":"ff80818166434ab3016643cabab03582_19769_18737_large.jpg","medium":"ff80818166434ab3016643cabab03582_19769_882460_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_52384_412264_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_52384_747523_original.jpg","large":"ff80818166434ab3016643cabab03582_52384_754959_large.jpg","medium":"ff80818166434ab3016643cabab03582_52384_558579_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_14822_579539_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_14822_589415_original.jpg","large":"ff80818166434ab3016643cabab03582_14822_371159_large.jpg","medium":"ff80818166434ab3016643cabab03582_14822_330008_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_8718_89112_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_8718_916962_original.jpg","large":"ff80818166434ab3016643cabab03582_8718_731397_large.jpg","medium":"ff80818166434ab3016643cabab03582_8718_865411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818166434ab3016643cabab03582_62601_431482_thumbnail.jpg","original":"ff80818166434ab3016643cabab03582_62601_523677_original.jpg","large":"ff80818166434ab3016643cabab03582_62601_882963_large.jpg","medium":"ff80818166434ab3016643cabab03582_62601_645248_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64736926778232,"dateOnly":"2024-06-06T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","creationDate":1538735651000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":1,"mapped":false,"gym":false,"reactivationSource":"owner_sms_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"","ownerDescription":"If you love living in New Tippasandra then this home is just for you, at just 22,000 rupees this independent house could soon be your new home. Now rent a 3 BHK that is semi furnished at an unbeatable price, this home comes with plenty of comforts. This 700 sqft. home is on the 1st floor & comes with ample parking facility for car and bike. This home is well equipped with 2 wardrobes & also has 2 bathrooms.\n\nIf you need amenities such as Wi-Fi access you?ll be happy to note that this home has this & more.\n\nIf you are in need of any emergency services or medical assistance, you will be happy to note that Motherhood Hospital Indiranagar, Axon Speciality Hospital and ESI Hospital are very close by. With Tree House Play Group, EuroKids Pre-School Indiranagar and Sanfort - Playschool, Daycare, Kindergarten, Preschool Franchise in Bangalore, India close to this home, you?ll be able to provide your children with many options to choose from.\n\nWith Fame Shankarnag Chitra Mandira, Gopalan Cinemas & INOX Lido Mall close by, you can catch your favourite movies running & never worry about missing a show because of traffic. If you are looking for gifts, or just want to spoil yourself, 1 MG-Lido Mall, Gangarams book bureau and BDA Complex have a wide variety of things that you can choose from.\n\nThe ATM & bus stop are close by, you will find having money in hand & access to public transport very easy. With a petrol pump & super market your daily needs are easily fulfilled--","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002Fw44Qc","promoted_b":false,"title":"3 BHK House for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Anantha Krishna ","street":"HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","propertyType":"RENT","secondaryTitle":"Independent House, HAL 3rd Stage, near Sri Veeranjaneya Swamy Devalaya","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818166434ab3016643cabab03582\u002Fff80818166434ab3016643cabab03582_38691_768774_medium.jpg","showRequestPhoto":true,"lastActivationDate":1611126978000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973307869761701000,77.647369267782320000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718423738000,"furnishingDesc":"Semi","localityTruncated":"New Thippasandra","negotiable":false,"type":"RK1","ownerId":"ff80818168f513730168f531528b198e","rent":9000,"availableFrom":1722277800000,"photos":[{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_51829_901434_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_51829_814670_original.jpg","large":"ff80818168f513730168f531528f198f_51829_702515_large.jpg","medium":"ff80818168f513730168f531528f198f_51829_106379_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_46090_688958_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_46090_792396_original.jpg","large":"ff80818168f513730168f531528f198f_46090_923923_large.jpg","medium":"ff80818168f513730168f531528f198f_46090_178880_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_66359_96877_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_66359_956776_original.jpg","large":"ff80818168f513730168f531528f198f_66359_406383_large.jpg","medium":"ff80818168f513730168f531528f198f_66359_766499_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_70695_600436_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_70695_34438_original.jpg","large":"ff80818168f513730168f531528f198f_70695_112176_large.jpg","medium":"ff80818168f513730168f531528f198f_70695_318218_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818168f513730168f531528f198f_25350_528525_thumbnail.jpg","original":"ff80818168f513730168f531528f198f_25350_885160_original.jpg","large":"ff80818168f513730168f531528f198f_25350_572592_large.jpg","medium":"ff80818168f513730168f531528f198f_25350_38192_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"propertySize":120,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818168f513730168f531528f198f_51829_814670_original.jpg","accomodationTypeDesc":"","formattedDeposit":"60,000","id":"ff80818168f513730168f531528f198f","state":"READY","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK Flat for Rent In New Thippasandra","longitude":77.64742806163075,"dateOnly":"2024-06-15T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fflats-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fflats-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fflats-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"New Thippasandra","active":true,"creationDate":1550301876000,"swimmingPool":false,"listingVerified":false,"activeViewCount":2,"completeStreetName":"HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","propertyScore":1718164538000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":4,"mapped":false,"lift":false,"deposit":60000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-new-thippasandra-bangalore-for-rs-9000\u002Fff80818168f513730168f531528f198f\u002Fdetail","activationDate":1718423738000,"leaseTypeNew":["BACHELOR"],"facingDesc":"North-West","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1QHq316","latitude":12.973145043139112,"promoted_b":false,"reactivationReqDate":1718423425000,"facing":"NW","title":"1 RK Flat for Rent In New Thippasandra","nbLocality":"New Tippasandra","leaseType":"BACHELOR","society":"Standalone building","premium":false,"ownerName":"Ramchandra","street":"HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","propertyType":"RENT","secondaryTitle":"Standalone building, HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya","floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818168f513730168f531528f198f\u002Fff80818168f513730168f531528f198f_51829_106379_medium.jpg","showRequestPhoto":true,"lastActivationDate":1702736184000,"forLease":false,"address":"Standalone building, HAL 3rd Stage Near Sri Veeranjaneya Swamy Devalaya, New Thippasandra, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK Flat for Rent In New ...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"9,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.973145043139112000,77.647428061630750000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK2","ownerId":"8a9f82ca7028d2c301702d0ceb911f55","rent":40000,"propertySize":995,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb1827ab86dca017ab871960200ec_20821_221581_original.jpg","id":"8a9fb1827ab86dca017ab871960200ec","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Sri Sri Paradise New Thippasandra for Rent In New Tippasandra","powerBackup":"FULL","buyerProperty":false,"locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717650977000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":140000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-40000\u002F8a9fb1827ab86dca017ab871960200ec\u002Fdetail","activationDate":1716527777000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":true,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":true,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":true,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.97313756336153,"reactivationReqDate":1714027395000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":false,"address":"New Tippasandra, Bengaluru, Karnataka, India, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"2 BHK Flat In Sri Sri Parad...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"40,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":true,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1718027245000,"balconies":2,"availableFrom":1716575400000,"photos":[{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_20821_633810_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_20821_221581_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_20821_89352_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_20821_924744_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_25790_723112_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_25790_114002_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_25790_971294_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_25790_472317_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_74953_38482_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_74953_942166_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_74953_175875_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_74953_371475_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_64547_617190_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_64547_521635_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_64547_52108_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_64547_23112_medium.jpg"},"disAffinity":35,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":576,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_7028_115554_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_7028_872556_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_7028_336810_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_7028_501500_medium.jpg"},"disAffinity":35,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":1024,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_72272_513766_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_72272_776085_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_72272_746856_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_72272_946222_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_62770_347005_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_62770_454107_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_62770_71217_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_62770_294139_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_66630_798565_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_66630_663146_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_66630_245846_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_66630_11658_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_41072_46750_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_41072_993819_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_41072_525127_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_41072_838407_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_97114_911087_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_97114_108153_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_97114_204964_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_97114_133664_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_79142_470023_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_79142_559547_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_79142_260449_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_79142_115095_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_47789_485050_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_47789_643229_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_47789_312760_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_47789_420665_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_39699_980063_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_39699_608493_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_39699_534918_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_39699_75204_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_38566_259051_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_38566_516312_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_38566_782071_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_38566_328288_medium.jpg"},"disAffinity":17,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_70825_125646_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_70825_810755_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_70825_636967_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_70825_959566_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_43440_246437_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_43440_62393_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_43440_353958_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_43440_892600_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_37645_760943_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_37645_286491_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_37645_75060_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_37645_75349_medium.jpg"},"disAffinity":15,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_64163_30054_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_64163_913263_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_64163_666626_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_64163_277796_medium.jpg"},"disAffinity":15,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_82862_726672_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_82862_741958_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_82862_871316_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_82862_501271_medium.jpg"},"disAffinity":11,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_80006_513977_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_80006_859961_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_80006_591429_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_80006_327358_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_31620_799717_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_31620_96196_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_31620_339965_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_31620_685032_medium.jpg"},"disAffinity":9,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_81815_284895_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_81815_839261_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_81815_410895_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_81815_994543_medium.jpg"},"disAffinity":5,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_40639_468530_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_40639_485402_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_40639_889378_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_40639_619397_medium.jpg"},"disAffinity":0,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_19601_377831_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_19601_513040_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_19601_126996_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_19601_165706_medium.jpg"},"disAffinity":0,"displayPic":false,"w":1024,"name":"image","h":576,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_34930_722251_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_34930_279907_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_34930_931550_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_34930_163340_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_3446_559270_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_3446_310751_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_3446_698298_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_3446_128237_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_35238_729192_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_35238_206401_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_35238_443158_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_35238_995475_medium.jpg"},"disAffinity":0,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_77649_556693_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_77649_790880_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_77649_794583_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_77649_954805_medium.jpg"},"disAffinity":-1,"displayPic":false,"w":576,"name":"image","h":1024,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"h":1024,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fb1827ab86dca017ab871960200ec_19056_38714_thumbnail.jpg","original":"8a9fb1827ab86dca017ab871960200ec_19056_523022_original.jpg","large":"8a9fb1827ab86dca017ab871960200ec_19056_942730_large.jpg","medium":"8a9fb1827ab86dca017ab871960200ec_19056_488316_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":576,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1.4 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64743538990396,"dateOnly":"2024-06-10T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fflats-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","maintenanceAmount":2500,"creationDate":1626592090000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"New Tippasandra, Bengaluru, Karnataka, India","totalFloor":4,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1jPw9j5","promoted_b":false,"title":"2 BHK Flat In Sri Sri Paradise New Thippasandra for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Sri Sri Paradise New Thippasandra ","ownerName":"Parthasaradhi Reddy","street":"New Tippasandra, Bengaluru, Karnataka, India","propertyType":"RENT","secondaryTitle":"New Tippasandra, Bengaluru, Karnataka, India","floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb1827ab86dca017ab871960200ec\u002F8a9fb1827ab86dca017ab871960200ec_20821_924744_medium.jpg","showRequestPhoto":false,"lastActivationDate":1714029739000,"videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973137563361530000,77.647435389903960000","maintenance":true,"sharedAccomodation":false},{"propertyAge":1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Maruthi Sevanagar","negotiable":false,"type":"BHK1","ownerId":"8a9fea8285052699018505750d1053fd","rent":12000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f058287c187010187c1a3423610da_98814_217337_original.jpg","score":{"lastUpdatedDate":"2023-04-27T13:17:26+05:30","transit":7.5,"id":"8a9f058287c187010187c1a3423610da","lifestyle":7.3},"id":"8a9f058287c187010187c1a3423610da","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Maruthi Sevanagar","buyerProperty":false,"locality":"Maruthi Sevanagar","active":true,"waterSupply":"CORPORATION","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":50000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-maruthi-sevanagar-bangalore-for-rs-12000\u002F8a9f058287c187010187c1a3423610da\u002Fdetail","activationDate":1718537448000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.985758721165597,"reactivationReqDate":1718173441000,"facing":"E","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station, Maruthi Sevanagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Ma...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718537449000,"balconies":0,"availableFrom":1717525800000,"photos":[{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_98814_772629_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_98814_217337_original.jpg","large":"8a9f058287c187010187c1a3423610da_98814_699851_large.jpg","medium":"8a9f058287c187010187c1a3423610da_98814_535703_medium.jpg"},"disAffinity":20,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_86802_828049_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_86802_83912_original.jpg","large":"8a9f058287c187010187c1a3423610da_86802_623262_large.jpg","medium":"8a9f058287c187010187c1a3423610da_86802_854442_medium.jpg"},"disAffinity":10,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_76137_878837_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_76137_632739_original.jpg","large":"8a9f058287c187010187c1a3423610da_76137_218474_large.jpg","medium":"8a9f058287c187010187c1a3423610da_76137_435205_medium.jpg"},"disAffinity":0,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f058287c187010187c1a3423610da_37400_881541_thumbnail.jpg","original":"8a9f058287c187010187c1a3423610da_37400_189516_original.jpg","large":"8a9f058287c187010187c1a3423610da_37400_474040_large.jpg","medium":"8a9f058287c187010187c1a3423610da_37400_140767_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":562,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"50,000","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64472153588086,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fvillas-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","creationDate":1682580915000,"swimmingPool":false,"activeViewCount":2,"completeStreetName":"Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Old Madras Road-C V Raman Nagar","url":"flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"},{"name":"1 BHK","url":"1bhk-flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["COMPANY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1RYYXS5","promoted_b":false,"title":"1 BHK House for Rent In Maruthi Sevanagar","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"M Chethan","street":"Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Baiyyappanahalli Extension, Near Swami Vivekananda Metro Station","floor":3,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f058287c187010187c1a3423610da\u002F8a9f058287c187010187c1a3423610da_98814_535703_medium.jpg","showRequestPhoto":false,"lastActivationDate":1718173950000,"videoUnit":[],"tenantTypeDesc":"","location":"12.985758721165597000,77.644721535880860000","maintenance":false,"sharedAccomodation":false},{"propertyAge":3,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Unfurnished","localityTruncated":"New Baiyyappanahalli ","negotiable":true,"type":"BHK2","ownerId":"ff808181539dd84101539e2354240785","rent":20000,"propertySize":600,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f86d070e321d60170e34a1a6d11ff_88813_217138_original.jpg","score":{"lastUpdatedDate":"2020-09-16T16:37:35+05:30","transit":5.3,"id":"8a9f86d070e321d60170e34a1a6d11ff","lifestyle":5.9},"id":"8a9f86d070e321d60170e34a1a6d11ff","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat for Rent In New Baiyyappanahalli ","buyerProperty":false,"inactiveReason":"LETOUT","locality":"New Baiyyappanahalli ","active":true,"waterSupply":"CORP_BORE","propertyScore":1716968708000,"accurateLocation":true,"filterPreferenceScore":0,"lift":true,"deposit":100000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-baiyyappanahalli--bangalore-for-rs-20000\u002F8a9f86d070e321d60170e34a1a6d11ff\u002Fdetail","futureActivationDate":"2024-07-14T00:00:00+05:30","activationDate":1718178308000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.9858453,"reactivationReqDate":1718167196000,"facing":"N","leaseType":"FAMILY","premium":false,"forLease":false,"address":"standalone building, 9th cross near Vivekanandha Metro Railway Station,, New Baiyyappanahalli , bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat for Rent In New...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"20,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":true,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1718178309000,"availableFrom":1717439400000,"photos":[{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_88813_950946_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_88813_217138_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_88813_420622_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_88813_908871_medium.jpg"},"disAffinity":999,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_14526_405927_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_14526_317232_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_14526_191274_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_14526_721870_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_73761_828879_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_73761_859589_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_73761_141086_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_73761_788033_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_87843_533100_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_87843_163283_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_87843_522275_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_87843_662447_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_94399_50466_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_94399_280837_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_94399_24806_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_94399_12193_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_69893_22631_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_69893_240882_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_69893_536083_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_69893_95646_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_75306_123892_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_75306_319607_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_75306_70580_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_75306_315539_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f86d070e321d60170e34a1a6d11ff_87782_762924_thumbnail.jpg","original":"8a9f86d070e321d60170e34a1a6d11ff_87782_259029_original.jpg","large":"8a9f86d070e321d60170e34a1a6d11ff_87782_661276_large.jpg","medium":"8a9f86d070e321d60170e34a1a6d11ff_87782_111568_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.6448454,"dateOnly":"2024-06-12T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fflats-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fflats-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1584361249000,"swimmingPool":false,"listingVerified":false,"activeViewCount":0,"completeStreetName":"9th cross near Vivekanandha Metro Railway Station,","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Old Madras Road-C V Raman Nagar","url":"flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"},{"name":"2 BHK","url":"2bhk-flats-for-rent-in-old_madras_road_c_v_raman_nagar_bangalore"}],"totalFloor":4,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["FAMILY"],"ownerDescription":"5 years old building, Near Vivekananda metro station and NH4 (400 mts), both Kaveri and bore well water available, covered totally with grill for safety , two wheeler parking, , lift available.","facingDesc":"North","furnishing":"NOT_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1fjVJn5","promoted_b":false,"title":"2 BHK Flat for Rent In New Baiyyappanahalli ","nbLocality":"Old Madras Road-C V Raman Nagar","society":"standalone building","ownerName":"Prabhakar","street":"9th cross near Vivekanandha Metro Railway Station,","propertyType":"RENT","secondaryTitle":"standalone building, 9th cross near Vivekanandha Metro Railway Station,","floor":4,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f86d070e321d60170e34a1a6d11ff\u002F8a9f86d070e321d60170e34a1a6d11ff_88813_908871_medium.jpg","showRequestPhoto":true,"lastActivationDate":1717493708000,"inactiveReasonDesc":"Rented","videoUnit":[],"tenantTypeDesc":"","location":"12.985845300000000000,77.644845400000000000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717226375000,"balconies":0,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli Extension","negotiable":false,"type":"BHK1","ownerId":"ff8081814f93cf00014f9a000d181d15","rent":15000,"availableFrom":1717180200000,"photos":[],"propertySize":500,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"1.5 Lacs","id":"8a9f8bfa6fb498de016fc19009ff5531","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Baiyyappanahalli Extension","longitude":77.64518003988955,"dateOnly":"2024-06-01T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fvillas-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"Baiyyappanahalli Extension","active":true,"creationDate":1579500440000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"new Baiyappanahalli Near Swami Vivekananda Metro Station","propertyScore":1717310977000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":150000,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-baiyyappanahalli-extension-bangalore-for-rs-15000\u002F8a9f8bfa6fb498de016fc19009ff5531\u002Fdetail","activationDate":1717224577000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1gpkKP5","latitude":12.98569022089517,"promoted_b":false,"reactivationReqDate":1717224232000,"title":"1 BHK House for Rent In Baiyyappanahalli Extension","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"siddiq","street":"new Baiyappanahalli Near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, new Baiyappanahalli Near Swami Vivekananda Metro Station","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1685250938000,"forLease":false,"address":"Independent House, new Baiyappanahalli Near Swami Vivekananda Metro Station, Baiyyappanahalli Extension, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"15,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":false},"location":"12.985690220895170000,77.645180039889550000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":0,"parking":"FOUR_WHEELER","parkingDesc":"Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"New Tippasandra","negotiable":false,"type":"BHK2","ownerId":"ff8081816284bca701628562b3112e97","rent":22000,"propertySize":1200,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fb3827a4c4c72017a4c9c893e3502_777820_427223_original.jpg","id":"8a9fb3827a4c4c72017a4c9c893e3502","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK House for Lease In New Tippasandra","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"New Tippasandra","active":true,"waterSupply":"CORPORATION","propertyScore":1714025579000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":2500000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-lease-in-new-tippasandra-bangalore-for-rs-2500000\u002F8a9fb3827a4c4c72017a4c9c893e3502\u002Fdetail","activationDate":1716099179000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.973128336763018,"reactivationReqDate":1716098091000,"facing":"NE","leaseType":"ANYONE","premium":false,"forLease":true,"address":"Independent House, 4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Lease In N...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"22,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716609206000,"balconies":1,"availableFrom":1716057000000,"photos":[{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_777820_154903_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_777820_427223_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_777820_954954_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_777820_850666_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":true,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_25392_420561_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_25392_504342_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_25392_485920_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_25392_271296_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_244456_772033_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_244456_601754_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_244456_515569_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_244456_207649_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_289817_172688_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_289817_730492_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_289817_365479_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_289817_792631_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_242299_402313_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_242299_314143_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_242299_171915_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_242299_343369_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_819516_899379_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_819516_116890_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_819516_450930_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_819516_392626_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_928609_47825_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_928609_328252_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_928609_721752_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_928609_358439_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fb3827a4c4c72017a4c9c893e3502_366135_804925_thumbnail.jpg","original":"8a9fb3827a4c4c72017a4c9c893e3502_366135_920349_original.jpg","large":"8a9fb3827a4c4c72017a4c9c893e3502_366135_341030_large.jpg","medium":"8a9fb3827a4c4c72017a4c9c893e3502_366135_951667_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":1200,"name":"image","h":1600,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"25 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64765676612329,"dateOnly":"2024-05-25T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fvillas-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Bagmane Tech Park\",\"longitude\":77.65682120000001,\"seoUrl\":\"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\",\"latitude\":12.9795161,\"id\":\"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}]","indexName":"nobroker","creationDate":1624782965000,"swimmingPool":false,"listingVerified":false,"activeViewCount":1,"completeStreetName":"4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"North-East","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1LBhvD5","promoted_b":false,"title":"2 BHK House for Lease In New Tippasandra","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Akhilan","street":"4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","propertyType":"RENT","secondaryTitle":"Independent House, 4th main 3 rd cross HAL 3rd Stage, Near Clumax diagnostics","aea__":{"SECONDARY_NUMBER":{"value":"OTE2NDIzOTEzOA=="}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fb3827a4c4c72017a4c9c893e3502\u002F8a9fb3827a4c4c72017a4c9c893e3502_777820_850666_medium.jpg","showRequestPhoto":false,"lastActivationDate":1669702516000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.973128336763018000,77.647656766123290000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":3,"localityTruncated":"80, 4th Cross Rd, HAL 3rd S...","negotiable":true,"type":"BHK2","ownerId":"ff80818155f3f9b90155f89c311475d6","rent":24000,"propertySize":750,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f92ed7592b80801759312ed8730f6_11280_753083_original.jpg","score":{"lastUpdatedDate":"2021-02-18T13:14:50+05:30","transit":8.2,"id":"8a9f92ed7592b80801759312ed8730f6","lifestyle":6.3},"propertyCode":"NB-1057469","id":"8a9f92ed7592b80801759312ed8730f6","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In 80, 4th Cross Rd, Hal 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","buyerProperty":false,"inactiveReason":"LETOUT_NOBROKER","locality":"80, 4th Cross Rd, HAL 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","active":true,"waterSupply":"CORPORATION","propertyScore":1715063880000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":90000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-80-4th-cross-rd-hal-3rd-stage-colony-new-515-new-tippasandra-bengaluru-karnataka-560075-india-bangalore-for-rs-24000\u002F8a9f92ed7592b80801759312ed8730f6\u002Fdetail","activationDate":1714718280000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":true,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.974437930524891,"reactivationReqDate":1714717766000,"facing":"N","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, hal 3rd stage,opp Indira Canteen, New Thippasandra, 80, 4th Cross Rd, HAL 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India, bangalore","sponsored":false,"documentName":"property","propertyTitleTruncated":"2 BHK House for Rent In 80...","formattedMaintenanceAmount":"400","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"24,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":true,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1718536847000,"balconies":1,"availableFrom":1718476200000,"photos":[{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_11280_150728_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_11280_753083_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_11280_435224_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_11280_783347_medium.jpg"},"disAffinity":999,"displayPic":true,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_10553_763973_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_10553_244839_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_10553_732675_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_10553_926784_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_965_113836_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_965_576350_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_965_956034_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_965_853285_medium.jpg"},"disAffinity":0,"subState":"IRIS_FAILED","displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_14118_594576_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_14118_664563_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_14118_755785_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_14118_927229_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_11965_694753_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_11965_431281_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_11965_398319_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_11965_81383_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_16456_163388_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_16456_282958_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_16456_959278_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_16456_116666_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_95996_590580_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_95996_232919_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_95996_378721_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_95996_166864_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9f92ed7592b80801759312ed8730f6_29246_527912_thumbnail.jpg","original":"8a9f92ed7592b80801759312ed8730f6_29246_180896_original.jpg","large":"8a9f92ed7592b80801759312ed8730f6_29246_513035_large.jpg","medium":"8a9f92ed7592b80801759312ed8730f6_29246_490843_medium.jpg"},"disAffinity":0,"displayPic":false,"w":800,"name":"multipart","h":600,"state":"APPROVED","duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"90,000","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64853779226542,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\": \"ChIJywiewU8RrjsR6WUvFJFcNvU\", \"name\": \"Bagmane Tech Park\", \"longitude\": 77.65807290000001, \"seoUrl\": \"\u002Fvillas-for-rent-near-bagmane_tech_park_bangalore\", \"latitude\": 12.978763, \"id\": \"ChIJ84DBbU8RrjsR-83ZQUu1h-s\"}, {\"localityId\": \"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\", \"name\": \"RMZ Infinity\", \"longitude\": 77.661129, \"seoUrl\": \"\u002Fvillas-for-rent-near-rmz_infinity_bangalore\", \"latitude\": 12.994054400000001, \"id\": \"ChIJOer_PTYRrjsR_1OAbl3VReg\"}, {\"localityId\": \"ChIJkQN3GKQWrjsRNhBQJrhGD7U\", \"name\": \"Toit Micro Brewery\", \"longitude\": 77.6405569, \"seoUrl\": \"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\", \"latitude\": 12.9792514, \"id\": \"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"}, {\"localityId\": \"ChIJX9OZehsUrjsRjlnPb6fKWYI\", \"name\": \"Barbeque Nation\", \"longitude\": 77.6414312, \"seoUrl\": \"\u002Fvillas-for-rent-near-barbeque_nation_domlur_layout_bangalore\", \"latitude\": 12.9626563, \"id\": \"ChIJK7aICxoVrjsRnjZbF0TjvNo\"}, {\"localityId\": \"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\", \"name\": \"Baiyappanahalli Metro Station\", \"longitude\": 77.6524562, \"seoUrl\": \"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\", \"latitude\": 12.9907481, \"id\": \"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","maintenanceAmount":400,"creationDate":1604490293000,"swimmingPool":false,"listingVerified":false,"activeViewCount":5,"completeStreetName":"hal 3rd stage,opp Indira Canteen, New Thippasandra","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":2,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"North","ownerDescription":"1 Hall, 1 kitchen, 2 bedroom, 1 Pooja room, 1 attached toilet, balcony-","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1WFnnq5","promoted_b":false,"title":"2 BHK House for Rent In 80, 4th Cross Rd, Hal 3rd Stage, Colony New 515, New Tippasandra, Bengaluru, Karnataka 560075, India","nbLocality":"New Tippasandra","society":"Independent House","ownerName":"Prashanthkumar S","street":"hal 3rd stage,opp Indira Canteen, New Thippasandra","propertyType":"RENT","secondaryTitle":"Independent House, hal 3rd stage,opp Indira Canteen, New Thippasandra","aea__":{"DIRECTIONS":{"value":"opp to indira canteen corner building"}},"floor":2,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f92ed7592b80801759312ed8730f6\u002F8a9f92ed7592b80801759312ed8730f6_11280_783347_medium.jpg","showRequestPhoto":false,"lastActivationDate":1649390408000,"inactiveReasonDesc":"Rented via Nobroker","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974437930524891000,77.648537792265420000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718506811000,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli ","negotiable":false,"type":"BHK2","ownerId":"8a9f998276b70af50176b77334d8202f","rent":10000,"availableFrom":1723660200000,"photos":[{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_451653_662112_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_451653_152187_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_451653_415199_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_451653_291471_medium.jpg"},"disAffinity":0,"displayPic":true,"w":960,"name":"image","h":1280,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"OWNER","landscape":false},{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_36977_276217_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_36977_750276_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_36977_671556_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_36977_723416_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"8a9fa78276b70af70176b775bd881fda_47725_689677_thumbnail.jpg","original":"8a9fa78276b70af70176b775bd881fda_47725_846368_original.jpg","large":"8a9fa78276b70af70176b775bd881fda_47725_33950_large.jpg","medium":"8a9fa78276b70af70176b775bd881fda_47725_864845_medium.jpg"},"disAffinity":0,"displayPic":false,"w":810,"name":"files[]","h":1080,"duplicate":false,"title":"","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fa78276b70af70176b775bd881fda_451653_152187_original.jpg","accomodationTypeDesc":"","formattedDeposit":"1 Lac","id":"8a9fa78276b70af70176b775bd881fda","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In Baiyyappanahalli ","longitude":77.64508561367857,"dateOnly":"2024-06-16T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJvZXncIMWrjsRKX3IzO54xDY\",\"name\":\"Trinity\",\"seoUrl\":\"\u002Fvillas-for-rent-near-trinity_bangalore\",\"latitude\":12.97303,\"longitude\":77.6168395,\"placeType\":\"metro\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"Baiyyappanahalli ","active":true,"creationDate":1609395715000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"Old Madras Rd, near Swami Vivekanada Metro Station","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":2,"mapped":false,"lift":false,"deposit":100000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-baiyyappanahalli--bangalore-for-rs-10000\u002F8a9fa78276b70af70176b775bd881fda\u002Fdetail","activationDate":1718506810000,"leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1p19R16","latitude":12.98582865180645,"promoted_b":false,"reactivationReqDate":1718506495000,"title":"2 BHK House for Rent In Baiyyappanahalli ","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"ANYONE","society":"Independent House","premium":false,"ownerName":"BALAJI","street":"Old Madras Rd, near Swami Vivekanada Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Old Madras Rd, near Swami Vivekanada Metro Station","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fa78276b70af70176b775bd881fda\u002F8a9fa78276b70af70176b775bd881fda_451653_291471_medium.jpg","showRequestPhoto":false,"lastActivationDate":1673945712000,"forLease":false,"address":"Independent House, Old Madras Rd, near Swami Vivekanada Metro Station, Baiyyappanahalli , bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In Ba...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"10,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.985828651806450000,77.645085613678570000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":5,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":0,"localityTruncated":"Baiyyappanahalli","negotiable":false,"type":"BHK1","ownerId":"ff80818167b1206c0167b13732c70cde","rent":12000,"propertySize":400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818167b1206c0167b13732db0cdf_57679_147623_original.jpg","score":{"lastUpdatedDate":"2018-12-19T16:28:01+05:30","transit":8.9,"id":"ff80818167b1206c0167b13732db0cdf","lifestyle":7.8},"id":"ff80818167b1206c0167b13732db0cdf","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK House for Rent In Baiyyappanahalli","buyerProperty":false,"inactiveReason":"ALREADY_LISTED","locality":"Baiyyappanahalli","active":true,"waterSupply":"CORP_BORE","propertyScore":1716959377000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":100000,"detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-rent-in-baiyyappanahalli-bangalore-for-rs-12000\u002Fff80818167b1206c0167b13732db0cdf\u002Fdetail","activationDate":1715749777000,"amenities":"{\"INTERCOM\":false,\"AC\":false,\"RWH\":false,\"HK\":false,\"INTERNET\":false,\"LIFT\":false,\"CLUB\":false,\"GP\":false,\"FS\":false,\"STP\":false,\"PARK\":false,\"SC\":false,\"PB\":false,\"CPA\":false,\"SECURITY\":false,\"POOL\":false,\"GYM\":false,\"VP\":false,\"SERVANT\":true}","typeDesc":"1 BHK","city":"bangalore","latitude":12.986025669228184,"reactivationReqDate":1715682400000,"facing":"N","leaseType":"BACHELOR_FEMALE","premium":false,"forLease":false,"address":"Independent House, New Baiyyappanahalli Extension near Swami Vivekananda Metro Station, Baiyyappanahalli, bangalore","sponsored":false,"documentName":"property","propertyTitleTruncated":"1 BHK House for Rent In Ba...","formattedMaintenanceAmount":"","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"12,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":true},"buildingType":"IH","lastUpdateDate":1716707091000,"balconies":0,"availableFrom":1717180200000,"photos":[{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_57679_321322_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_57679_147623_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_57679_436185_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_57679_785930_medium.jpg"},"disAffinity":50,"subReasons":"","displayPic":true,"w":1600,"name":"files[]","h":720,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_3536_637709_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_3536_972337_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_3536_650741_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_3536_52380_medium.jpg"},"disAffinity":20,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_25574_927986_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_25574_844156_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_25574_278739_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_25574_903241_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_1466_684796_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_1466_104461_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_1466_671046_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_1466_630783_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"ff80818167b1206c0167b13732db0cdf_48450_451069_thumbnail.jpg","original":"ff80818167b1206c0167b13732db0cdf_48450_917888_original.jpg","large":"ff80818167b1206c0167b13732db0cdf_48450_925997_large.jpg","medium":"ff80818167b1206c0167b13732db0cdf_48450_282182_medium.jpg"},"disAffinity":-100,"subReasons":"","displayPic":false,"w":486,"name":"files[]","h":1080,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"1 Lac","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64474851415561,"dateOnly":"2024-05-26T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Max\",\"longitude\":77.64299390000002,\"seoUrl\":\"\u002Fvillas-for-rent-near-max_indira_nagar_bangalore\",\"latitude\":12.9786435,\"id\":\"ChIJaYoAm68WrjsRcMu3bbaRZcM\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1544866443000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":"New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"},{"name":"Maruthi Sevanagar","url":"flats-for-rent-in-maruthi_sevanagar_bangalore"},{"name":"1 RK","url":"1rk-flats-for-rent-in-maruthi_sevanagar_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"OWNER","leaseTypeNew":["ANYONE"],"facingDesc":"North","ownerDescription":"The house is unfurnished.It has easy access to market, schools, hospitals, banks and ATM's as well.","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1crcGz5","promoted_b":false,"title":"1 BHK House for Rent In Baiyyappanahalli","nbLocality":"Old Madras Road-C V Raman Nagar","society":"Independent House","ownerName":"RAVI S","street":"New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, New Baiyyappanahalli Extension near Swami Vivekananda Metro Station","aea__":{"FRM_UPLOADED_PHOTO":{"value":"26\u002F05\u002F2024 12:24 PM"},"SIMILAR_UNIT_AVAILABLE":{"display_value":"NO","value":"NO"},"SECONDARY_NUMBER":{"value":"9036535280"},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"Near Ganesha temple and walkable to sami Vivekananda's metro "}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818167b1206c0167b13732db0cdf\u002Fff80818167b1206c0167b13732db0cdf_57679_785930_medium.jpg","showRequestPhoto":false,"lastActivationDate":1683986454000,"inactiveReasonDesc":"Already Listed","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.986025669228184000,77.644748514155610000","maintenance":false,"sharedAccomodation":false},{"propertyAge":6,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":4,"localityTruncated":"Indiranagar","negotiable":false,"type":"BHK4","ownerId":"ff808181629564ba016299171fa85b2a","rent":200000,"propertySize":2400,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff808181629564ba0162993851976605_98313_532342_original.jpg","id":"ff808181629564ba0162993851976605","state":"READY","adminEvent":"PROPERTY","bathroom":4,"propertyTitle":"4 BHK Flat In T Kamalnath Naidu for Rent In Indiranagar","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"Indiranagar","active":true,"waterSupply":"CORPORATION","propertyScore":1717766837000,"accurateLocation":true,"pinCode":560038,"filterPreferenceScore":0,"lift":false,"deposit":2000000,"detailUrl":"\u002Fproperty\u002F4-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-200000\u002Fff808181629564ba0162993851976605\u002Fdetail","activationDate":1717766837000,"amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":true,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":true,\"SECURITY\":false,\"SC\":false,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":true,\"HK\":false,\"PB\":true,\"VP\":false}","typeDesc":"4 BHK","city":"bangalore","latitude":12.985701320342903,"reactivationReqDate":1717766393000,"facing":"NE","leaseType":"FAMILY","premium":false,"forLease":false,"address":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent, Indiranagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"4 BHK Flat In T Kamalnath N...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_4.png","formattedPrice":"2 Lacs","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":true,"RWH":true,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":true,"FS":false,"STP":true,"PARK":true,"SC":false,"PB":true,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":true},"buildingType":"AP","lastUpdateDate":1717766837000,"balconies":2,"availableFrom":1717698600000,"photos":[{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_98313_572965_thumbnail.jpg","original":"ff808181629564ba0162993851976605_98313_532342_original.jpg","large":"ff808181629564ba0162993851976605_98313_748773_large.jpg","medium":"ff808181629564ba0162993851976605_98313_189628_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_35831_644357_thumbnail.jpg","original":"ff808181629564ba0162993851976605_35831_631450_original.jpg","large":"ff808181629564ba0162993851976605_35831_845919_large.jpg","medium":"ff808181629564ba0162993851976605_35831_810847_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_31173_664181_thumbnail.jpg","original":"ff808181629564ba0162993851976605_31173_346221_original.jpg","large":"ff808181629564ba0162993851976605_31173_284529_large.jpg","medium":"ff808181629564ba0162993851976605_31173_694805_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_47098_254335_thumbnail.jpg","original":"ff808181629564ba0162993851976605_47098_889908_original.jpg","large":"ff808181629564ba0162993851976605_47098_917902_large.jpg","medium":"ff808181629564ba0162993851976605_47098_285875_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_36395_125743_thumbnail.jpg","original":"ff808181629564ba0162993851976605_36395_146731_original.jpg","large":"ff808181629564ba0162993851976605_36395_170517_large.jpg","medium":"ff808181629564ba0162993851976605_36395_514017_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_38596_763061_thumbnail.jpg","original":"ff808181629564ba0162993851976605_38596_700870_original.jpg","large":"ff808181629564ba0162993851976605_38596_402103_large.jpg","medium":"ff808181629564ba0162993851976605_38596_291754_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_75545_458488_thumbnail.jpg","original":"ff808181629564ba0162993851976605_75545_587550_original.jpg","large":"ff808181629564ba0162993851976605_75545_768473_large.jpg","medium":"ff808181629564ba0162993851976605_75545_47523_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff808181629564ba0162993851976605_35956_131950_thumbnail.jpg","original":"ff808181629564ba0162993851976605_35956_466275_original.jpg","large":"ff808181629564ba0162993851976605_35956_851221_large.jpg","medium":"ff808181629564ba0162993851976605_35956_95280_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"20 Lacs","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","longitude":77.64550497499137,"dateOnly":"2024-06-07T00:00:00+05:30","activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fflats-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Gopalan Cinemas\",\"longitude\":77.6618806,\"seoUrl\":\"\u002Fflats-for-rent-near-gopalan_cinemas_c_v_raman_nagar_bangalore\",\"latitude\":12.9929898,\"id\":\"ChIJrZrY-0kRrjsR8bCOajjYFPg\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","creationDate":1522989027000,"swimmingPool":false,"activeViewCount":0,"completeStreetName":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","totalFloor":2,"mapped":false,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["FAMILY"],"facingDesc":"North-East","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F18dFMD3","promoted_b":false,"title":"4 BHK Flat In T Kamalnath Naidu for Rent In Indiranagar","nbLocality":"Old Madras Road-C V Raman Nagar","society":"T Kamalnath Naidu ","ownerName":"sunitha.bhasker","street":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","propertyType":"RENT","secondaryTitle":"Swamy Vivekananda Road, Near Swami Vivekananda Road Metro Station, Sisters of St.John the Baptist Convent","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff808181629564ba0162993851976605\u002Fff808181629564ba0162993851976605_98313_189628_medium.jpg","showRequestPhoto":true,"lastActivationDate":1713064570000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.985701320342903000,77.645504974991370000","maintenance":false,"sharedAccomodation":false},{"propertyAge":10,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717240674000,"furnishingDesc":"Unfurnished","localityTruncated":"Baiyyappanahalli Extension","negotiable":false,"type":"RK1","ownerId":"ff8081814f93cf00014f9a000d181d15","rent":13000,"availableFrom":1717180200000,"photos":[],"propertySize":210,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"80,000","id":"8a9fad838c56a76f018c579664877a9f","state":"READY","localityId":"old_madras_road_c_v_raman_nagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK House for Rent In Baiyyappanahalli Extension","longitude":77.64498976048421,"dateOnly":"2024-06-01T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJywiewU8RrjsR6WUvFJFcNvU\",\"name\":\"Spar Hypermarket\",\"longitude\":77.6615764,\"seoUrl\":\"\u002Fvillas-for-rent-near-spar_hypermarket_c_v_raman_nagar_bangalore\",\"latitude\":12.9929276,\"id\":\"ChIJJVHI10kRrjsR9bsCRo-MNg4\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"adyar ananda bhavan\",\"longitude\":77.6393988,\"seoUrl\":\"\u002Fvillas-for-rent-near-adyar_ananda_bhavan_indira_nagar_bangalore\",\"latitude\":12.97813,\"id\":\"ChIJ7Y5UPHcWrjsR_LFoaFWpZwY\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"LETOUT","locality":"Baiyyappanahalli Extension","active":true,"creationDate":1702276523000,"swimmingPool":false,"activeViewCount":1,"completeStreetName":"Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","propertyScore":1717062735000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":0,"mapped":false,"lift":false,"deposit":80000,"gym":false,"detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-baiyyappanahalli-extension-bangalore-for-rs-13000\u002F8a9fad838c56a76f018c579664877a9f\u002Fdetail","reactivationSource":"PROPERTY_DASHBOARD","activationDate":1717235535000,"leaseTypeNew":["BACHELOR"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1FJFXP5","latitude":12.986148822863619,"promoted_b":false,"reactivationReqDate":1717224210000,"title":"1 RK House for Rent In Baiyyappanahalli Extension","nbLocality":"Old Madras Road-C V Raman Nagar","leaseType":"BACHELOR","society":"Independent House","premium":false,"ownerName":"siddiq","street":"Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","propertyType":"RENT","secondaryTitle":"Independent House, Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1702276821000,"forLease":false,"address":"Independent House, Metro Station Swami Vivekananda Road near Swami Vivekananda Metro Station, Baiyyappanahalli Extension, bangalore","inactiveReasonDesc":"Rented","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK House for Rent In Bai...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"13,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.986148822863619000,77.644989760484210000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","cupBoard":2,"localityTruncated":"New Tippasandra","negotiable":true,"type":"BHK2","ownerId":"ff80818154a96cab0154aa0d39751570","rent":35000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff80818154a96cab0154aa0d39b61571_34487_272645_original.jpg","score":{"lastUpdatedDate":"2019-04-24T19:36:32+05:30","transit":5.6,"id":"ff80818154a96cab0154aa0d39b61571","lifestyle":9.1},"id":"ff80818154a96cab0154aa0d39b61571","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Maruthi Mahal Apts for Rent In New Tippasandra","buyerProperty":false,"inactiveReason":"TIMED_OUT","locality":"New Tippasandra","active":true,"waterSupply":"CORP_BORE","propertyScore":1717403307000,"accurateLocation":true,"pinCode":560075,"filterPreferenceScore":0,"lift":true,"deposit":300000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-new-tippasandra-bangalore-for-rs-35000\u002Fff80818154a96cab0154aa0d39b61571\u002Fdetail","activationDate":1717057707000,"amenities":"{\"LIFT\":true,\"GYM\":false,\"INTERNET\":true,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":true,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":true,\"PARK\":true,\"RWH\":true,\"STP\":false,\"HK\":false,\"PB\":true,\"VP\":true}","typeDesc":"2 BHK","city":"bangalore","latitude":12.974344224452594,"reactivationReqDate":1717054588000,"facing":"E","leaseType":"ANYONE","premium":false,"forLease":false,"address":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen, New Tippasandra, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"2,500","propertyTitleTruncated":"2 BHK Flat In Maruthi Mahal...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"35,000","maintenanceIncluded":true,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":true,"HK":false,"INTERNET":true,"LIFT":true,"CLUB":false,"GP":true,"FS":false,"STP":false,"PARK":true,"SC":false,"PB":true,"CPA":true,"SECURITY":true,"POOL":false,"GYM":false,"VP":true,"SERVANT":false},"buildingType":"AP","lastUpdateDate":1717195961000,"balconies":1,"availableFrom":1718821800000,"photos":[{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_34487_557378_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_34487_272645_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_34487_773099_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_34487_869576_medium.jpg"},"disAffinity":0,"displayPic":true,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_41839_445320_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_41839_496076_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_41839_766927_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_41839_607483_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_93811_720193_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_93811_383496_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_93811_673313_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_93811_799954_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_43336_173885_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_43336_269419_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_43336_760722_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_43336_351416_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff80818154a96cab0154aa0d39b61571_88472_537812_thumbnail.jpg","original":"ff80818154a96cab0154aa0d39b61571_88472_837051_original.jpg","large":"ff80818154a96cab0154aa0d39b61571_88472_853129_large.jpg","medium":"ff80818154a96cab0154aa0d39b61571_88472_386411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"files[]","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"new_thippasandra_bangalore","lastUpdateString":"Today","longitude":77.64891727809709,"dateOnly":"2024-06-01T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJP4Y7jHQUrjsRoBEozKiv95U\",\"name\":\"Sunriver EGL\",\"longitude\":77.64120159999999,\"seoUrl\":\"\u002Fflats-for-rent-near-sunriver_egl_challaghatta_bangalore\",\"latitude\":12.951092,\"id\":\"ChIJPxUxExIUrjsRt9WgXXrclNM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJX9OZehsUrjsRjlnPb6fKWYI\",\"name\":\"Barbeque Nation\",\"longitude\":77.6414312,\"seoUrl\":\"\u002Fflats-for-rent-near-barbeque_nation_domlur_layout_bangalore\",\"latitude\":12.9626563,\"id\":\"ChIJK7aICxoVrjsRnjZbF0TjvNo\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","maintenanceAmount":2500,"creationDate":1463141874000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","breadcrumbUrls":[{"name":"bangalore","url":"flats-for-rent-in-bangalore_bangalore"}],"totalFloor":3,"mapped":false,"gym":false,"reactivationSource":"owner_wa_reactivation","leaseTypeNew":["ANYONE"],"facingDesc":"East","ownerDescription":"2 bed room apartment semi furnished with 2 bed room , 2 bath room attached and common ,living room hall ,kitchen , work area ,balcony available for lease only. Wardrobes , crockery stand, TV stand ,lofts , gas fabrication etc with chimney","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1f5nnN5","promoted_b":false,"title":"2 BHK Flat In Maruthi Mahal Apts for Rent In New Tippasandra","nbLocality":"New Tippasandra","society":"Maruthi Mahal Apts","ownerName":"Harikrishnan SN","street":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","propertyType":"RENT","secondaryTitle":", Kempamma Devi Rd, HAL 3rd Stage, Colony New 515, Near Indira Canteen","aea__":{"SECONDARY_NUMBER":{"value":"9886131979"},"DIRECTIONS":{"value":""}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff80818154a96cab0154aa0d39b61571\u002Fff80818154a96cab0154aa0d39b61571_34487_869576_medium.jpg","showRequestPhoto":true,"lastActivationDate":1549624817000,"inactiveReasonDesc":"Timed Out","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974344224452594000,77.648917278097090000","maintenance":true,"sharedAccomodation":false},{"propertyAge":10,"parking":"BOTH","parkingDesc":"Bike and Car","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Full","cupBoard":2,"localityTruncated":"Jogupalya","negotiable":false,"type":"BHK3","ownerId":"ff8081815e6f0bfa015e7060d5ce300a","rent":30000,"propertySize":1000,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fff8081816cccfcbb016ccd96b29208c6_51189_17901_original.jpg","id":"ff8081816cccfcbb016ccd96b29208c6","state":"READY","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"3 BHK House for Rent In Jogupalya","buyerProperty":false,"inactiveReason":"LETOUT","locality":"Jogupalya","active":true,"waterSupply":"CORP_BORE","propertyScore":-1,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":300000,"detailUrl":"\u002Fproperty\u002F3-bhk-apartment-for-rent-in-jogupalya-bangalore-for-rs-30000\u002Fff8081816cccfcbb016ccd96b29208c6\u002Fdetail","activationDate":1718528538000,"amenities":"{\"LIFT\":false,\"GYM\":true,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"3 BHK","city":"bangalore","latitude":12.974884225050978,"reactivationReqDate":1718527973000,"leaseType":"ANYONE","premium":false,"forLease":false,"address":"Independent House, 9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple , Jogupalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"3 BHK House for Rent In Jo...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_3.png","formattedPrice":"30,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":true,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1718528539000,"balconies":1,"availableFrom":1723660200000,"photos":[{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_51189_20597_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_51189_17901_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_51189_66955_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_51189_84322_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_15601_50909_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_15601_17836_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_15601_64901_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_15601_93524_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_74152_63328_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_74152_50885_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_74152_81072_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_74152_23989_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_21241_60247_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_21241_3874_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_21241_37243_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_21241_34411_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false},{"imagesMap":{"thumbnail":"ff8081816cccfcbb016ccd96b29208c6_50287_71289_thumbnail.jpg","original":"ff8081816cccfcbb016ccd96b29208c6_50287_84036_original.jpg","large":"ff8081816cccfcbb016ccd96b29208c6_50287_83763_large.jpg","medium":"ff8081816cccfcbb016ccd96b29208c6_50287_35818_medium.jpg"},"disAffinity":0,"displayPic":false,"w":0,"name":"image","h":0,"duplicate":false,"title":"","landscape":false}],"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"3 Lacs","localityId":"jogupalya_bangalore","lastUpdateString":"Today","longitude":77.63177264481784,"dateOnly":"2024-06-16T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fvillas-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fvillas-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fvillas-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fvillas-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","creationDate":1566817301000,"swimmingPool":false,"activeViewCount":3,"completeStreetName":"9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","totalFloor":1,"mapped":false,"gym":true,"reactivationSource":"PROPERTY_DASHBOARD","leaseTypeNew":["ANYONE"],"facingDesc":"","furnishing":"FULLY_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1fqx826","promoted_b":false,"title":"3 BHK House for Rent In Jogupalya","nbLocality":"Jogupalya","society":"Independent House","ownerName":"K.N Ramachandra","street":"9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","propertyType":"RENT","secondaryTitle":"Independent House, 9\u002FA, 1st Cross Road, Appaiah Garden Near ayyappa temple ","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002Fff8081816cccfcbb016ccd96b29208c6\u002Fff8081816cccfcbb016ccd96b29208c6_51189_84322_medium.jpg","showRequestPhoto":true,"lastActivationDate":1590239409000,"inactiveReasonDesc":"Rented","videoUnit":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.974884225050978000,77.631772644817840000","maintenance":false,"sharedAccomodation":false},{"propertyAge":5,"parking":"NONE","parkingDesc":"None","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1717082882000,"furnishingDesc":"Unfurnished","localityTruncated":"J C Nagar","negotiable":false,"type":"RK1","ownerId":"8a9faf82808d3d2101808d82b3b02252","rent":3000,"availableFrom":1714933800000,"photos":[],"propertySize":200,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","formattedDeposit":"15,000","id":"8a9faf82808d3d2101808d82b3c92253","state":"READY","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 RK House for Rent In J C Nagar","longitude":77.63786189999999,"dateOnly":"2024-05-30T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","inactiveReason":"TIMED_OUT","locality":"J C Nagar","active":true,"creationDate":1651641595000,"swimmingPool":false,"listingVerified":false,"activeViewCount":4,"completeStreetName":" 16th Main Rd KSRTC Layout near Nalanda High School","propertyScore":1714543502000,"accurateLocation":true,"filterPreferenceScore":0,"totalFloor":1,"mapped":false,"lift":false,"deposit":15000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-rk-apartment-for-rent-in-j-c-nagar-bangalore-for-rs-3000\u002F8a9faf82808d3d2101808d82b3c92253\u002Fdetail","activationDate":1714975502000,"leaseTypeNew":["BACHELOR"],"facingDesc":"","furnishing":"NOT_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"1 RK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1zDcBq7","latitude":12.9876391,"promoted_b":false,"reactivationReqDate":1714975068000,"title":"1 RK House for Rent In J C Nagar","nbLocality":"Sarvagnanagar","leaseType":"BACHELOR","society":"Independent House","premium":false,"ownerName":"ramchandra ","street":" 16th Main Rd KSRTC Layout near Nalanda High School","propertyType":"RENT","secondaryTitle":"Independent House, 16th Main Rd KSRTC Layout near Nalanda High School","floor":0,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"lastActivationDate":1710318385000,"forLease":false,"address":"Independent House, 16th Main Rd KSRTC Layout near Nalanda High School, J C Nagar, bangalore","inactiveReasonDesc":"Timed Out","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 RK House for Rent In J C...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"3,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.987639100000000000,77.637861899999990000","maintenance":false,"sharedAccomodation":false,"buildingType":"IH"},{"propertyAge":-1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1716968206000,"furnishingDesc":"Semi","localityTruncated":"J C Nagar","negotiable":false,"type":"BHK1","ownerId":"8a9fcd82814220a60181427968323d73","rent":15000,"availableFrom":1716921000000,"photos":[{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_94101_173771_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_94101_648204_original.jpg","large":"8a9fcd82814220a60181427969273d74_94101_817208_large.jpg","medium":"8a9fcd82814220a60181427969273d74_94101_933079_medium.jpg"},"disAffinity":1034,"subReasons":"","displayPic":true,"w":720,"name":"files[]","h":512,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":596,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_25540_10750_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_25540_852214_original.jpg","large":"8a9fcd82814220a60181427969273d74_25540_373933_large.jpg","medium":"8a9fcd82814220a60181427969273d74_25540_511137_medium.jpg"},"disAffinity":50,"subReasons":"","subState":"","displayPic":false,"w":1152,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_14193_312120_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_14193_115232_original.jpg","large":"8a9fcd82814220a60181427969273d74_14193_433710_large.jpg","medium":"8a9fcd82814220a60181427969273d74_14193_359412_medium.jpg"},"disAffinity":40,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":504,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_77994_963551_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_77994_502507_original.jpg","large":"8a9fcd82814220a60181427969273d74_77994_66262_large.jpg","medium":"8a9fcd82814220a60181427969273d74_77994_601839_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":514,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_83601_259934_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_83601_685462_original.jpg","large":"8a9fcd82814220a60181427969273d74_83601_158263_large.jpg","medium":"8a9fcd82814220a60181427969273d74_83601_456356_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":514,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_55797_363340_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_55797_127862_original.jpg","large":"8a9fcd82814220a60181427969273d74_55797_568537_large.jpg","medium":"8a9fcd82814220a60181427969273d74_55797_739143_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":502,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_30356_206299_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_30356_661012_original.jpg","large":"8a9fcd82814220a60181427969273d74_30356_500542_large.jpg","medium":"8a9fcd82814220a60181427969273d74_30356_311257_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":510,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_26842_294634_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_26842_832524_original.jpg","large":"8a9fcd82814220a60181427969273d74_26842_885640_large.jpg","medium":"8a9fcd82814220a60181427969273d74_26842_79443_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":720,"name":"files[]","h":502,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1038,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_32600_89591_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_32600_84039_original.jpg","large":"8a9fcd82814220a60181427969273d74_32600_894510_large.jpg","medium":"8a9fcd82814220a60181427969273d74_32600_663278_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":512,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_78289_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_80024_original.jpg","large":"8a9fcd82814220a60181427969273d74_42122_large.jpg","medium":"8a9fcd82814220a60181427969273d74_60785_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":720,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":true},{"h":1032,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_37179_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_71851_original.jpg","large":"8a9fcd82814220a60181427969273d74_60147_large.jpg","medium":"8a9fcd82814220a60181427969273d74_11525_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_41285_353038_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_41285_936568_original.jpg","large":"8a9fcd82814220a60181427969273d74_41285_888521_large.jpg","medium":"8a9fcd82814220a60181427969273d74_41285_325631_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1035,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1038,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_2440_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_19875_original.jpg","large":"8a9fcd82814220a60181427969273d74_65411_large.jpg","medium":"8a9fcd82814220a60181427969273d74_16574_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_34662_695306_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_34662_76993_original.jpg","large":"8a9fcd82814220a60181427969273d74_34662_513207_large.jpg","medium":"8a9fcd82814220a60181427969273d74_34662_433470_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1032,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_36436_147500_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_36436_842412_original.jpg","large":"8a9fcd82814220a60181427969273d74_36436_328045_large.jpg","medium":"8a9fcd82814220a60181427969273d74_36436_733001_medium.jpg"},"disAffinity":0,"subReasons":"","displayPic":false,"w":608,"name":"files[]","h":1032,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":false},{"h":1035,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_61183_510186_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_61183_124927_original.jpg","large":"8a9fcd82814220a60181427969273d74_61183_884524_large.jpg","medium":"8a9fcd82814220a60181427969273d74_61183_422534_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1032,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_77176_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_60382_original.jpg","large":"8a9fcd82814220a60181427969273d74_16445_large.jpg","medium":"8a9fcd82814220a60181427969273d74_59940_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false},{"h":1026,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9fcd82814220a60181427969273d74_22369_thumbnail.jpg","original":"8a9fcd82814220a60181427969273d74_48411_original.jpg","large":"8a9fcd82814220a60181427969273d74_31677_large.jpg","medium":"8a9fcd82814220a60181427969273d74_70852_medium.jpg"},"disAffinity":0,"subReasons":"","subState":"","displayPic":false,"w":608,"name":"files[]","state":"APPROVED","uploadedBy":"AGENT","landscape":false}],"propertySize":600,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9fcd82814220a60181427969273d74_94101_648204_original.jpg","accomodationTypeDesc":"","formattedDeposit":"8 Lacs","id":"8a9fcd82814220a60181427969273d74","state":"READY","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"1 BHK Flat In Standalone Building for Lease In J C Nagar","longitude":77.63786189999999,"dateOnly":"2024-05-29T00:00:00+05:30","buyerProperty":false,"activateLater":false,"seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fflats-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fflats-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fflats-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fflats-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","indexName":"nobroker","locality":"J C Nagar","active":true,"creationDate":1654677662000,"swimmingPool":false,"activeViewCount":0,"propertyScore":1717659405000,"completeStreetName":"1st Main Road, near Ganesha temple ","accurateLocation":true,"filterPreferenceScore":0,"totalFloor":5,"mapped":false,"lift":false,"deposit":800000,"gym":false,"reactivationSource":"PROPERTY_DASHBOARD","detailUrl":"\u002Fproperty\u002F1-bhk-apartment-for-lease-in-j-c-nagar-bangalore-for-rs-800000\u002F8a9fcd82814220a60181427969273d74\u002Fdetail","activationDate":1716968205000,"leaseTypeNew":["FAMILY"],"facingDesc":"","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":true,"typeDesc":"1 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1VWt715","latitude":12.9876391,"promoted_b":false,"reactivationReqDate":1716957268000,"title":"1 BHK Flat In Standalone Building for Lease In J C Nagar","nbLocality":"Sarvagnanagar","leaseType":"FAMILY","society":"standalone building ","premium":false,"ownerName":"chandru raj ","street":"1st Main Road, near Ganesha temple ","propertyType":"RENT","secondaryTitle":"1st Main Road, near Ganesha temple ","floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9fcd82814220a60181427969273d74\u002F8a9fcd82814220a60181427969273d74_94101_933079_medium.jpg","showRequestPhoto":false,"lastActivationDate":1710510706000,"forLease":true,"address":"1st Main Road, near Ganesha temple , J C Nagar, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"1 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_1.png","formattedPrice":"15,000","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.987639100000000000,77.637861899999990000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"},{"propertyAge":10,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"furnishingDesc":"Semi","localityTruncated":"68\u002F1, Kadiranapalya, Indira...","negotiable":false,"type":"BHK2","ownerId":"ff8081815752a21b015755b970173ad9","rent":15000,"propertySize":850,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002F8a9f8bc38fadb4da018fadd875c308ab_43802_910839_original.jpg","score":{"lastUpdatedDate":"2024-05-25T13:20:28+05:30","transit":3.5,"id":"8a9f8bc38fadb4da018fadd875c308ab","lifestyle":7.3},"id":"8a9f8bc38fadb4da018fadd875c308ab","state":"READY","adminEvent":"PROPERTY","bathroom":1,"propertyTitle":"2 BHK House for Rent In 681, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","buyerProperty":false,"inactiveReason":"INCORRECT","locality":"68\u002F1, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","active":true,"waterSupply":"CORP_BORE","propertyScore":1716793021000,"accurateLocation":true,"filterPreferenceScore":0,"lift":false,"deposit":200000,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-68-1-kadiranapalya-indiranagar-bengaluru-j-c-nagar-karnataka-560038-india-bangalore-for-rs-15000\u002F8a9f8bc38fadb4da018fadd875c308ab\u002Fdetail","activationDate":1716620221000,"amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":true,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","typeDesc":"2 BHK","city":"bangalore","latitude":12.987639219163267,"facing":"S","leaseType":"COMPANY","premium":false,"forLease":false,"address":"Independent House, 20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar , 68\u002F1, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK House for Rent In 68...","url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","formattedPrice":"15,000","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":true,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"buildingType":"IH","lastUpdateDate":1716648803000,"balconies":0,"photos":[{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_43802_29062_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_43802_910839_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_43802_485578_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_43802_853530_medium.jpg"},"disAffinity":1019,"imageSource":"nobroker","subReasons":"","displayPic":true,"w":450,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_17552_828401_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_17552_712888_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_17552_414337_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_17552_14306_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_64139_667291_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_64139_208349_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_64139_932275_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_64139_203323_medium.jpg"},"disAffinity":50,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_88269_185574_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_88269_605124_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_88269_137195_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_88269_148430_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","subState":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_3627_101339_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_3627_677135_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_3627_810561_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_3627_569894_medium.jpg"},"disAffinity":40,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"h":337,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_791_560226_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_791_923790_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_791_173837_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_791_855824_medium.jpg"},"disAffinity":30,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":750,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":true},{"imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_96945_965055_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_96945_504230_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_96945_26570_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_96945_764467_medium.jpg"},"disAffinity":30,"subReasons":"","displayPic":false,"w":750,"name":"files[]","h":337,"state":"APPROVED","duplicate":false,"title":"","uploadedBy":"AGENT","landscape":true},{"h":1000,"duplicate":false,"title":"","imagesMap":{"thumbnail":"8a9f8bc38fadb4da018fadd875c308ab_44571_666568_thumbnail.jpg","original":"8a9f8bc38fadb4da018fadd875c308ab_44571_865689_original.jpg","large":"8a9f8bc38fadb4da018fadd875c308ab_44571_735274_large.jpg","medium":"8a9f8bc38fadb4da018fadd875c308ab_44571_115046_medium.jpg"},"disAffinity":-100,"imageSource":"nobroker","subReasons":"","displayPic":false,"w":450,"name":"image","state":"APPROVED","uploadedBy":"OWNER","landscape":false}],"availableFrom":1716575400000,"loanAvailable":true,"accomodationTypeDesc":"","formattedDeposit":"2 Lacs","localityId":"sarvagnanagar_bangalore","lastUpdateString":"Today","longitude":77.63786192983389,"dateOnly":"2024-05-25T00:00:00+05:30","activateLater":false,"indexName":"nobroker","seoDescription":"[{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Toit Micro Brewery\",\"longitude\":77.6405569,\"seoUrl\":\"\u002Fvillas-for-rent-near-toit_micro_brewery_indira_nagar_bangalore\",\"latitude\":12.9792514,\"id\":\"ChIJc0JAFaUWrjsRRXSXJPX7YFo\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Cinepolis Orion East\",\"longitude\":77.6326507,\"seoUrl\":\"\u002Fvillas-for-rent-near-cinepolis_orion_east_maruthi_sevanagar_bangalore\",\"latitude\":13.0012096,\"id\":\"ChIJPzHD3MIWrjsR-MX_IBB8F_Q\"},{\"localityId\":\"ChIJOZHiKegWrjsRCZnZz7ZsNuo\",\"name\":\"Mukunda Theatre\",\"longitude\":77.6359377,\"seoUrl\":\"\u002Fvillas-for-rent-near-mukunda_theatre_maruthi_sevanagar_bangalore\",\"latitude\":13.0032242,\"id\":\"ChIJ5QodqdwWrjsRoDF9Lb1LfSM\"},{\"localityId\":\"ChIJkQN3GKQWrjsRNhBQJrhGD7U\",\"name\":\"Loft 38\",\"longitude\":77.6409023,\"seoUrl\":\"\u002Fvillas-for-rent-near-loft_38_indira_nagar_bangalore\",\"latitude\":12.9711882,\"id\":\"ChIJ36n9s7MWrjsR1I8y6pFw63Q\"},{\"localityId\":\"ChIJHSKs-cwWrjsRRwIw0k8qd2Y\",\"name\":\"Baiyappanahalli Metro Station\",\"longitude\":77.6524562,\"seoUrl\":\"\u002Fvillas-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9907481,\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\"}]","creationDate":1716608595000,"swimmingPool":false,"activeViewCount":4,"completeStreetName":"20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","mapped":false,"totalFloor":3,"gym":false,"leaseTypeNew":["COMPANY"],"facingDesc":"South","furnishing":"SEMI_FURNISHED","photoAvailable":true,"shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1vT1CJ5","promoted_b":false,"title":"2 BHK House for Rent In 681, Kadiranapalya, Indiranagar, Bengaluru, J C Nagar, Karnataka 560038, India","nbLocality":"Sarvagnanagar","society":"Independent House","ownerName":"Nizamuddin Fakruddin","street":"20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","propertyType":"RENT","secondaryTitle":"Independent House, 20\u002F2,1st cross Marappa Thota. Church Road. J..Nagar ","aea__":{"GATED_SECURITY":{"display_value":"Yes","value":"SECURITY_ONLY"},"NON_VEG_ALLOWED":{"display_value":"Yes","value":"NON_VEG_ALLOWED"},"SECONDARY_NUMBER":{"value":"NjM2MjM0NzY5MQ=="},"HOUSE_KEY_WITH":{"display_value":"I will show","value":"I_HAVE_KEYS"},"DIRECTIONS":{"value":"It's on the main church road j.c.nagar. next to Balaji home needs store"}},"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fimages\u002F8a9f8bc38fadb4da018fadd875c308ab\u002F8a9f8bc38fadb4da018fadd875c308ab_43802_853530_medium.jpg","floor":0,"showRequestPhoto":false,"inactiveReasonDesc":"Inc Info","videoUnit":[],"highLights":[],"colour":"GREEN","tenantTypeDesc":"","location":"12.987639219163267000,77.637861929833890000","maintenance":false,"sharedAccomodation":false},{"propertyAge":1,"parking":"TWO_WHEELER","parkingDesc":"Bike","contactedStatusDetails":{"contacted":false},"shortlistedByLoggedInUser":false,"lastUpdateDate":1718529201000,"balconies":2,"furnishingDesc":"Semi","localityTruncated":"Jogupalya","negotiable":false,"type":"BHK2","ownerId":"ff8081815bedef9f015bf1b0af942770","rent":35000,"availableFrom":1719772200000,"photos":[],"propertySize":1100,"loanAvailable":true,"originalImageUrl":"\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","accomodationTypeDesc":"","score":{"lastUpdatedDate":"2024-06-16T15:12:38+05:30","transit":7.1,"id":"8a9f8e43901c6d6e01901cd46173146c","lifestyle":8.2},"formattedDeposit":"1.5 Lacs","id":"8a9f8e43901c6d6e01901cd46173146c","state":"READY","localityId":"jogupalya_bangalore","lastUpdateString":"Today","adminEvent":"PROPERTY","bathroom":2,"propertyTitle":"2 BHK Flat In Standalone Building for Rent In Jogupalya","longitude":77.63238194579877,"dateOnly":"2024-06-16T00:00:00+05:30","buyerProperty":false,"activateLater":false,"indexName":"nobroker","seoDescription":"[{\"id\":\"ChIJZbZd-qQWrjsRe7G5a9GUZ9U\",\"name\":\"Indiranagar\",\"seoUrl\":\"\u002Fflats-for-rent-near-indiranagar_metro_station_bangalore\",\"latitude\":12.9782619,\"longitude\":77.63852570000002,\"placeType\":\"metro\"},{\"id\":\"ChIJSd03apkWrjsRmpKnR3Cq5Ck\",\"name\":\"Halasuru\",\"seoUrl\":\"\u002Fflats-for-rent-near-halasuru_bangalore\",\"latitude\":12.9763635,\"longitude\":77.62671499999999,\"placeType\":\"metro\"},{\"id\":\"ChIJVwesD7UWrjsRTfFPD0Gte2o\",\"name\":\"Baiyappanahalli\",\"seoUrl\":\"\u002Fflats-for-rent-near-baiyappanahalli_metro_station_bangalore\",\"latitude\":12.9906677,\"longitude\":77.6525905,\"placeType\":\"metro\"},{\"id\":\"ChIJP-ri17AWrjsROiCDxVe3X74\",\"name\":\"Swami Vivekananda Road\",\"seoUrl\":\"\u002Fflats-for-rent-near-swamy_vivekananda_road_metro_station_bangalore\",\"latitude\":12.9859106,\"longitude\":77.645004,\"placeType\":\"metro\"},{\"id\":\"ChIJdUZ_eWUWrjsRfo6CcEaixkU\",\"name\":\"Cubbon Park\",\"seoUrl\":\"\u002Fflats-for-rent-near-cubbon_park_bangalore\",\"latitude\":12.9809008,\"longitude\":77.59746539999999,\"placeType\":\"metro\"}]","locality":"Jogupalya","active":true,"creationDate":1718470599000,"swimmingPool":false,"waterSupply":"CORP_BORE","activeViewCount":0,"completeStreetName":"Halasuru, near Temple Tree Apartment","accurateLocation":true,"filterPreferenceScore":0,"totalFloor":3,"mapped":false,"lift":false,"deposit":150000,"gym":false,"detailUrl":"\u002Fproperty\u002F2-bhk-apartment-for-rent-in-jogupalya-bangalore-for-rs-35000\u002F8a9f8e43901c6d6e01901cd46173146c\u002Fdetail","reactivationSource":"PROPERTY_DASHBOARD","activationDate":1718529195000,"leaseTypeNew":["FAMILY"],"facingDesc":"East","furnishing":"SEMI_FURNISHED","amenities":"{\"LIFT\":false,\"GYM\":false,\"INTERNET\":false,\"AC\":false,\"CLUB\":false,\"INTERCOM\":false,\"POOL\":false,\"CPA\":false,\"FS\":false,\"SERVANT\":false,\"SECURITY\":false,\"SC\":false,\"GP\":false,\"PARK\":false,\"RWH\":false,\"STP\":false,\"HK\":false,\"PB\":false,\"VP\":false}","photoAvailable":false,"typeDesc":"2 BHK","city":"bangalore","shortUrl":"http:\u002F\u002Fnobr.kr\u002Fsv\u002F1SQ4926","latitude":12.973223466234932,"promoted_b":false,"reactivationReqDate":1718526710000,"facing":"E","title":"2 BHK Flat In Standalone Building for Rent In Jogupalya","nbLocality":"Jogupalya","leaseType":"FAMILY","society":"standalone building ","premium":false,"ownerName":"K Sheshadri","street":"Halasuru, near Temple Tree Apartment","propertyType":"RENT","secondaryTitle":"Halasuru, near Temple Tree Apartment","aea__":{"ACCURATE_LOCATION":{"display_value":"Landmark","value":"LANDMARK"}},"floor":1,"thumbnailImage":"https:\u002F\u002Fassets.nobroker.in\u002Fstatic\u002Fimg\u002F534_notxt.jpg","showRequestPhoto":true,"forLease":false,"address":"Halasuru, near Temple Tree Apartment, Jogupalya, bangalore","sponsored":false,"documentName":"property","formattedMaintenanceAmount":"","propertyTitleTruncated":"2 BHK Flat In Standalone Bu...","videoUnit":[],"url":"\u002Fstatic\u002Fimg\u002Ficon\u002Fmap\u002Fnew\u002Fnew_2.png","highLights":[],"formattedPrice":"35,000","colour":"GREEN","tenantTypeDesc":"","maintenanceIncluded":false,"amenitiesMap":{"INTERCOM":false,"AC":false,"RWH":false,"HK":false,"INTERNET":false,"LIFT":false,"CLUB":false,"GP":false,"FS":false,"STP":false,"PARK":false,"SC":false,"PB":false,"CPA":false,"SECURITY":false,"POOL":false,"GYM":false,"VP":false,"SERVANT":false},"location":"12.973223466234932000,77.632381945798770000","maintenance":false,"sharedAccomodation":false,"buildingType":"AP"}],"nearBySeoData":{"seo_description":"Contact Owners Directly - Get Without Brokerage Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka along with Rent Agreement and BEST Trusted local Packers And Movers for shifting to new Home only on NOBROKER. Check Now Rental Properties in Indiranagar,Jayanagar,Rajajinagar WITHOUT BROKERAGE to SAVE YOUR MONEY.","h1":"Apartments, Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage | Rental Houses in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage","title":"6,851 Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage - NoBroker Rental Properties in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage","seo_keywords":"flats for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, apartments for rent in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage, houses for rent in Indiranagar,Jayanagar,Rajajinagar"},"clearListPageNearByProperties":false,"nearByStatusLoading":false,"recommendedProperties":null,"givenFeedback":false,"isLeaveIntentLoading":false,"societyList":{},"societyListLoading":false,"societyListErrorMessage":null,"isContactOwnerClicked":false,"contactClickId":null,"isFetchingPropertiesOnMap":false,"listPageLastTwentyFourHr":[],"propertyDetailInfo":{},"nearbyCalled":true,"preSelectedMetroStation":[],"listPageHighBudget":[],"highBudgetRange":"","listPagePropertyFetchedSuccess":true,"listCanonicalParseResponse":null,"userPOIListPage":[],"propertyNudgesListPage":[],"personalizedDataObj":{},"builderBannerInfo":null,"pendingCallProperty":{}}}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://www.nobroker.in",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.nobroker.in/search-context?query={search_term}",
"query-input": "required name=search_term",
"inLanguage":"en-US"
}
}
</script>
</link>
</link>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</link>
</link>
</head>
<body>
<div id="appPortal">
</div>
<div id="modal-root">
</div>
<div id="app">
<div class="app-wrapper">
<main class="text-defaultcolor" id="listPageTop" style="background-color:#f2f2f2">
<div id="listPageHeader">
<header class="home-service-lead-parent fixed top-0 left-0 w-full" id="navheaderContainer" style="z-index:14">
<div class="p-0.5p h-6.1p bg-white fixed top-0 left-0 w-full z-30 flex justify-between items-center flex-nowrap flex-row tp:h-5p tp:justify-center" id="navHeader" style="box-shadow:none">
<div class="hidden tp:flex absolute left-1.5p">
<div class="cursor-pointer inline-block w-auto m-auto transition-all duration-500 ease-linear">
<div class="block h-0.2p w-2.4p bg-black transition-all duration-500 ease-in-out my-0.5p mx-auto">
</div>
<div class="block h-0.2p bg-black transition-all duration-500 ease-in-out my-0 mx-auto">
</div>
<div class="block h-0.2p w-2.4p bg-black transition-all duration-500 ease-in-out my-0.5p mx-auto">
</div>
</div>
</div>
<div class="cursor-pointer flex items-center tp:flex-row">
<div class="desktop-logo pl-0.5p po:flex po:absolute po:left-5p po:items-center po:justify-center">
<img alt="logo" class="" src="https://assets.nobroker.in/static/img/logos/nb_logo_new_trans.svg" style="width:170px;height:45px"/>
</div>
<span class="po:hidden tp:hidden align-middle ml-2p inline-block sd-0.5p">
</span>
<span class="po:hidden tp:hidden float-right mt-2p">
<div>
<div>
<div class="flex items-center">
<div class="heading-6 text-header-item-color font-light">
Rent
</div>
<div>
<svg class="transform -rotate-90" color="#555" height="13" style="width:20px;height:13px;margin:2px" viewbox="0 0 24 24" width="20">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#555">
</path>
</svg>
</div>
</div>
</div>
</div>
</span>
</div>
<div class="hidden relative tp:flex tp:absolute tp:right-1.2p tp:items-center justify-center w-auto min-h-0 min-w-0">
</div>
<div class="hidden tp:flex">
</div>
<div class="flex items-center tp:hidden">
<div class="flex items-center gap-0.2p">
<div class="select-none cursor-pointer mx-0.6 my-auto">
<div class="flex border-1 border-solid border-gray-common-color rounded-sm h-3p pt-0.3p pl-0.8p pb-0.3p pr-0.8p" id="rentPayment">
<div class="mr-0.5p border-r-1 border-r-gray-common-color pr-0.5p">
<img alt="rent" src="https://assets.nobroker.in/nb-new/public/payrent.png"/>
</div>
<div class="text-header-text-color">
Pay Rent
</div>
</div>
</div>
<a class="block tp:hidden select-none cursor-pointer mx-0.6 my-auto" href="/list-your-property-for-rent-sale?nbFr=home_page" rel="noopener noreferrer" target="_blank">
<div>
<button class="btn btn-default btn-sm" id="headerHouseOwner" style="height:30px;font-weight:400;padding:3px 10px" type="button">
Post Your Property
</button>
</div>
</a>
</div>
<div class="flex items-center">
<div class="m-auto py-0.8p">
<div class="flex mx-1.5p">
Sign up
</div>
</div>
<div class="m-auto py-0.8p">
<div class="px-1p border-l-1 border-l-solid border-l-header-grey cursor-pointer">
Log in
</div>
</div>
<a class="flex border-l-1 border-l-solid border-l-header-grey cursor-pointer relative px-0.5p" target="_self">
<img alt="shortlist" class="w-3.2p h-3.2p" src="https://assets.nobroker.in/nb-new/public/shortlistNotification.svg"/>
<div>
</div>
</a>
<div class="focus:outline-0 m-auto py-0.8p px-0 relative focus:outline-0" id="main-menu" tabindex="0">
<div class="flex py-0 px-1.5p border-l-1 border-l-solid border-l-header-grey items-center cursor-pointer">
<img alt="hamburger" class="w-1.7p h-1.7p mr-0.6" src="https://assets.nobroker.in/nb-new/public/hamburger-menu.svg"/>
Menu
</div>
<div class="hidden" style="box-shadow:0 10px 10px 0 rgba(0, 0, 0, 0.1);max-height:calc(100vh - 52px)">
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color my-0.6p mx-2.5p border-b-1 border-b-solid border-b-card-overview-border-color">
Post Your Property
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Rental Agreement
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Painting & Cleaning
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Packers and Movers
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Refer & Earn
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Rent Receipts
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Tenant Plans
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Owner Plans
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Buyer Plans
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Seller Plans
</a>
<div>
<div class="border-b-1 border-b-solid border-b-card-overview-border-color py-0.8p px-0 my-0 mx-2.5p font-normal block text-header-menu-color text-left decoration-0 cursor-pointer">
<span>
Commercial Plans
</span>
<span class="float-right">
<svg class="transform -rotate-90" color="#999" height="13" style="width:13px;height:13px;margin:2px" viewbox="0 0 24 24" width="13">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#999">
</path>
</svg>
</span>
</div>
</div>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Careers
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Corporate Enquiry
</a>
<a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">
Blog
</a>
<div>
<div class="border-none py-1p px-0 my-0p mx-2.5p no-underline pb-0 mb-1p border-b-0">
<span class="cursor-pointer">
Contact Us
</span>
<span class="float-right">
<svg class="transform rotate-90" color="#999" height="13" style="width:13px;height:13px;margin:2px" viewbox="0 0 24 24" width="13">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#999">
</path>
</svg>
</span>
<div class="mt-0.7p cursor-default">
<div>
<div class="text-12 leading-3 text-default-color pt-0.6 pb-01.p">
Email
</div>
<a class="leading-4 text-header-item-color pt-0.4p pb-0.6p cursor-pointer" href="mailto:hello@nobroker.in?Subject=Hello%">
hello@nobroker.in
</a>
</div>
<div class="my-1p mx-0 flex justify-between">
<a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://www.facebook.com/nobroker.com" rel="noopener noreferrer" target="_blank">
<svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M17,2V2H17V6H15C14.31,6 14,6.81 14,7.5V10H14L17,10V14H14V22H10V14H7V10H10V6A4,4 0 0,1 14,2H17Z" fill="#555">
</path>
</svg>
</a>
<a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://www.twitter.com/nobrokercom" rel="noopener noreferrer" target="_blank">
<svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z" fill="#555">
</path>
</svg>
</a>
<a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://plus.google.com/+NobrokerIn" rel="noopener noreferrer" target="_blank">
<svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M23,11H21V9H19V11H17V13H19V15H21V13H23M8,11V13.4H12C11.8,14.4 10.8,16.4 8,16.4C5.6,16.4 3.7,14.4 3.7,12C3.7,9.6 5.6,7.6 8,7.6C9.4,7.6 10.3,8.2 10.8,8.7L12.7,6.9C11.5,5.7 9.9,5 8,5C4.1,5 1,8.1 1,12C1,15.9 4.1,19 8,19C12,19 14.7,16.2 14.7,12.2C14.7,11.7 14.7,11.4 14.6,11H8Z" fill="#555">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="w-full bg-white z-20 fixed left-0 top-6.1p tp:top-5p hidden" style="box-shadow:0 2px 10px #0000001b">
<div class="h-px w-[calc(100% - 4p)] m-auto" style="background:#dedede">
</div>
<div class="py-1p px-2p text-14 cursor-pointer select-none">
<div class="flex py-0 border-l-o border-solid border-header-grey first:border-0">
Sign up
</div>
</div>
<div class="py-1p px-2p text-14 cursor-pointer select-none">
<div class="flex py-0 border-l-o border-solid border-header-grey first:border-0">
Log in
</div>
</div>
</div>
</header>
</div>
<nav class="w-full bg-sticky-header-bg-color bg-none left-0 right-0 top-5p py-0.5p pl-2.5p pr-3 border-b-1 border-t-1 border-sticky-header-border-color mt-1.1p fixed nb__1-LGE" style="z-index:6">
<div class="flex justify-between items-center">
<div class="flex mt-0.5 mb-0.2p" style="flex:3">
<section class="flex nb__3xoyg">
<div class="flex-1 relative cursor-pointer">
<span>
<aside class="search-input-wrapper-new flex items-center relative">
<span class="listpage-serach-selected-localities" id="selectedLocalities">
<span class="selected-locality-item" id="selectedLocalities" title="Indiranagar">
Indiranagar
<span>
<svg class="mr-0.2p" color="#fff" height="10" style="width:10px;height:10px;margin:0" viewbox="0 0 24 24" width="10">
<path class="" d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" fill="#fff">
</path>
</svg>
</span>
</span>
<span class="selected-locality-item" id="selectedLocalities" title="Jayanagar">
Jayanagar
<span>
<svg class="mr-0.2p" color="#fff" height="10" style="width:10px;height:10px;margin:0" viewbox="0 0 24 24" width="10">
<path class="" d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" fill="#fff">
</path>
</svg>
</span>
</span>
<span class="selected-locality-item" id="selectedLocalities" title="Rajajinagar">
Rajajinagar
<span>
<svg class="mr-0.2p" color="#fff" height="10" style="width:10px;height:10px;margin:0" viewbox="0 0 24 24" width="10">
<path class="" d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" fill="#fff">
</path>
</svg>
</span>
</span>
</span>
<div class="nb-google-autocomplete">
<div class="form-group no-label" controlid="listPageSearchLocality">
<input autocomplete="off" class="form-control" id="listPageSearchLocality" placeholder="" style="padding-left:8px;border:1px solid #666666;border-top-left-radius:12px;border-bottom-left-radius:12px;border-right:0px;cursor:auto;padding-right:8px;pointer-events:auto" type="text" value=""/>
</div>
</div>
<div class="absolute right-2p text-12 p-0.3p rounded-4 gap-0.3p flex bg-card-overview-border-color cursor-pointer">
<span class="px-1p rounded-4 py-0.3p" style="background:#E9544F;color:#ffffff">
Location
</span>
<span class="px-1p rounded-4 py-0.3p">
Metro
</span>
</div>
</aside>
</span>
</div>
<button class="listpage-search-button rounded-none -ml-0.5 btn btn-primary" id="search" type="button">
Search
</button>
</section>
<span class="cursor-pointer ml-5 self-center whitespace-nowrap underline mt-2.5 text-1.3p text-save-search-color" id="saveSearch">
Save Search
</span>
</div>
<div class="flex justify-between text-center items-center" style="width:360px">
<div class="ml-auto">
<div class="flex text-center items-center w-12p h-3.8p justify-center">
<div class="flex h-full w-full m-auto justify-center items-center rounded-12 relative" style="box-shadow:0px 4px 10px #455B6330">
<div class="flex p-0.3p w-full h-full rounded-12 justify-between" style="background-color:white">
<button class="w-1/2 leading-none" style="background-color:#008387;border-radius:10px" type="button">
<div class="flex text-12 font-semibold items-center justify-center" style="color:white">
<img alt="list-icon" height="16" src="https://assets.nobroker.in/nb-new/public/BuilderProjectsListPage/listIconWhite.svg" width="16"/>
List
</div>
</button>
<button class="w-1/2 leading-none" style="background-color:white" type="button">
<div class="flex text-12 font-semibold items-center justify-center" style="color:#008387">
<img alt="map-icon" height="16" src="https://assets.nobroker.in/nb-new/public/BuilderProjectsListPage/mapIcon.svg" width="16"/>
Map
</div>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<div class="po:max-w-screen-xl mx-auto mb-0 po:flex grid tp:block tp:mt-0 tp:mx-0 mt-11.7p" id="listPageContainer" style="grid-template-columns:2fr 4fr 1fr;gap:10px;width:1280px">
<div class="tp:hidden nb__1EbLr">
<div class="nb__6ISas">
<div class="heading-6 w-full h-full relative nb__39G_b nb__22s0J">
Filters
</div>
<div class="heading-6 w-full h-full relative nb__22s0J" id="PremiumFilterTab">
Premium Filters
<span class="nb__2pq5i">
New
</span>
</div>
</div>
<div class="nb__2Z1fi nb__atn_T">
<div class="cursor-pointer nb__Xh4O6 nb__H98md" id="resetButton">
<svg class="" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M63.22,22.34a2.57,2.57,0,0,0-3.62.06l-3.39,3.52a28.13,28.13,0,1,0-7.94,21.95,2.56,2.56,0,0,0-3.66-3.58,23,23,0,1,1,6.47-18.45l-3.19-3.19a2.56,2.56,0,1,0-3.62,3.62L52,34a2.56,2.56,0,0,0,1.81.75h0a2.56,2.56,0,0,0,1.82-.79L63.28,26A2.57,2.57,0,0,0,63.22,22.34Z" fill="#000000">
</path>
</svg>
Reset
</div>
<div>
<div>
<div>
<div>
<div class="font-bold">
BHK Type
</div>
<div class="grid grid-cols-4 gap-2 cursor-pointer w-9.8pe">
<div class="unselected" id="" name="appartment1Rk" value="RK1">
1 RK
</div>
<div class="unselected" id="" name="appartment1BHK" value="BHK1">
1 BHK
</div>
<div class="unselected" id="" name="appartment2BHK" value="BHK2">
2 BHK
</div>
<div class="unselected" id="" name="appartment3BHK" value="BHK3">
3 BHK
</div>
<div class="unselected" id="" name="appartment4BHK" value="BHK4">
4 BHK
</div>
<div class="unselected" id="" name="appartment4PlusBHK" value="BHK4PLUS">
4+ BHK
</div>
</div>
</div>
<div class="font-bold mt-3">
Rent Range: ₹
<!-- -->
0
<!-- -->
to ₹
<!-- -->
5 Lacs
</div>
<div class="my-15px -mx-10p-">
<div class="rc-slider nb-slider">
<div class="rc-slider-rail" style="background-color:#E2E2E2;height:4px">
</div>
<div class="rc-slider-track rc-slider-track-1" style="background-color:#009587;left:0%;right:auto;width:100%">
</div>
<div class="rc-slider-step">
</div>
<div aria-disabled="false" aria-valuemax="70" aria-valuemin="0" aria-valuenow="0" class="rc-slider-handle rc-slider-handle-1" role="slider" style="background-color:white;height:22px;width:22px;margin-top:-9px;border:1px solid #E2E2E2;left:0%;right:auto;transform:translateX(-50%)" tabindex="0">
</div>
<div aria-disabled="false" aria-valuemax="70" aria-valuemin="0" aria-valuenow="70" class="rc-slider-handle rc-slider-handle-2" role="slider" style="background-color:white;height:22px;width:22px;margin-top:-9px;border:1px solid #E2E2E2;left:100%;right:auto;transform:translateX(-50%)" tabindex="0">
</div>
<div class="rc-slider-mark">
</div>
</div>
</div>
<div>
<div class="font-bold relative">
Visit properties within next 2 days
<super class="text-white absolute bottom-1.2p rounded-20 text-10 ml-0.5p pt-0.1p px-0.6 h-fit bg-primary-color">
New
</super>
</div>
<div class="flex mb-2.5">
<div class="nb-checkbox whitespace-nowrap nb-checkbox checkbox">
<label for="show_schedule_visit">
<input id="show_schedule_visit" type="checkbox" value="true"/>
<span class="">
Show properties where owner is hosting a visit
</span>
</label>
</div>
</div>
</div>
<div>
<div class="font-bold mt-3">
Availability
</div>
<div class="my-3 grid grid-cols-2 gap-2">
<label class="nb-radio radio-inline" for="availabilityImmediate">
<input id="availabilityImmediate" name="availability" type="radio" value="immediate"/>
Immediate
</label>
<label class="nb-radio radio-inline" for="availability15Days">
<input id="availability15Days" name="availability" type="radio" value="within_15_days"/>
Within 15 Days
</label>
<label class="nb-radio radio-inline" for="availability30Days">
<input id="availability30Days" name="availability" type="radio" value="within_30_days"/>
Within 30 Days
</label>
<label class="nb-radio radio-inline" for="availability30PlusDays">
<input id="availability30PlusDays" name="availability" type="radio" value="after_30_days"/>
After 30 Days
</label>
</div>
</div>
<div>
<div class="font-bold">
Preferred Tenants
</div>
<div class="my-3 grid grid-cols-2 gap-2">
<div class="nb-checkbox checkbox">
<label for="tenant_family">
<input id="tenant_family" type="checkbox" value="FAMILY"/>
<span class="">
Family
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="tenant_company">
<input id="tenant_company" type="checkbox" value="COMPANY"/>
<span class="">
Company
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="tenant_bachelor_male">
<input id="tenant_bachelor_male" type="checkbox" value="BACHELOR_MALE"/>
<span class="">
Bachelor Male
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="tenant_bachelor_female">
<input id="tenant_bachelor_female" type="checkbox" value="BACHELOR_FEMALE"/>
<span class="">
Bachelor Female
</span>
</label>
</div>
</div>
</div>
<div class="mb-1p">
<div class="font-bold">
Property Type
</div>
<div class="flex-wrap w-100pe">
<div class="nb-checkbox checkbox">
<label for="apartment">
<input id="apartment" type="checkbox" value="AP"/>
<span class="">
Apartment
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="ih">
<input id="ih" type="checkbox" value="IH"/>
<span class="">
Independent House/Villa
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="gc">
<input id="gc" type="checkbox" value="GC"/>
<span class="">
Gated Community Villa
</span>
</label>
</div>
</div>
</div>
<div>
<div class="font-bold">
Furnishing
</div>
<div class="flex justify-between w-7.5pe mb-3">
<div class="nb-checkbox checkbox">
<label for="furnishingFull">
<input id="furnishingFull" type="checkbox" value="FULLY_FURNISHED"/>
<span class="">
Full
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="furnishingSemi">
<input id="furnishingSemi" type="checkbox" value="SEMI_FURNISHED"/>
<span class="">
Semi
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="furnishingNo">
<input id="furnishingNo" type="checkbox" value="NOT_FURNISHED"/>
<span class="">
None
</span>
</label>
</div>
</div>
</div>
<div>
<div class="font-bold">
Parking
</div>
<div class="flex space-x-4">
<div class="nb-checkbox checkbox">
<label for="2-wheeler">
<input id="2-wheeler" type="checkbox" value="TWO_WHEELER"/>
<span class="">
2 Wheeler
</span>
</label>
</div>
<div class="nb-checkbox checkbox">
<label for="4-wheeler">
<input id="4-wheeler" type="checkbox" value="FOUR_WHEELER"/>
<span class="">
4 Wheeler
</span>
</label>
</div>
</div>
</div>
<div class="flex -mt-10p- mb-15px">
<div class="nb-checkbox checkbox">
<label for="show_only_lease">
<input id="show_only_lease" type="checkbox" value="1"/>
<span class="">
Show Only Lease Properties
</span>
</label>
</div>
</div>
<div class="mb-7">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-3.5 po:min-w-full tp:mr-0 tp:mt-0" id="propertyCardConatiner" style="width:720px">
<div class="flex flex-col bg-white p-1.5p nb__3-IFV" style="width:720px;height:123px">
<section class="flex justify-between">
<ul class="flex justify-start items-center w-auto p-0 list-none min-w-58pe" itemscope="" itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a class="no-underline text-defaultcolor" href="/" itemprop="item" itemtype="https://schema.org/Thing">
<span itemprop="name">
Home
</span>
<meta content="1" itemprop="position"/>
</a>
<!-- -->
/
<!-- -->
</li>
<li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a class="no-underline text-defaultcolor" href="/flats-for-rent-in-bangalore_bangalore" itemprop="item">
<span class="capitalize" itemprop="name">
bangalore
</span>
<meta content="2" itemprop="position"/>
</a>
</li>
<li class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-11.5p">
/
<span itemprop="item" itemtype="https://schema.org/Thing">
<span>
Multiple
</span>
</span>
</li>
</ul>
<div class="flex flex-1.7 ml-1.8 h-4.6p">
<span class="w-25pe self-center">
Sort By:
</span>
<div class="nb-select form-group">
<div class="nb-select-loader" style="height:40px;padding:6px 8px">
<span class="nb-select-loader__value">
nbrank,desc
</span>
</div>
</div>
</div>
</section>
<h1 class="heading-5 truncate m-0 px-0 pt-1.5p pb-0.5p" style="width:690px">
<span id="propertyCount">
1,081
</span>
-
<!-- -->
Apartments, Flats for Rent in Indiranagar,Jayanagar,Rajajinagar, Bangalore Karnataka Without Brokerage | Rental Houses in Indiranagar,Jayanagar,Rajajinagar Karnataka Without Brokerage
</h1>
</div>
<div id="listCardContainer" style="width:720px">
<div class="infinite-scroll-component__outerdiv">
<div class="infinite-scroll-component" style="height:auto;overflow:auto;-webkit-overflow-scrolling:touch">
<article aria-label="article" id="article_0">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="ff8081815b954d52015b956c7e8f0faa" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/ff8081815b954d52015b956c7e8f0faa/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/ff8081815b954d52015b956c7e8f0faa/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Kiran
</span>
</span>
<span itemprop="price">
<!-- -->
25000
</span>
</span>
<span itemprop="startDate">
2024-06-13
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560011
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560011
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.92881008032945" itemprop="latitude"/>
<meta content="77.5858978588955" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital"/>
<meta content="INR 25000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 25,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff8081815b954d52015b956c7e8f0faa/ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff8081815b954d52015b956c7e8f0faa/ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/11
</span>
</div>
<meta content="ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_1">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f91038ffcabc0018ffcd1f6810fbb" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-lakshminarayanapuram-rajajinagar-bengaluru-karnataka-560010-india-bangalore-for-rs-20000/8a9f91038ffcabc0018ffcd1f6810fbb/detail" target="_blank">
2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
11th Main 7th Cross ; TVS Showroom
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-lakshminarayanapuram-rajajinagar-bengaluru-karnataka-560010-india-bangalore-for-rs-20000/8a9f91038ffcabc0018ffcd1f6810fbb/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Padma Srinivas
</span>
</span>
<span itemprop="price">
<!-- -->
20000
</span>
</span>
<span itemprop="startDate">
2024-06-17
</span>
<span itemprop="name">
2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
11th Main 7th Cross ; TVS Showroom
</span>
<span>
2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</span>
<span itemprop="streetAddress">
Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.992919276883832" itemprop="latitude"/>
<meta content="77.55692828446627" itemprop="longitude"/>
</span>
</div>
<meta content="11th Main 7th Cross ; TVS Showroom "/>
<meta content="INR 20000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 20,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
600 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<img alt="2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India" class="my-0 mx-auto relative flex items-center object-contain" height="100%" src="https://images.nobroker.in/images/8a9f91038ffcabc0018ffcd1f6810fbb/8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
<noscript>
<img alt="2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f91038ffcabc0018ffcd1f6810fbb/8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/5
</span>
</div>
<meta content="8a9f91038ffcabc0018ffcd1f6810fbb_55502_110850_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
17-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f91038ffcabc0018ffcd1f6810fbb-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
12:30 PM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_2">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f94438eb382b8018eb3b811611863" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK House for Rent In Jayanagar 4th T Block">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in-jayanagar-4th-t-block-bangalore-for-rs-49500/8a9f94438eb382b8018eb3b811611863/detail" target="_blank">
3 BHK House for Rent In Jayanagar 4th T Block
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, Jayanagar Head Postoffice
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in-jayanagar-4th-t-block-bangalore-for-rs-49500/8a9f94438eb382b8018eb3b811611863/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
renuga
</span>
</span>
<span itemprop="price">
<!-- -->
49500
</span>
</span>
<span itemprop="startDate">
2024-06-17
</span>
<span itemprop="name">
3 BHK House for Rent In Jayanagar 4th T Block
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, Jayanagar Head Postoffice
</span>
<span>
3 BHK House for Rent In Jayanagar 4th T Block
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar 4th T block
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK House for Rent In Jayanagar 4th T Block
</span>
<span itemprop="streetAddress">
Jayanagar 4th T block
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.9236939" itemprop="latitude"/>
<meta content="77.5860969" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, Jayanagar Head Postoffice"/>
<meta content="INR 49500" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 49,500
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
3,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
2,000 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK House for Rent In Jayanagar 4th T Block" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f94438eb382b8018eb3b811611863/8a9f94438eb382b8018eb3b811611863_76930_265179_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/16
</span>
</div>
<meta content="8a9f94438eb382b8018eb3b811611863_76930_265179_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
17-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f94438eb382b8018eb3b811611863-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
03:00 PM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_3">
<div height="auto" id="top_societies_carousel" offset="100">
<div class="flex justify-between mt2.5 mb1.25 po:flex-col po:m-0">
<div class="nb__nETQj" id="TopSocieties">
<div class="nb__3k3qW">
<span class="w-100pe">
Top Societies in your Search
</span>
</div>
<div class="">
<div class="horizontal-slider-wrapper" style="width:auto">
<div class="horizontal-slider-sub-wrapper">
<div class="horizontal-slider-element service-undefined" id="horizontal-slider-elements-container-">
<div class="horizontal-slider-item" id="0" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/neo-divine-jayanagar_bangalore-prjt-5e9733fba5a1662dac0ace46?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4" src="https://images.nobroker.in/img/5e9733fba5a1662dac0ace46/5e9733fba5a1662dac0ace46_44954_501915_medium.jpg"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Neo Divine
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="1" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/kumar-ashraya-apartments-jayanagar_bangalore-prjt-5ba009ad714b568105763742?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4" src="https://images.nobroker.in/img/5ba009ad714b568105763742/5ba009ad714b568105763742_35940_952565_medium.jpg"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Kumar Ashraya Apartments
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="2" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/sobha-indraprastha--rajaji-nagar-bangalore_bangalore-prjt-5ba009ad714b568105760909?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4" src="https://images.nobroker.in/img/5ba009ad714b568105760909/5ba009ad714b568105760909_63293_786632_medium.jpg"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Sobha Indraprastha
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="3" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/r-j-gardens-indira-nagar-bangalore_bangalore-prjt-5ba009ad714b56810576425d?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4" src="https://images.nobroker.in/img/5ba009ad714b56810576425d/5ba009ad714b56810576425d_10570_718278_medium.jpg"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
R J Gardens
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="4" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/bella-casa-indira-nagar_bangalore-prjt-5ba009ad714b568105765b83?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Bella Casa
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="5" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/merci-apartment-indiranagar_bangalore-prjt-5ba009ad714b5681057636c2?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Merci Apartment
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="6" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/s.m.kuteer-kaggadasapura_bangalore-prjt-5ba009ad714b5681057644d0?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
S.M.Kuteer
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="7" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/jai-apartments-rajaji-nagar-rajaji-nagar_bangalore-prjt-63aac3a5289f010001810005?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Jai Apartments Rajaji Nagar
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="8" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/windsor-villa-indiranagar_bangalore-prjt-5ba009ad714b56810576329a?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Windsor Villa
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
<div class="horizontal-slider-item" id="9" style="width:100%">
<div class="card-wrapper-builder">
<a class="property-card-global-wrapper nb__3wN1W" href="/srirampura-srirampura_bangalore-prjt-5e97386ba5a1662dac0b0a1c?nbFr=carousel_premium" rel="noopener noreferrer" target="_blank">
<div class="listpage-carousel-wrapper nb__3TU9k">
<div class="listpage-carousel-wrapper-image">
<div class="lazyload-placeholder" style="height:160px">
</div>
<noscript>
<img alt="" class="w-24p h-24p rounded-4"/>
</noscript>
</div>
<div class="property-card-detail-header">
<div class="property-card-carousal-title">
Srirampura
</div>
<div class="property-card-detail-sub-heading">
1 Apartment
</div>
<button class="listpage-carousal-view-btn btn btn-primary" id="listpage-carousal" type="button">
View
</button>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<span>
<div class="slider-navigation-arrow-next">
<svg class="" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#000000">
</path>
</svg>
</div>
</span>
</div>
</div>
</div>
</div>
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9fa98278f8646f0178f895115f1758" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in--jayanagar-bangalore-for-rs-26000/8a9fa98278f8646f0178f895115f1758/detail" target="_blank">
3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
RBI Extension, near medicure hospital
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in--jayanagar-bangalore-for-rs-26000/8a9fa98278f8646f0178f895115f1758/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
kulsum
</span>
</span>
<span itemprop="price">
<!-- -->
26000
</span>
</span>
<span itemprop="startDate">
2024-06-17
</span>
<span itemprop="name">
3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
RBI Extension, near medicure hospital
</span>
<span>
3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.931366524251837" itemprop="latitude"/>
<meta content="77.5925282561873" itemprop="longitude"/>
</span>
</div>
<meta content="RBI Extension, near medicure hospital"/>
<meta content="INR 26000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 26,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
2,500
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
3,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,200 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9fa98278f8646f0178f895115f1758/8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/9
</span>
</div>
<meta content="8a9fa98278f8646f0178f895115f1758_554374_976386_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Unfurnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
17-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9fa98278f8646f0178f895115f1758-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
11:00 AM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_4">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9ffd83891317630189170f4e292447" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK Flat In Sb for Rent In Rajajinagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-30000/8a9ffd83891317630189170f4e292447/detail" target="_blank">
3 BHK Flat In Sb for Rent In Rajajinagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-30000/8a9ffd83891317630189170f4e292447/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Rajendran
</span>
</span>
<span itemprop="price">
<!-- -->
30000
</span>
</span>
<span itemprop="startDate">
2024-06-07
</span>
<span itemprop="name">
3 BHK Flat In Sb for Rent In Rajajinagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy
</span>
<span>
3 BHK Flat In Sb for Rent In Rajajinagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK Flat In Sb for Rent In Rajajinagar
</span>
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.994155045489347" itemprop="latitude"/>
<meta content="77.55825549775173" itemprop="longitude"/>
</span>
</div>
<meta content="Puttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy"/>
<meta content="INR 30000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
5
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 30,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
5,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,300 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK Flat In Sb for Rent In Rajajinagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9ffd83891317630189170f4e292447/8a9ffd83891317630189170f4e292447_178_206161_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/13
</span>
</div>
<meta content="8a9ffd83891317630189170f4e292447_178_206161_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_5">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="ff808181623e39b5016241576f2b64bd" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Rajaji Nagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-20000/ff808181623e39b5016241576f2b64bd/detail" target="_blank">
2 BHK House for Rent In Rajaji Nagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, 5 Block near venkat international public school
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-20000/ff808181623e39b5016241576f2b64bd/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Rukmini
</span>
</span>
<span itemprop="price">
<!-- -->
20000
</span>
</span>
<span itemprop="startDate">
2024-06-19
</span>
<span itemprop="name">
2 BHK House for Rent In Rajaji Nagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, 5 Block near venkat international public school
</span>
<span>
2 BHK House for Rent In Rajaji Nagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Rajaji Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560010
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Rajaji Nagar
</span>
<span itemprop="streetAddress">
Rajaji Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560010
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.982262637697493" itemprop="latitude"/>
<meta content="77.5530679326923" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, 5 Block near venkat international public school"/>
<meta content="INR 20000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 20,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,500 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Rajaji Nagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff808181623e39b5016241576f2b64bd/ff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/18
</span>
</div>
<meta content="ff808181623e39b5016241576f2b64bd_44685_23449_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
19-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-ff808181623e39b5016241576f2b64bd-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
05:30 PM Today
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_6">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="ff8081816b74a761016b74c3fcf016e0" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-basavanagudi-bangalore-for-rs-17000/ff8081816b74a761016b74c3fcf016e0/detail" target="_blank">
2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Tata Silk Farm,Near Sri Kumaran Children's Home
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-basavanagudi-bangalore-for-rs-17000/ff8081816b74a761016b74c3fcf016e0/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
KC NAGARAJ
</span>
</span>
<span itemprop="price">
<!-- -->
17000
</span>
</span>
<span itemprop="startDate">
2024-06-30
</span>
<span itemprop="name">
2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Tata Silk Farm,Near Sri Kumaran Children's Home
</span>
<span>
2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Basavanagudi
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi
</span>
<span itemprop="streetAddress">
Basavanagudi
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.934575962959528" itemprop="latitude"/>
<meta content="77.57386241108179" itemprop="longitude"/>
</span>
</div>
<meta content="Tata Silk Farm,Near Sri Kumaran Children's Home"/>
<meta content="INR 17000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 17,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,70,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
800 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In Basavanagudi" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff8081816b74a761016b74c3fcf016e0/ff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
</div>
<meta content="ff8081816b74a761016b74c3fcf016e0_60477_136302_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1717737162000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
30-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-ff8081816b74a761016b74c3fcf016e0-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
12:30 PM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_7">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f93438fd831a3018fd88a2338274e" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Basavanagudi, ">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-basavanagudi--bangalore-for-rs-15000/8a9f93438fd831a3018fd88a2338274e/detail" target="_blank">
2 BHK House for Rent In Basavanagudi,
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-basavanagudi--bangalore-for-rs-15000/8a9f93438fd831a3018fd88a2338274e/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Bhaskar N
</span>
</span>
<span itemprop="price">
<!-- -->
15000
</span>
</span>
<span itemprop="startDate">
2024-06-17
</span>
<span itemprop="name">
2 BHK House for Rent In Basavanagudi,
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm
</span>
<span>
2 BHK House for Rent In Basavanagudi,
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Basavanagudi,
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Basavanagudi,
</span>
<span itemprop="streetAddress">
Basavanagudi,
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.934807968791038" itemprop="latitude"/>
<meta content="77.57167775183916" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm "/>
<meta content="INR 15000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 15,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
1
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,000 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<img alt="noProperty" class="object-cover" fetchpriority="high" height="900" src="https://assets.nobroker.in/nb-new/public/List-Page/noImageRent_Sale.svg" width="1600"/>
<meta content="https://images.nobroker.in/mobile/app/styles/images/emptyProperty/2bhk.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1717325254000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
17-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f93438fd831a3018fd88a2338274e-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
07:00 PM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_8">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="ff8081816c64a007016c65497dbd4bc5" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000/ff8081816c64a007016c65497dbd4bc5/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000/ff8081816c64a007016c65497dbd4bc5/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
G B Kiran BasaveGowda
</span>
</span>
<span itemprop="price">
<!-- -->
32000
</span>
</span>
<span itemprop="startDate">
2024-06-14
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.938760203998262" itemprop="latitude"/>
<meta content="77.59241960942745" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East"/>
<meta content="INR 32000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 32,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,200 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff8081816c64a007016c65497dbd4bc5/ff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/18
</span>
</div>
<meta content="ff8081816c64a007016c65497dbd4bc5_525792_445521_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-ff8081816c64a007016c65497dbd4bc5-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
03:30 PM on 18 June!
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_9">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9fa982780ade6301780b161a2315e3" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-35000/8a9fa982780ade6301780b161a2315e3/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, 11 cross 8 main
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-35000/8a9fa982780ade6301780b161a2315e3/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Gopalan
</span>
</span>
<span itemprop="price">
<!-- -->
35000
</span>
</span>
<span itemprop="startDate">
2024-06-30
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, 11 cross 8 main
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.923068529820162" itemprop="latitude"/>
<meta content="77.58017867803574" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, 11 cross 8 main"/>
<meta content="INR 35000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
5
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 35,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,80,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,000 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9fa982780ade6301780b161a2315e3/8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/19
</span>
</div>
<meta content="8a9fa982780ade6301780b161a2315e3_51287_978294_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Unfurnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
30-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9fa982780ade6301780b161a2315e3-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
06:30 PM Today
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_10">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f8bfc70d82a330170d85d22f41af8" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-85000/8a9f8bfc70d82a330170d85d22f41af8/detail" target="_blank">
3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
13th Cross, 2nd Stage, opposite Fortune Pride Apartments
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in-indira-nagar-bangalore-for-rs-85000/8a9f8bfc70d82a330170d85d22f41af8/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Shivaprasad
</span>
</span>
<span itemprop="price">
<!-- -->
85000
</span>
</span>
<span itemprop="startDate">
2024-07-19
</span>
<span itemprop="name">
3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
13th Cross, 2nd Stage, opposite Fortune Pride Apartments
</span>
<span>
3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Indira Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar
</span>
<span itemprop="streetAddress">
Indira Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.9736443" itemprop="latitude"/>
<meta content="77.6353949" itemprop="longitude"/>
</span>
</div>
<meta content="13th Cross, 2nd Stage, opposite Fortune Pride Apartments"/>
<meta content="INR 85000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
5
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 85,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
5,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
4,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,700 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f8bfc70d82a330170d85d22f41af8/8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
</div>
<meta content="8a9f8bfc70d82a330170d85d22f41af8_47089_534703_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1717579141000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
19-Jul-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f8bfc70d82a330170d85d22f41af8-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
04:00 PM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_11">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f887b8e419117018e41add7ad12e8" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK Flat for Rent In Rajajinagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-33000/8a9f887b8e419117018e41add7ad12e8/detail" target="_blank">
2 BHK Flat for Rent In Rajajinagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Standalone building, 3rd block near ESI hospital
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-33000/8a9f887b8e419117018e41add7ad12e8/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Raghavendra Ramesh
</span>
</span>
<span itemprop="price">
<!-- -->
33000
</span>
</span>
<span itemprop="startDate">
2024-06-19
</span>
<span itemprop="name">
2 BHK Flat for Rent In Rajajinagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Standalone building, 3rd block near ESI hospital
</span>
<span>
2 BHK Flat for Rent In Rajajinagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK Flat for Rent In Rajajinagar
</span>
<span itemprop="streetAddress">
rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.99116807144627" itemprop="latitude"/>
<meta content="77.55347377727614" itemprop="longitude"/>
</span>
</div>
<meta content="Standalone building, 3rd block near ESI hospital"/>
<meta content="INR 33000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 33,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
3,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
3,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,000 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK Flat for Rent In Rajajinagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f887b8e419117018e41add7ad12e8/8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/8
</span>
</div>
<meta content="8a9f887b8e419117018e41add7ad12e8_86208_529366_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
19-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_12">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f92848e9da02c018e9db50adb0aa6" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK Flat In Stand Alone Building for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000/8a9f92848e9da02c018e9db50adb0aa6/detail" target="_blank">
2 BHK Flat In Stand Alone Building for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
3rd main
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-32000/8a9f92848e9da02c018e9db50adb0aa6/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Manjunath
</span>
</span>
<span itemprop="price">
<!-- -->
32000
</span>
</span>
<span itemprop="startDate">
2024-06-19
</span>
<span itemprop="name">
2 BHK Flat In Stand Alone Building for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
3rd main
</span>
<span>
2 BHK Flat In Stand Alone Building for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK Flat In Stand Alone Building for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.935215925860163" itemprop="latitude"/>
<meta content="77.5769990932541" itemprop="longitude"/>
</span>
</div>
<meta content="3rd main"/>
<meta content="INR 32000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 32,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
2,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK Flat In Stand Alone Building for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f92848e9da02c018e9db50adb0aa6/8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/12
</span>
</div>
<meta content="8a9f92848e9da02c018e9db50adb0aa6_77427_951390_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
19-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_13">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f80de6f757c8b016f75e0edc61435" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="1 BHK House for Rent In Indiranagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/1-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-33000/8a9f80de6f757c8b016f75e0edc61435/detail" target="_blank">
1 BHK House for Rent In Indiranagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, Stage 2 near Indiranagar Metro Station
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/1-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-33000/8a9f80de6f757c8b016f75e0edc61435/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Tribuvan Kumar
</span>
</span>
<span itemprop="price">
<!-- -->
33000
</span>
</span>
<span itemprop="startDate">
2021-06-30
</span>
<span itemprop="name">
1 BHK House for Rent In Indiranagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, Stage 2 near Indiranagar Metro Station
</span>
<span>
1 BHK House for Rent In Indiranagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Indiranagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
1 BHK House for Rent In Indiranagar
</span>
<span itemprop="streetAddress">
Indiranagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.978160842721405" itemprop="latitude"/>
<meta content="77.63837409917355" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, Stage 2 near Indiranagar Metro Station"/>
<meta content="INR 33000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
4
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 33,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
3,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
650 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="1 BHK House for Rent In Indiranagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f80de6f757c8b016f75e0edc61435/8a9f80de6f757c8b016f75e0edc61435_37620_11841_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/7
</span>
</div>
<meta content="8a9f80de6f757c8b016f75e0edc61435_37620_11841_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
1 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f80de6f757c8b016f75e0edc61435-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
08:00 AM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_14">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f918673e358dc0173e6e16d613907" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/8a9f918673e358dc0173e6e16d613907/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, East end 'A' main road Near PRISTINE SUPERMARKET
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/8a9f918673e358dc0173e6e16d613907/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
K. V. Satyesha Simha
</span>
</span>
<span itemprop="price">
<!-- -->
25000
</span>
</span>
<span itemprop="startDate">
2024-06-30
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, East end 'A' main road Near PRISTINE SUPERMARKET
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.9307735" itemprop="latitude"/>
<meta content="77.5838302" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, East end 'A' main road Near PRISTINE SUPERMARKET"/>
<meta content="INR 25000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
5
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 25,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,200 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f918673e358dc0173e6e16d613907/8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
</div>
<meta content="8a9f918673e358dc0173e6e16d613907_20173_730129_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1718443512000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
30-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f918673e358dc0173e6e16d613907-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
06:30 PM Today
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_15">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="ff80818161d167920161d18af8c51606" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-28000/ff80818161d167920161d18af8c51606/detail" target="_blank">
3 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-28000/ff80818161d167920161d18af8c51606/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Prasad
</span>
</span>
<span itemprop="price">
<!-- -->
28000
</span>
</span>
<span itemprop="startDate">
2024-06-03
</span>
<span itemprop="name">
3 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura
</span>
<span>
3 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.943036677461079" itemprop="latitude"/>
<meta content="77.58895463684004" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura"/>
<meta content="INR 28000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
4
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 28,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff80818161d167920161d18af8c51606/ff80818161d167920161d18af8c51606_67_145201_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/10
</span>
</div>
<meta content="ff80818161d167920161d18af8c51606_67_145201_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_16">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="ff80818164a7e35b0164a8307cdd35b1" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-12000/ff80818164a7e35b0164a8307cdd35b1/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-12000/ff80818164a7e35b0164a8307cdd35b1/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Raju
</span>
</span>
<span itemprop="price">
<!-- -->
12000
</span>
</span>
<span itemprop="startDate">
2022-02-15
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.932155451802506" itemprop="latitude"/>
<meta content="77.58927041625026" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, , KV Layout Near Sri Lakshmi Narasimha Temple"/>
<meta content="INR 12000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 12,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
70,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
550 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff80818164a7e35b0164a8307cdd35b1/ff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
</div>
<meta content="ff80818164a7e35b0164a8307cdd35b1_90880_560766_medium.jpg" itemprop="image"/>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1718352951000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Bachelor
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_17">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f98827c749a0d017c74f9d3fd30cb" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="1 BHK Flat In Standalone Building for Rent In Rajaji Nagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/1-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-8500/8a9f98827c749a0d017c74f9d3fd30cb/detail" target="_blank">
1 BHK Flat In Standalone Building for Rent In Rajaji Nagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Rajaji Nagar near New Sagar Fast Food And Family Restaurant
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/1-bhk-apartment-for-rent-in-rajaji-nagar-bangalore-for-rs-8500/8a9f98827c749a0d017c74f9d3fd30cb/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Jyothi
</span>
</span>
<span itemprop="price">
<!-- -->
8500
</span>
</span>
<span itemprop="startDate">
2024-06-24
</span>
<span itemprop="name">
1 BHK Flat In Standalone Building for Rent In Rajaji Nagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Rajaji Nagar near New Sagar Fast Food And Family Restaurant
</span>
<span>
1 BHK Flat In Standalone Building for Rent In Rajaji Nagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Rajaji Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
1 BHK Flat In Standalone Building for Rent In Rajaji Nagar
</span>
<span itemprop="streetAddress">
Rajaji Nagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="13.004193873674117" itemprop="latitude"/>
<meta content="77.55077062618604" itemprop="longitude"/>
</span>
</div>
<meta content="Rajaji Nagar near New Sagar Fast Food And Family Restaurant"/>
<meta content="INR 8500" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 8,500
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
75,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
600 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="1 BHK Flat In Standalone Building for Rent In Rajaji Nagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f98827c749a0d017c74f9d3fd30cb/8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/11
</span>
</div>
<meta content="8a9f98827c749a0d017c74f9d3fd30cb_136594_411201_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Unfurnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
1 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
24-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_18">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="ff808181684feaaf0168502997e70f12" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Indiranagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-35000/ff808181684feaaf0168502997e70f12/detail" target="_blank">
2 BHK House for Rent In Indiranagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, 2nd Stage, Near Sree Cauvery School
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-indiranagar-bangalore-for-rs-35000/ff808181684feaaf0168502997e70f12/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Yuktha
</span>
</span>
<span itemprop="price">
<!-- -->
35000
</span>
</span>
<span itemprop="startDate">
2023-08-04
</span>
<span itemprop="name">
2 BHK House for Rent In Indiranagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, 2nd Stage, Near Sree Cauvery School
</span>
<span>
2 BHK House for Rent In Indiranagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Indiranagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Indiranagar
</span>
<span itemprop="streetAddress">
Indiranagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.976422591353478" itemprop="latitude"/>
<meta content="77.63676833068848" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, 2nd Stage, Near Sree Cauvery School"/>
<meta content="INR 35000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
4
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 35,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,200 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Indiranagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff808181684feaaf0168502997e70f12/ff808181684feaaf0168502997e70f12_8041_361654_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
</div>
<meta content="ff808181684feaaf0168502997e70f12_8041_361654_medium.jpg" itemprop="image"/>
</div>
<button class="rounded-4 absolute bottom-0 left-auto right-0 po:right-0 p-0 po:mb-0.8p po:mr-0.6 w-auto text-12 text-white capitalize tracking-normal text-left font-normal h-2.1p mb-0.5p mr-0.5p btn btn-sm" id="requestPhotos-1718352994000" style="opacity:1;background:#7a7979cf" type="button">
<span class="flex items-center mr-0.5p text-white font-semibold pl-0.3p" style="filter:drop-shadow(#00000046 0px 3px 6px)">
<svg height="12.629" viewbox="0 0 13.832 12.629" width="13.832" xmlns="http://www.w3.org/2000/svg">
<path d="M1.8,3.3V1.5h1.2V3.3h1.8v1.2h-1.8v1.8H1.8v-1.8H0V3.3Zm1.8,3.608v-1.8h1.8V3.3h4.21l1.1,1.2h1.906a1.206,1.206,0,0,1,1.2,1.2v7.217a1.206,1.206,0,0,1-1.2,1.2H3.007a1.206,1.206,0,0,1-1.2-1.2V6.912Zm4.21,5.412A3.007,3.007,0,1,0,4.811,9.318,3.008,3.008,0,0,0,7.818,12.325ZM5.893,9.318A1.924,1.924,0,1,0,7.818,7.393,1.922,1.922,0,0,0,5.893,9.318Z" data-name="Icon material-add-a-photo" fill="#fff" id="Icon_material-add-a-photo" transform="translate(0 -1.5)">
</path>
</svg>
<span class="ml-0.4p">
Request Photos
</span>
</span>
</button>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_19">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f85c39001d20801900201d8cc1521" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In ********** Nagar, Rajajinagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-**********-nagar-rajajinagar-bangalore-for-rs-40000/8a9f85c39001d20801900201d8cc1521/detail" target="_blank">
2 BHK House for Rent In ********** Nagar, Rajajinagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, near Canara bank
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-**********-nagar-rajajinagar-bangalore-for-rs-40000/8a9f85c39001d20801900201d8cc1521/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Shashi Kumar
</span>
</span>
<span itemprop="price">
<!-- -->
40000
</span>
</span>
<span itemprop="startDate">
2024-06-09
</span>
<span itemprop="name">
2 BHK House for Rent In ********** Nagar, Rajajinagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, near Canara bank
</span>
<span>
2 BHK House for Rent In ********** Nagar, Rajajinagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
********** Nagar, Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In ********** Nagar, Rajajinagar
</span>
<span itemprop="streetAddress">
********** Nagar, Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="13.0063819" itemprop="latitude"/>
<meta content="77.557643" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, near Canara bank"/>
<meta content="INR 40000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 40,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
1,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
5,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In ********** Nagar, Rajajinagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f85c39001d20801900201d8cc1521/8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/12
</span>
</div>
<meta content="8a9f85c39001d20801900201d8cc1521_91851_716151_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Unfurnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
<div class="px-1.5p py-0.5p border-t-1 border-cardbordercolor">
<div class="h-3.2p border-1 flex items-center justify-between px-0.5p relative" style="border:1px solid #f5f5f5;box-shadow:0px 2px 4px 0px #0000001a;border-radius:8px">
<div class="flex items-center gap-0.7p h-100pe px-0.4p py-0.3p w-100pe">
<div class="w-3.9p h-2.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/Highlight_Sprite.svg);background-position:0px 0px;background-size:39px">
</div>
<div class="w-0.1p h-1.4p bg-border-color-action-icon">
</div>
<div class="text-13 opacity-80 whitespace-nowrap overflow-hidden overflow-ellipsis" style="max-width:62%">
1.1 km from
<b>
Kuvempu Road
</b>
</div>
</div>
<div class="text-12 font-semibold text-secondary-color flex justify-center items-center gap-0.3p absolute right-1.5p">
Explore More Properties
<span class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.4p">
</span>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_20">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9fb1827b3a75df017b3aa5e9e510f3" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Rajajinagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-18000/8a9fb1827b3a75df017b3aa5e9e510f3/detail" target="_blank">
2 BHK House for Rent In Rajajinagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-18000/8a9fb1827b3a75df017b3aa5e9e510f3/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Kunal Jain
</span>
</span>
<span itemprop="price">
<!-- -->
18000
</span>
</span>
<span itemprop="startDate">
2024-06-12
</span>
<span itemprop="name">
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop
</span>
<span>
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.980148" itemprop="latitude"/>
<meta content="77.554078" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop"/>
<meta content="INR 18000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 18,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Rajajinagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9fb1827b3a75df017b3aa5e9e510f3/8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/10
</span>
</div>
<meta content="8a9fb1827b3a75df017b3aa5e9e510f3_940505_220315_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_21">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f9182812a4ffa01812a772f1e0e73" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="1 BHK House for Rent In C E S English Nursery School">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/1-bhk-apartment-for-rent-in-c-e-s-english-nursery-school-bangalore-for-rs-12000/8a9f9182812a4ffa01812a772f1e0e73/detail" target="_blank">
1 BHK House for Rent In C E S English Nursery School
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, CES English high school
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/1-bhk-apartment-for-rent-in-c-e-s-english-nursery-school-bangalore-for-rs-12000/8a9f9182812a4ffa01812a772f1e0e73/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Nawaz Ahmed
</span>
</span>
<span itemprop="price">
<!-- -->
12000
</span>
</span>
<span itemprop="startDate">
2023-08-14
</span>
<span itemprop="name">
1 BHK House for Rent In C E S English Nursery School
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, CES English high school
</span>
<span>
1 BHK House for Rent In C E S English Nursery School
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
C E S ENGLISH NURSERY SCHOOL
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
1 BHK House for Rent In C E S English Nursery School
</span>
<span itemprop="streetAddress">
C E S ENGLISH NURSERY SCHOOL
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.929646599999998" itemprop="latitude"/>
<meta content="77.59264689999998" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, CES English high school"/>
<meta content="INR 12000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
4
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 12,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
50,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
500 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="1 BHK House for Rent In C E S English Nursery School" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f9182812a4ffa01812a772f1e0e73/8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/9
</span>
</div>
<meta content="8a9f9182812a4ffa01812a772f1e0e73_98185_194672_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
1 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_22">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f8b438fae9104018fae9a9d410338" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/3-bhk-apartment-for-rent-in-4th-t-block-east-jayanagar-3rd-block-east-bangalore-for-rs-50000/8a9f8b438fae9104018fae9a9d410338/detail" target="_blank">
3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/3-bhk-apartment-for-rent-in-4th-t-block-east-jayanagar-3rd-block-east-bangalore-for-rs-50000/8a9f8b438fae9104018fae9a9d410338/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
H M Alva
</span>
</span>
<span itemprop="price">
<!-- -->
50000
</span>
</span>
<span itemprop="startDate">
2024-06-12
</span>
<span itemprop="name">
3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India
</span>
<span>
3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
4th T Block East, Jayanagar 3rd Block East
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East
</span>
<span itemprop="streetAddress">
4th T Block East, Jayanagar 3rd Block East
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.928203560708894" itemprop="latitude"/>
<meta content="77.58898805826902" itemprop="longitude"/>
</span>
</div>
<meta content="Ushas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India"/>
<meta content="INR 50000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 50,000
<!-- -->
+
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex flex-col">
<span>
₹
<!-- -->
3,000
</span>
<span>
Maintenance
</span>
</div>
</div>
<div class="block w-1.5p mt-0.3p h-1.5p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:99px 475px;background-size:170px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
5,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,640 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f8b438fae9104018fae9a9d410338/8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/33
</span>
</div>
<meta content="8a9f8b438fae9104018fae9a9d410338_4865_895197_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Fully Furnished
</div>
<div class="">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
3 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_23">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="8a9f84038cbef04f018cbfa51c207e89" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="1 BHK House for Rent In Siddhapura">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/1-bhk-apartment-for-rent-in-siddhapura-bangalore-for-rs-10000/8a9f84038cbef04f018cbfa51c207e89/detail" target="_blank">
1 BHK House for Rent In Siddhapura
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, KHB Colony near Vijaya College
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/1-bhk-apartment-for-rent-in-siddhapura-bangalore-for-rs-10000/8a9f84038cbef04f018cbfa51c207e89/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Vijay
</span>
</span>
<span itemprop="price">
<!-- -->
10000
</span>
</span>
<span itemprop="startDate">
2024-04-29
</span>
<span itemprop="name">
1 BHK House for Rent In Siddhapura
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, KHB Colony near Vijaya College
</span>
<span>
1 BHK House for Rent In Siddhapura
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Siddhapura
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
1 BHK House for Rent In Siddhapura
</span>
<span itemprop="streetAddress">
Siddhapura
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.940700506897878" itemprop="latitude"/>
<meta content="77.58056664362354" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, KHB Colony near Vijaya College"/>
<meta content="INR 10000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
<button class="bg-white bg-bolt bg-no-repeat bg-15p bg-20p max-w-20p text-1.6p pt-0.9p pr-1.1p pb-0.8p pl-3.9p border border-solid border-property-views-border-color rounded-tl-3xl rounded-bl-3xl shadow-viewsshadow flex self-center w-6.6p absolute right-0 top-2.1p btn btn-default" id="propertyViews" type="button">
<div class="-mt-0.5p text-grayDark">
3
</div>
</button>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 10,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
80,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
430 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="1 BHK House for Rent In Siddhapura" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f84038cbef04f018cbfa51c207e89/8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/5
</span>
</div>
<meta content="8a9f84038cbef04f018cbfa51c207e89_226313_711288_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
1 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_24">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="watched_schedule_card-rent" data-spt-impressions="" id="8a9f8483900c1eea01900c46175d110d" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Rajajinagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-16000/8a9f8483900c1eea01900c46175d110d/detail" target="_blank">
2 BHK House for Rent In Rajajinagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, near warrior bakery
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-rajajinagar-bangalore-for-rs-16000/8a9f8483900c1eea01900c46175d110d/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
thilaka
</span>
</span>
<span itemprop="price">
<!-- -->
16000
</span>
</span>
<span itemprop="startDate">
2024-06-21
</span>
<span itemprop="name">
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, near warrior bakery
</span>
<span>
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Rajajinagar
</span>
<span itemprop="streetAddress">
Rajajinagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.986281779926175" itemprop="latitude"/>
<meta content="77.55096405744553" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, near warrior bakery "/>
<meta content="INR 16000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 16,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Non-Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
1,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
600 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Rajajinagar" class="my-0 mx-auto relative flex items-center w-26.5p object-cover" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/8a9f8483900c1eea01900c46175d110d/8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/10
</span>
</div>
<meta content="8a9f8483900c1eea01900c46175d110d_53875_797367_medium.jpg" itemprop="image"/>
</div>
<div class="rounded-6 flex items-center justify-center py-0.5p pr-2 h-2p absolute bottom-0 left-1.5p z-1 po:mb-0.8p po:ml-0.6p" style="background:transparent undefined 0% 0% no-repeat padding-box">
<span class="bg-primary-color text-white py-0.6 px-0.7p leading-none rounded-6 align-middle text-12 font-bold w-auto flex relative top-0.2p-">
<i aria-hidden="true" class="text-10 mr-0.5p align-baseline bg-white w-1p h-1p rounded-50pe nb__33rxF">
</i>
<span class="font-bold">
LIVE
</span>
</span>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Unfurnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
All
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
21-Jun-2024
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
<div class="schedule-visit-container flex items-center m-1.5p mt-0 border border-solid rounded-2 relative flex-row justify-between">
<div class="flex items-center border border-solid rounded-2 relative flex-row justify-between pr-2p" id="schedule-visit-container-8a9f8483900c1eea01900c46175d110d-desktop" style="height:46px;background-color:#F0F7F9;border-color:rgba(0, 131, 149, 0.16);color:#008395;width:680px">
<div class="text-15 flex items-center leading-16p" style="border-right-color:rgba(0, 131, 149, 0.16)">
<img alt="" class="h-4.4p w-5p" src="https://assets.nobroker.in/nb-new/public/List-Page/listPageScheduleIcon.svg"/>
<div>
The owner will be showing this property at
<span class="font-semibold">
11:30 AM Tomorrow
<!-- -->
!
</span>
</div>
</div>
<div class="font-semibold cursor-pointer flex text-15 items-baseline" style="color:#269188">
<span>
Join Visit
</span>
<div class="border-solid border-secondary-color border-t-0 border-r-2 border-b-2 border-l-0 transform -rotate-45 p-0.2p w-0.9p h-0.9p mt-0.2p ml-0.3p">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article aria-label="article" id="article_25">
<div style="box-shadow:0px 2px 4px #00000029">
<div class="bg-white rounded-4 bg-clip-padding overflow-hidden mx-0.5p tp:border-b-0 shadow-defaultCardShadow tp:shadow-cardShadow tp:mt-0.5p my-1.2p tp:mx-0 tp:mb:1p hover:cursor-pointer nb__2_XSE" data-schedule-cta-impression="" data-spt-impressions="" id="ff8081815b954d52015b956c7e8f0faa" itemscope="" itemtype="http://schema.org/Apartment">
<section class="group flex pl-1.5p py-1.5p pr-0 m-0 min-h-6.6p border-t border-t-cardbordercolor border-b border-b-solid border-cardbordercolor tp:border-b-0 tp:bg-white tp:border-t-0 tp:min-h-5.5p po:p-0 relative" style="background:#f8f8f8">
<div class="flex flex-col flex-2 w-pe mt-1.8px po:justify-center po:p-1p po:mt-0 w-70pe">
<span class="capitalize text-defaultcolor mb-0.5p font-semibold no-underline hover:text-primary-color po:overflow-hidden po:overflow-ellipsis po:max-w-95 po:m-0 po:font-normal cd:group-hover:text-primary-color cd:group-hover:nounderline" itemprop="description" title="2 BHK House for Rent In Jayanagar">
<h2 class="heading-6 flex items-center font-semi-bold m-0">
<a class="overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/ff8081815b954d52015b956c7e8f0faa/detail" target="_blank">
2 BHK House for Rent In Jayanagar
</a>
<svg class="po:hidden" color="#444" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="transform scale-65 text-gray-100 origin-cards" d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z" fill="#444">
</path>
</svg>
</h2>
</span>
<div class="flex">
<div class="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95">
Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital
</div>
<span class="flex items-center">
<img alt="location" class="h-1.8 w-1.8" src="https://assets.nobroker.in/nb-new/public/List-Page/list_location_icon.png" style="vertical-align:middle"/>
<a class="text-default-color align-bottom underline hover:text-primary-color" href="/property/2-bhk-apartment-for-rent-in-jayanagar-bangalore-for-rs-25000/ff8081815b954d52015b956c7e8f0faa/detail#explore-nearby" id="exploreNearbuy" target="_blank">
Explore Nearby
</a>
</span>
</div>
<span class="hidden" itemprop="event" itemscope="" itemtype="http://schema.org/Event">
<span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span itemprop="seller" itemscope="" itemtype="http://schema.org/RealEstateAgent">
<span itemprop="name">
Kiran
</span>
</span>
<span itemprop="price">
<!-- -->
25000
</span>
</span>
<span itemprop="startDate">
2024-06-13
</span>
<span itemprop="name">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span>
Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital
</span>
<span>
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560011
</span>
</span>
</span>
<span itemprop="offers" itemscope="" itemtype="http://schema.org/AggregateOffer">
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="areaServed">
2 BHK House for Rent In Jayanagar
</span>
<span itemprop="streetAddress">
Jayanagar
</span>
<span itemprop="addressLocality">
bangalore
</span>
<span class="hidden" itemprop="postalCode">
560011
</span>
</span>
<span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
<meta content="12.92881008032945" itemprop="latitude"/>
<meta content="77.5858978588955" itemprop="longitude"/>
</span>
</div>
<meta content="Independent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital"/>
<meta content="INR 25000" itemprop="price"/>
<meta content="8306993033" itemprop="telephone"/>
<div>
</div>
</section>
<div class="nb__7nqQI">
<div class="p-1.5p flex border-b border-b-solid border-cardbordercolor tp:py-1p tp:px-1.5p tp:border-b-0">
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1" id="minDeposit">
<div class="font-semi-bold heading-6">
<div class="flex" id="minimumRent">
₹ 25,000
<div class="group relative flex m-0">
<div>
<div class="bg-grayDark text-white text-center rounded-md py-0.2p px-0.6p absolute left-1/2 -ml-6p opacity-0 transform transition-opacity duration-300 after:absolute after:top-full after:left-1/2 after:-ml-0.5p after:border-0.5p after:border-solid after:border-grayDark group-hover:inline-block group-hover:opacity-100 text-12" style="width:108px;bottom:125%;z-index:5">
<div class="flex">
<div class="mt-0 -mr-1.5p ml-1p mb-1.6p w-2p relative left-0.4p bottom-0.2p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:113px 505px;background-size:190px">
</div>
No Extra Maintenance
</div>
</div>
<div class="block w-1.6p h-1.6p mt-0.3p ml-0.4p" style="background-image:url(https://assets.nobroker.in/nb-new/public/List-Page/list_page_sprite_min.png);background-position:111px 398px;background-size:150px">
</div>
</div>
</div>
</div>
</div>
<div class="heading-7 flex">
Rent (Negotiable)
</div>
</div>
<div class="flex flex-col w-33pe items-center bo tp:w-half po:w-full border-r border-r-solid border-card-overview-border-color last:border-r-1">
<div class="font-semi-bold heading-6" id="roomType">
<span>
₹
</span>
2,00,000
</div>
<div class="heading-7 flex">
Deposit
</div>
</div>
<div class="flex flex-col w-33pe items-center tp:w-half po:w-full" itemprop="additionalProperty" itemscope="" itemtype="http://schema.org/PropertyValue">
<div class="font-semi-bold heading-6" id="minRent" itemprop="valueReference" itemscope="" itemtype="http://schema.org/PropertyValue">
<meta content="INR" itemprop="unitCode"/>
<div class="flex" id="unitCode">
1,100 sqft
</div>
</div>
<div class="heading-7">
Builtup
</div>
</div>
</div>
<div class="p-1.5p pl-0 flex tp:p-0 tp:h-auto nb__MCj8k" style="height:210px">
<div class="mr-1.5p relative tp:mr-0 nb__2xxq-" id="propertyCardCrousalContainer" style="flex:2.1">
<div class="pl-1.5p po:p-0 py-0">
<div class="flex bg-white rounded-2 bg-clip-padding overflow-hidden relative cursor-pointer tp:mt-0 tp:h-21p h-18p" style="height:180px;margin-bottom:10px">
<div class="lazyload-placeholder" style="height:auto">
</div>
<noscript>
<img alt="2 BHK House for Rent In Jayanagar" class="my-0 mx-auto relative flex items-center w-26.5p object-contain" fetchpriority="high" height="100%" src="https://images.nobroker.in/images/ff8081815b954d52015b956c7e8f0faa/ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg" style="transition:width 0.3s ease-in-out;background-color:#000" width="100%"/>
</noscript>
<svg class="no-underline absolute top-1/2 bottom-0 right-0 text-white opacity-90 -mt-2p z-2 cursor-pointer tp:-mt-1p transform rotate-180" color="white" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="white">
</path>
</svg>
<span class="rounded-4 absolute bottom-0 left-auto right-0 po:mb-0.8p po:mr-0.8p px-0.5p w-auto h-1.6p text-10 text-white capitalize tracking-normal text-left font-normal" style="background-color:#0000004d">
1/11
</span>
</div>
<meta content="ff8081815b954d52015b956c7e8f0faa_877031_265740_medium.jpg" itemprop="image"/>
</div>
</div>
<div style="flex:3">
<div class="border-3 border-double border-property-views-border-color flex flex-col">
<div class="flex p-0.5p border-b border-b-solid border-b-cardbordercolor items-center" style="min-height:60px">
<div class="flex-1 border-r border-r-solid border-r-cardbordercolor flex">
<div class="py-0 pr-0.5p pl-3p" style="background-image:url(https://assets.nobroker.in/static/img/listing-page-sprite_2.png);background-position:-21px -332px">
</div>
<div class="flex">
<div>
<div class="font-semibold">
Semi Furnished
</div>
<div class="flex">
<div class="heading-7 text-default-color mt-0.5p">
Furnishing
</div>
<div class="flex items-center justify-center ml-1p mt-0.2p">
<button class="w-5p text-secondary-color rounded border border-solid border-secondary-color bg-white p-0 m-0 h-2.2p text-12 bg-none btn btn-default btn-sm" id="furnish" type="button">
Furnish
</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="mt-1p w-3p h-3p ml-0.5p bg-no-repeat pr-0.5p pl-3.5p" style="background-image:url(https://assets.nobroker.in/static/img/commercial/commercial_icons.png);background-position:-5px -7px">
</div>
<div>
<div class="font-semibold whitespace-nowrap">
2 BHK
</div>
<div class="heading-7 text-default-color mt-0.5p">
Apartment Type
</div>
</div>
</div>
</div>
<div class="flex p-0.5p items-center" style="min-height:60px">
<div class="flex flex-1 border-r border-r-solid border-r-cardbordercolor">
<div class="py-0 pr-0.5p pl-3p mt-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/male_Te.png);background-position:inherit">
</div>
<div>
<div class="font-semibold">
Family
</div>
<div class="heading-7 text-default-color mt-0.5p">
Preferred Tenants
</div>
</div>
</div>
<div class="flex flex-1 pl-0.5p">
<div class="w-3p py-0 pr-0.5p pl-3.5p mt-1p ml-0.5p bg-no-repeat" style="background-image:url(https://assets.nobroker.in/static/img/resale/possesion_icon.png);background-position:">
</div>
<div>
<div class="font-semibold">
Ready to Move
</div>
<div class="heading-7 text-default-color mt-0.5p">
Available From
</div>
</div>
</div>
</div>
</div>
<div class="mt-1.3p flex justify-between gap-0.5p">
<div class="w-80pe relative">
<button class="w-full btn btn-primary btn-md" id="getOwnerDetails" type="button">
Get Owner Details
</button>
</div>
<button class="hover:bg-card-overview-border-color py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="shortlistProperty" type="button">
<span class="my-0 mx-auto bg-no-repeat bg-shortlisticons bg-shortlistps h-3p w-3p" style="background-size:133px 448px">
<div class="py-0.2p">
<svg class="m-0" color="transparent" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24">
<path class="" d="M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75C-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z" fill="transparent" style="transform:scale(1.5, 1.4);stroke:#787676;stroke-width:1.5px;fill:transparent">
</path>
</svg>
</div>
</span>
</button>
<button class="py-0.7p px-1.5p bg-transparent border border-solid border-gray-300 ml-1p cursor-pointer property-card-action-icon-btn btn btn-none btn-md" id="abuseReport" type="button">
<span>
<img alt="report abuse" class="h-full w-full" loading="lazy" src="https://assets.nobroker.in/static/img/resale/report_abuse_2.png"/>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
<div id="nearByPropertyCards">
</div>
</div>
</div>
<div class="flex mt-3 flex-col" style="width:180px">
<div id="bannerCardConatiner" style="width:180px">
<div class="nb__2Rw_m">
<div class="heading-6 text-primary nb__2gHtb">
Quick links
</div>
<div class="nb__3w-Zh">
People also searched for
</div>
<ul class="list-disc">
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="1" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-in-srirampuram_bangalore" itemprop="url" target="_blank" title="Flats in Srirampura for rent">
<span itemprop="name">
Flats in Srirampura for rent
</span>
</a>
</h3>
</li>
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="2" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-in-nagapura_bangalore" itemprop="url" target="_blank" title="Flats in Nagapura for rent">
<span itemprop="name">
Flats in Nagapura for rent
</span>
</a>
</h3>
</li>
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="3" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-in-yeshwanthpur_bangalore" itemprop="url" target="_blank" title="Flats in Yeswanthpur for rent">
<span itemprop="name">
Flats in Yeswanthpur for rent
</span>
</a>
</h3>
</li>
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="4" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-near-mahalakshmipuram_bangalore" itemprop="url" target="_blank" title="Flats near Mahalakshmipuram for rent">
<span itemprop="name">
Flats near Mahalakshmipuram for rent
</span>
</a>
</h3>
</li>
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="5" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-in-vijayanagar_bangalore" itemprop="url" target="_blank" title="Flats in Vijayanagar for rent">
<span itemprop="name">
Flats in Vijayanagar for rent
</span>
</a>
</h3>
</li>
<li itemscope="" itemtype="http://schema.org/ListItem">
<meta content="6" itemprop="position"/>
<h3 class="" id="quickLinks">
<a class="cursor-pointer" href="/flats-for-rent-in-basaveshwara_nagar_bangalore" itemprop="url" target="_blank" title="Flats in Basaveshwar Nagar for rent">
<span itemprop="name">
Flats in Basaveshwar Nagar for rent
</span>
</a>
</h3>
</li>
</ul>
</div>
</div>
</div>
</div>
<span class="hidden">
<span itemscope="" itemtype="http://schema.org/Residence">
<span itemscope="" itemtype="http://schema.org/Place">
<span itemprop="name">
/property/rent/bangalore/multiple
</span>
<span itemprop="hasMap" itemscope="" itemtype="http://schema.org/Map">
<span itemprop="url">
https://www.google.com/maps/search/?api=1&query=
<!-- -->
,
</span>
<span itemprop="mapType">
VenueMap
</span>
</span>
</span>
<span class="hidden" itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">
</span>
<span itemprop="addressRegion">
/property/rent/bangalore/multiple
</span>
</span>
</span>
</span>
</main>
</div>
</div>
<script id="__LOADABLE_REQUIRED_CHUNKS__" type="application/json">
[0,3,5,6,7,9,8,15,16,18,30,35,43,50,52,57,569,32,436,262,338,501,10,48,51,81,68,129,62,85,79,134,108,298,84,1,2,4,14,24,31,40,456,291,229]
</script>
<script id="__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">
{"namedChunks":["listPage","PropertyDropdown","HeaderContentDesktop","NbButton","ShortlistTooltip","ListPageSearchHeaders","ListPageListViews","ListPageFilters","RentFilterss","ListPageBreadcrumbs","DynamicVerticalListPageAdCards"]}
</script>
<script async="" data-chunk="main" src="https://assets.nobroker.in/nb-new/608.5e45fad1c632f8599154.js">
</script>
<script async="" data-chunk="main" src="https://assets.nobroker.in/nb-new/main.a36ba08924d95d3be1b2.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/0/0.f84c57ef6db83b170589.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/3/3.b9262c9a8a87431ccd4d.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/5/5.587c9a19c312425da282.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/6/6.c31388427e407532f313.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/7/7.6a78dda41dbcf9afb6f9.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/9/9.c2ea1bf325ffba13c724.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/8/8.d05fd88f55d72e12f904.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/15/15.64f3cf2c4ef81de82872.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/16/16.aa3968d9d68b8f922748.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/18/18.463d6e253c191af4bf73.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/30/30.fe1d4b495a1cc355b33d.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/35/35.d9541a96a636a1a1e67f.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/43/43.7dad560f120dd81f7662.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/50/50.7c70e4f680f7cac219f2.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/52/52.48fde600a22476026a4e.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/57/57.490c44d82cdf196b8092.chunk.js">
</script>
<script async="" data-chunk="listPage" src="https://assets.nobroker.in/nb-new/listPage/listPage.cc73b2cd634d08a028c9.chunk.js">
</script>
<script async="" data-chunk="PropertyDropdown" src="https://assets.nobroker.in/nb-new/32/32.b6f34b7832c822d212da.chunk.js">
</script>
<script async="" data-chunk="PropertyDropdown" src="https://assets.nobroker.in/nb-new/PropertyDropdown/PropertyDropdown.7ff870c01fb42bf2dd6c.chunk.js">
</script>
<script async="" data-chunk="HeaderContentDesktop" src="https://assets.nobroker.in/nb-new/HeaderContentDesktop/HeaderContentDesktop.f33021be45178a59d456.chunk.js">
</script>
<script async="" data-chunk="NbButton" src="https://assets.nobroker.in/nb-new/NbButton/NbButton.35f740eb1d0a51be2b62.chunk.js">
</script>
<script async="" data-chunk="ShortlistTooltip" src="https://assets.nobroker.in/nb-new/ShortlistTooltip/ShortlistTooltip.6217d6873263d52bdc89.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/10/10.0413912e4afcd9b77d2f.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/48/48.3d9c14297a6101672b03.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/51/51.95faa33a779c7c7c3034.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/81/81.4e17d88929a5536a6c18.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/68/68.36fde0cd7a7079156262.chunk.js">
</script>
<script async="" data-chunk="ListPageSearchHeaders" src="https://assets.nobroker.in/nb-new/129/129.e6b1a75c10d6da7e2325.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/62/62.3a2b9b6bcc05c22f24cf.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/85/85.4e2f752e1cd0c9fa517f.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/79/79.c467c331c97a430c9764.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/134/134.ebc60862e606351a8057.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/108/108.a07f423d9f83784c1246.chunk.js">
</script>
<script async="" data-chunk="ListPageListViews" src="https://assets.nobroker.in/nb-new/ListPageListViews/ListPageListViews.c9bd0cdcf74d9d98bdf0.chunk.js">
</script>
<script async="" data-chunk="ListPageFilters" src="https://assets.nobroker.in/nb-new/84/84.ad2f7413a936f641cd1c.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/1/1.393f72ab5b922a06153c.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/2/2.26ffbfb4cb2accd54153.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/4/4.80cbaa35b625c2cd4342.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/14/14.35b6e2fc89d683f9e53c.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/24/24.123436924c066a711c21.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/31/31.438ca5559dac72bc3564.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/40/40.0265c05015ae7ca23445.chunk.js">
</script>
<script async="" data-chunk="RentFilterss" src="https://assets.nobroker.in/nb-new/RentFilterss/RentFilterss.331c89573afe85df552c.chunk.js">
</script>
<script async="" data-chunk="ListPageBreadcrumbs" src="https://assets.nobroker.in/nb-new/ListPageBreadcrumbs/ListPageBreadcrumbs.b55c50eeca105009715c.chunk.js">
</script>
<script async="" data-chunk="DynamicVerticalListPageAdCards" src="https://assets.nobroker.in/nb-new/DynamicVerticalListPageAdCards/DynamicVerticalListPageAdCards.bf62a3598bbbcac46d64.chunk.js">
</script>
<img alt="" height="1" id="adobe-event" src="" style="display: none" width="1"/>
<noscript>
If you're seeing this message, that means
<strong>
JavaScript has been disabled on your browser
</strong>
, please
<strong>
enable JS
</strong>
to make this app work.
</noscript>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-NDNFVM5" style="display:none;visibility:hidden" width="0">
</iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<script>
digitalData={},window.isGAinit=!1
</script>
</body>
</html>
In [34]:
house_title=soup.find('a', class_='overflow-hidden overflow-ellipsis whitespace-nowrap max-w-80pe po:max-w-full')
h_list=[house.text for house in house_title]
h_list
Out[34]:
['2 BHK House for Rent In Jayanagar']
In [32]:
name_location=soup.find_all('span', class_='hidden')
n_list=[name.text for name in name_location]
n_list
Out[32]:
['Kiran 250002024-06-132 BHK House for Rent In JayanagarIndependent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital2 BHK House for Rent In JayanagarJayanagarbangalore560011', '560011', '2 BHK House for Rent In JayanagarJayanagarbangalore560011', '560011', 'Padma Srinivas 200002024-06-172 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, India11th Main 7th Cross ; TVS Showroom 2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, IndiaLakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, Indiabangalore', '2 BHK Flat In Rajajinagar for Rent In Lakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, IndiaLakshminarayanapuram, Rajajinagar, Bengaluru, Karnataka 560010, Indiabangalore', 'renuga 495002024-06-173 BHK House for Rent In Jayanagar 4th T BlockIndependent House, Jayanagar Head Postoffice3 BHK House for Rent In Jayanagar 4th T BlockJayanagar 4th T blockbangalore', '3 BHK House for Rent In Jayanagar 4th T BlockJayanagar 4th T blockbangalore', 'kulsum 260002024-06-173 BHK Flat In Arifa Shaukhath for Rent In JayanagarRBI Extension, near medicure hospital3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar Jayanagarbangalore', '3 BHK Flat In Arifa Shaukhath for Rent In Jayanagar Jayanagarbangalore', 'Rajendran 300002024-06-073 BHK Flat In Sb for Rent In RajajinagarPuttaswamy Rd near Mudaliar Seva Sanga Table Tennis Academy3 BHK Flat In Sb for Rent In RajajinagarRajajinagarbangalore', '3 BHK Flat In Sb for Rent In RajajinagarRajajinagarbangalore', 'Rukmini 200002024-06-192 BHK House for Rent In Rajaji NagarIndependent House, 5 Block near venkat international public school2 BHK House for Rent In Rajaji NagarRajaji Nagarbangalore560010', '560010', '2 BHK House for Rent In Rajaji NagarRajaji Nagarbangalore560010', '560010', "KC NAGARAJ 170002024-06-302 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In BasavanagudiTata Silk Farm,Near Sri Kumaran Children's Home2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In BasavanagudiBasavanagudibangalore", '2 BHK Flat In Sri Lakshmi Venkateshawra Bhavana for Rent In BasavanagudiBasavanagudibangalore', "Bhaskar N 150002024-06-172 BHK House for Rent In Basavanagudi, Independent House, 6th B Main Rd, near Sri Kumaran Children's Home - State Board, Tata Silk Farm 2 BHK House for Rent In Basavanagudi, Basavanagudi, bangalore", '2 BHK House for Rent In Basavanagudi, Basavanagudi, bangalore', 'G B Kiran BasaveGowda 320002024-06-142 BHK House for Rent In JayanagarIndependent House, Byrasandra Main Rd near Sanjay Gandhi Insitute of Trauma and Orthopaedics, CHCS Layout, 1st Block, Jaya Nagar East2 BHK House for Rent In JayanagarJayanagarbangalore', '2 BHK House for Rent In JayanagarJayanagarbangalore', 'Gopalan 350002024-06-302 BHK House for Rent In JayanagarIndependent House, 11 cross 8 main2 BHK House for Rent In JayanagarJayanagarbangalore', '2 BHK House for Rent In JayanagarJayanagarbangalore', 'Shivaprasad 850002024-07-193 BHK Flat In Sivananda Chidananda for Rent In Indira Nagar13th Cross, 2nd Stage, opposite Fortune Pride Apartments3 BHK Flat In Sivananda Chidananda for Rent In Indira NagarIndira Nagarbangalore', '3 BHK Flat In Sivananda Chidananda for Rent In Indira NagarIndira Nagarbangalore', 'Raghavendra Ramesh 330002024-06-192 BHK Flat for Rent In RajajinagarStandalone building, 3rd block near ESI hospital2 BHK Flat for Rent In Rajajinagarrajajinagarbangalore', '2 BHK Flat for Rent In Rajajinagarrajajinagarbangalore', 'Manjunath 320002024-06-192 BHK Flat In Stand Alone Building for Rent In Jayanagar3rd main2 BHK Flat In Stand Alone Building for Rent In JayanagarJayanagarbangalore', '2 BHK Flat In Stand Alone Building for Rent In JayanagarJayanagarbangalore', 'Tribuvan Kumar 330002021-06-301 BHK House for Rent In IndiranagarIndependent House, Stage 2 near Indiranagar Metro Station1 BHK House for Rent In IndiranagarIndiranagarbangalore', '1 BHK House for Rent In IndiranagarIndiranagarbangalore', "K. V. Satyesha Simha 250002024-06-302 BHK House for Rent In JayanagarIndependent House, East end 'A' main road Near PRISTINE SUPERMARKET2 BHK House for Rent In JayanagarJayanagarbangalore", '2 BHK House for Rent In JayanagarJayanagarbangalore', 'Prasad 280002024-06-033 BHK House for Rent In JayanagarIndependent House, Near Kalyani Sri Ganapathy temple, Lalbagh South Gate, 1st block, 3, Ashoka Pillar Rd, 1st Block, Siddapura3 BHK House for Rent In JayanagarJayanagarbangalore', '3 BHK House for Rent In JayanagarJayanagarbangalore', 'Raju 120002022-02-152 BHK House for Rent In JayanagarIndependent House, , KV Layout Near Sri Lakshmi Narasimha Temple2 BHK House for Rent In JayanagarJayanagarbangalore', '2 BHK House for Rent In JayanagarJayanagarbangalore', 'Jyothi 85002024-06-241 BHK Flat In Standalone Building for Rent In Rajaji NagarRajaji Nagar near New Sagar Fast Food And Family Restaurant1 BHK Flat In Standalone Building for Rent In Rajaji NagarRajaji Nagarbangalore', '1 BHK Flat In Standalone Building for Rent In Rajaji NagarRajaji Nagarbangalore', 'Yuktha 350002023-08-042 BHK House for Rent In IndiranagarIndependent House, 2nd Stage, Near Sree Cauvery School2 BHK House for Rent In IndiranagarIndiranagarbangalore', '2 BHK House for Rent In IndiranagarIndiranagarbangalore', 'Shashi Kumar 400002024-06-092 BHK House for Rent In ********** Nagar, RajajinagarIndependent House, near Canara bank2 BHK House for Rent In ********** Nagar, Rajajinagar********** Nagar, Rajajinagarbangalore', '2 BHK House for Rent In ********** Nagar, Rajajinagar********** Nagar, Rajajinagarbangalore', 'Kunal Jain 180002024-06-122 BHK House for Rent In RajajinagarIndependent House, Dr Rajkumar Rd 5 Block, 6th Block near The Raymond Shop2 BHK House for Rent In RajajinagarRajajinagarbangalore', '2 BHK House for Rent In RajajinagarRajajinagarbangalore', 'Nawaz Ahmed 120002023-08-141 BHK House for Rent In C E S English Nursery SchoolIndependent House, CES English high school1 BHK House for Rent In C E S English Nursery SchoolC E S ENGLISH NURSERY SCHOOLbangalore', '1 BHK House for Rent In C E S English Nursery SchoolC E S ENGLISH NURSERY SCHOOLbangalore', 'H M Alva 500002024-06-123 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block EastUshas Apartments 16th Main Road, 4th T Block East, 4th Block, Jayanagar, Bengaluru , Karnataka 560011, India3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East4th T Block East, Jayanagar 3rd Block Eastbangalore', '3 BHK Flat In Ushas Apartments for Rent In 4th T Block East, Jayanagar 3rd Block East4th T Block East, Jayanagar 3rd Block Eastbangalore', 'Vijay 100002024-04-291 BHK House for Rent In SiddhapuraIndependent House, KHB Colony near Vijaya College1 BHK House for Rent In SiddhapuraSiddhapurabangalore', '1 BHK House for Rent In SiddhapuraSiddhapurabangalore', 'thilaka 160002024-06-212 BHK House for Rent In RajajinagarIndependent House, near warrior bakery 2 BHK House for Rent In RajajinagarRajajinagarbangalore', '2 BHK House for Rent In RajajinagarRajajinagarbangalore', 'Kiran 250002024-06-132 BHK House for Rent In JayanagarIndependent House, cool joint, near complex, near to 1000 circle , near to hnimas hospital2 BHK House for Rent In JayanagarJayanagarbangalore560011', '560011', '2 BHK House for Rent In JayanagarJayanagarbangalore560011', '560011', '/property/rent/bangalore/multiplehttps://www.google.com/maps/search/?api=1&query=,VenueMap/property/rent/bangalore/multiple', '/property/rent/bangalore/multiple']
In [37]:
rent_deposits=soup.find_all('div', class_='font-semi-bold heading-6')
r_list=[rent.text for rent in rent_deposits]
r_list
Out[37]:
['₹ 25,000No Extra Maintenance', '₹2,00,000', '1,100 sqft', '₹ 20,000No Extra Maintenance', '₹1,50,000', '600 sqft', '₹ 49,500No Extra Maintenance', '₹3,50,000', '2,000 sqft', '₹ 26,000 +₹ 2,500Maintenance', '₹3,00,000', '1,200 sqft', '₹ 30,000No Extra Maintenance', '₹5,00,000', '1,300 sqft', '₹ 20,000No Extra Maintenance', '₹2,00,000', '1,500 sqft', '₹ 17,000No Extra Maintenance', '₹1,70,000', '800 sqft', '₹ 15,000 +₹ 1Maintenance', '₹1,50,000', '1,000 sqft', '₹ 32,000No Extra Maintenance', '₹2,00,000', '1,200 sqft', '₹ 35,000No Extra Maintenance', '₹1,80,000', '1,000 sqft', '₹ 85,000 +₹ 5,000Maintenance', '₹4,00,000', '1,700 sqft', '₹ 33,000 +₹ 3,000Maintenance', '₹3,00,000', '1,000 sqft', '₹ 32,000 +₹ 2,000Maintenance', '₹2,50,000', '1,100 sqft', '₹ 33,000 +₹ 3,000Maintenance', '₹2,00,000', '650 sqft', '₹ 25,000No Extra Maintenance', '₹1,50,000', '1,200 sqft', '₹ 28,000No Extra Maintenance', '₹1,50,000', '1,100 sqft', '₹ 12,000No Extra Maintenance', '₹70,000', '550 sqft', '₹ 8,500No Extra Maintenance', '₹75,000', '600 sqft', '₹ 35,000No Extra Maintenance', '₹1,50,000', '1,200 sqft', '₹ 40,000 +₹ 1,000Maintenance', '₹5,00,000', '1,100 sqft', '₹ 18,000No Extra Maintenance', '₹1,00,000', '1,100 sqft', '₹ 12,000No Extra Maintenance', '₹50,000', '500 sqft', '₹ 50,000 +₹ 3,000Maintenance', '₹5,00,000', '1,640 sqft', '₹ 10,000No Extra Maintenance', '₹80,000', '430 sqft', '₹ 16,000No Extra Maintenance', '₹1,00,000', '600 sqft', '₹ 25,000No Extra Maintenance', '₹2,00,000', '1,100 sqft']
In [38]:
import requests
from bs4 import BeautifulSoup
r=requests.get('https://www.bewakoof.com/bestseller?sort=popular', headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36'})
print(r)
<Response [200]>
In [39]:
soup = BeautifulSoup(r.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<head>
<meta content="4d8KRpUCzf-ghquF_HLNphibw_xRvUS3kAvzpnF2KlA" name="google-site-verification"/>
<meta content="-TTsyPFCOB4bQlMHawiO4oZGcGX9pxqenB_NZNhhhgA" name="google-site-verification"/>
<meta content="wQa0CQvt7fd2VIoa9qhkevhvwuBvhRwiaB3hVizI9OY" name="google-site-verification"/>
<meta content="o7KS3-fVt15m4Cc1HeYh5HIpv532A4FvvYQzIf-LnsQ" name="google-site-verification"/>
<link href="https://images.bewakoof.com" rel="preconnect"/>
<link href="https://images.bewakoof.com" rel="dns-prefetch"/>
<link href="https://static.bewakoof.com" rel="preconnect"/>
<link href="https://static.bewakoof.com" rel="dns-prefetch"/>
<link href="https://cdn.polyfill.io" rel="preconnect"/>
<link href="https://cdn.polyfill.io" rel="dns-prefetch"/>
<link href="https//www.googletagmanager.com" rel="preconnect"/>
<link href="https//www.googletagmanager.com" rel="dns-prefetch"/>
<link href="https://www.google-analytics.com" rel="dns-prefetch"/>
<link href="https://connect.facebook.net" rel="dns-prefetch"/>
<link href="https://www.facebook.com" rel="dns-prefetch"/>
<link href="https://analytics.bewakoof.com" rel="dns-prefetch"/>
<link href="https://my.spline.design/untitled-23e4e5884989c299a902d46f236c685b" rel="prefetch">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="no-cache, no-store, must-revalidate" http-equiv="Cache-Control"/>
<meta content="no-cache" http-equiv="Pragma"/>
<meta content="0" http-equiv="Expires"/>
<script type="text/javascript">
window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"NRJS-d388fbd2feb0308fac9","applicationID":"1050236615","applicationTime":275.591914,"transactionName":"YwcEZkVTDxECUxVbWFpNI0pHQAQREFoSHXBxNkkdDUITDQdFAkZwRgsC","queueTime":0,"ttGuid":"b47743b7b29c4650","agentToken":null}; (window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"1134083009",accountID:"2563413",trustKey:"2563413",xpid:"VgMBUlJSCxABVFRSBQIBUFUE",licenseKey:"NRJS-d388fbd2feb0308fac9",applicationID:"1050236615"};;/*! For license information please see nr-loader-spa-1.260.1.min.js.LICENSE.txt */
(()=>{var e,t,r={234:(e,t,r)=>{"use strict";r.d(t,{P_:()=>m,Mt:()=>b,C5:()=>s,DL:()=>w,OP:()=>O,lF:()=>D,Yu:()=>_,Dg:()=>v,CX:()=>c,GE:()=>E,sU:()=>I});var n=r(8632),i=r(9567);const o={beacon:n.ce.beacon,errorBeacon:n.ce.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,i.D)(t,o);const r=(0,n.ek)(e);r&&(r.info=a[e])}const u=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var d=r(7056),l=r(50);const f="[data-nr-mask]",h=()=>{const e={mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{feature_flags:[],proxy:{assets:void 0,beacon:void 0},privacy:{cookies_enabled:!0},ajax:{deny_list:void 0,block_internal:!0,enabled:!0,harvestTimeSeconds:10,autoStart:!0},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},session:{expiresMs:d.oD,inactiveMs:d.Hb},ssl:void 0,obfuscate:void 0,jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},metrics:{enabled:!0,autoStart:!0},page_action:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1,autoStart:!0},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},harvest:{tooManyRequestsDelay:60},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,inline_stylesheet:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){u(t)?e.mask_selector="".concat(t,",").concat(f):""===t||null===t?e.mask_selector=f:(0,l.Z)("An invalid session_replay.mask_selector was provided. '*' will be used.",t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){u(t)?e.block_selector+=",".concat(t):""!==t&&(0,l.Z)("An invalid session_replay.block_selector was provided and will not be used",t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,l.Z)("An invalid session_replay.mask_input_option was provided and will not be used",t)}},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},soft_navigations:{enabled:!0,harvestTimeSeconds:10,autoStart:!0}}},p={},g="All configuration objects require an agent identifier!";function m(e){if(!e)throw new Error(g);if(!p[e])throw new Error("Configuration for ".concat(e," was never set"));return p[e]}function v(e,t){if(!e)throw new Error(g);p[e]=(0,i.D)(t,h());const r=(0,n.ek)(e);r&&(r.init=p[e])}function b(e,t){if(!e)throw new Error(g);var r=m(e);if(r){for(var n=t.split("."),i=0;i<n.length-1;i++)if("object"!=typeof(r=r[n[i]]))return;r=r[n[n.length-1]]}return r}const y={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},A={};function w(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!A[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return A[e]}function E(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");A[e]=(0,i.D)(t,y);const r=(0,n.ek)(e);r&&(r.loader_config=A[e])}const _=(0,n.mF)().o;var x=r(385),R=r(6818);const S={buildEnv:R.Re,distMethod:R.gF,version:R.q4,originTime:x.sK},T={customTransaction:void 0,disabled:!1,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,onerror:void 0,origin:""+x._A.location,ptid:void 0,releaseIds:{},appMetadata:{},session:void 0,denyList:void 0,harvestCount:0,timeKeeper:void 0},N={};function O(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!N[e])throw new Error("Runtime for ".concat(e," was never set"));return N[e]}function I(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");N[e]={...(0,i.D)(t,T),...S};const r=(0,n.ek)(e);r&&(r.runtime=N[e])}function D(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},9567:(e,t,r)=>{"use strict";r.d(t,{D:()=>i});var n=r(50);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.Z)("Setting a Configurable requires an object as input");if(!t||"object"!=typeof t)return(0,n.Z)("Setting a Configurable requires a model to set its initial properties");const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let a in o)if(void 0!==e[a])try{if(null===e[a]){r[a]=null;continue}Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.Z)("An error occurred while setting a property of a Configurable",e)}return r}catch(e){(0,n.Z)("An error occured while setting a Configurable",e)}}},6818:(e,t,r)=>{"use strict";r.d(t,{Re:()=>i,gF:()=>o,lF:()=>a,q4:()=>n});const n="1.260.1",i="PROD",o="CDN",a="2.0.0-alpha.12"},385:(e,t,r)=>{"use strict";r.d(t,{FN:()=>u,IF:()=>f,LW:()=>s,Nk:()=>p,Tt:()=>d,_A:()=>a,iS:()=>c,il:()=>i,sK:()=>g,ux:()=>l,v6:()=>o,w1:()=>h});var n=r(7894);const i="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),a=i?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),s="complete"===a?.document?.readyState,c=Boolean("hidden"===a?.document?.visibilityState),u=""+a?.location,d=/iPad|iPhone|iPod/.test(a.navigator?.userAgent),l=d&&"undefined"==typeof SharedWorker,f=(()=>{const e=a.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),h=Boolean(i&&window.document.documentMode),p=!!a.navigator?.sendBeacon,g=Date.now()-(0,n.z)()},1117:(e,t,r)=>{"use strict";r.d(t,{w:()=>o});var n=r(50);const i={agentIdentifier:"",ee:void 0};class o{constructor(e){try{if("object"!=typeof e)return(0,n.Z)("shared context requires an object as input");this.sharedContext={},Object.assign(this.sharedContext,i),Object.entries(e).forEach((e=>{let[t,r]=e;Object.keys(i).includes(t)&&(this.sharedContext[t]=r)}))}catch(e){(0,n.Z)("An error occurred while setting SharedContext",e)}}}},1199:(e,t,r)=>{"use strict";r.d(t,{R2:()=>a,zR:()=>i,zh:()=>o});var n=[];function i(e){if(o(e))return!1;if(0===n.length)return!0;for(var t=0;t<n.length;t++){var r=n[t];if("*"===r.hostname)return!1;if(s(r.hostname,e.hostname)&&c(r.pathname,e.pathname))return!1}return!0}function o(e){return void 0===e.hostname}function a(e){if(n=[],e&&e.length)for(var t=0;t<e.length;t++){let r=e[t];if(!r)continue;0===r.indexOf("http://")?r=r.substring(7):0===r.indexOf("https://")&&(r=r.substring(8));const i=r.indexOf("/");let o,a;i>0?(o=r.substring(0,i),a=r.substring(i)):(o=r,a="");let[s]=o.split(":");n.push({hostname:s,pathname:a})}}function s(e,t){return!(e.length>t.length)&&t.indexOf(e)===t.length-e.length}function c(e,t){return 0===e.indexOf("/")&&(e=e.substring(1)),0===t.indexOf("/")&&(t=t.substring(1)),""===e||e===t}},8e3:(e,t,r)=>{"use strict";r.d(t,{LP:()=>l,RP:()=>c,o5:()=>u});var n=r(8325),i=r(1284),o=r(4322),a=r(3325);const s={};function c(e,t){const r={staged:!1,priority:a.p[t]||0};d(e),s[e].get(t)||s[e].set(t,r)}function u(e,t){d(e),s[e].get(t)&&s[e].delete(t),s[e].size&&f(e)}function d(e){if(!e)throw new Error("agentIdentifier required");s[e]||(s[e]=new Map)}function l(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"feature",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(d(e),!e||!s[e].get(t)||r)return h(e,t);s[e].get(t).staged=!0,f(e)}function f(e){const t=Array.from(s[e]);t.every((e=>{let[t,r]=e;return r.staged}))&&(t.sort(((e,t)=>e[1].priority-t[1].priority)),t.forEach((t=>{let[r]=t;s[e].delete(r),h(e,r)})))}function h(e,t){const r=e?n.ee.get(e):n.ee,a=o.X.handlers;if(r.backlog&&a){var s=r.backlog[t],c=a[t];if(c){for(var u=0;s&&u<s.length;++u)p(s[u],c);(0,i.D)(c,(function(e,t){(0,i.D)(t,(function(t,r){r[0].on(e,r[1])}))}))}r.isolatedBacklog||delete a[t],r.backlog[t]=null,r.emit("drain-"+t,[])}}function p(e,t){var r=e[1];(0,i.D)(t[r],(function(t,r){var n=e[0];if(r[0]===n){var i=r[1],o=e[3],a=e[2];i.apply(o,a)}}))}},8325:(e,t,r)=>{"use strict";r.d(t,{A:()=>c,ee:()=>u});var n=r(8632),i=r(2210),o=r(234);class a{constructor(e){this.contextId=e}}var s=r(3117);const c="nr@context:".concat(s.a),u=function e(t,r){var n={},s={},d={},l=!1;try{l=16===r.length&&(0,o.OP)(r).isolatedBacklog}catch(e){}var f={on:p,addEventListener:p,removeEventListener:function(e,t){var r=n[e];if(!r)return;for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)},emit:function(e,r,n,i,o){!1!==o&&(o=!0);if(u.aborted&&!i)return;t&&o&&t.emit(e,r,n);for(var a=h(n),c=g(e),d=c.length,l=0;l<d;l++)c[l].apply(a,r);var p=v()[s[e]];p&&p.push([f,e,r,a]);return a},get:m,listeners:g,context:h,buffer:function(e,t){const r=v();if(t=t||"feature",f.aborted)return;Object.entries(e||{}).forEach((e=>{let[n,i]=e;s[i]=t,t in r||(r[t]=[])}))},abort:function(){f._aborted=!0,Object.keys(f.backlog).forEach((e=>{delete f.backlog[e]}))},isBuffering:function(e){return!!v()[s[e]]},debugId:r,backlog:l?{}:t&&"object"==typeof t.backlog?t.backlog:{},isolatedBacklog:l};return Object.defineProperty(f,"aborted",{get:()=>{let e=f._aborted||!1;return e||(t&&(e=t.aborted),e)}}),f;function h(e){return e&&e instanceof a?e:e?(0,i.X)(e,c,(()=>new a(c))):new a(c)}function p(e,t){n[e]=g(e).concat(t)}function g(e){return n[e]||[]}function m(t){return d[t]=d[t]||e(f,t)}function v(){return f.backlog}}(void 0,"globalEE"),d=(0,n.fP)();d.ee||(d.ee=u)},5546:(e,t,r)=>{"use strict";r.d(t,{E:()=>n,p:()=>i});var n=r(8325).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}},4322:(e,t,r)=>{"use strict";r.d(t,{X:()=>o});var n=r(5546);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.E,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.E);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3239:(e,t,r)=>{"use strict";r.d(t,{bP:()=>s,iz:()=>c,m$:()=>a});var n=r(385);let i=!1,o=!1;try{const e={get passive(){return i=!0,!1},get signal(){return o=!0,!1}};n._A.addEventListener("test",null,e),n._A.removeEventListener("test",null,e)}catch(e){}function a(e,t){return i||o?{capture:!!e,passive:i,signal:t}:!!e}function s(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;window.addEventListener(e,t,a(r,n))}function c(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;document.addEventListener(e,t,a(r,n))}},3117:(e,t,r)=>{"use strict";r.d(t,{a:()=>n});const n=(0,r(4402).Rl)()},4402:(e,t,r)=>{"use strict";r.d(t,{Ht:()=>u,M:()=>c,Rl:()=>a,ky:()=>s});var n=r(385);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function a(){const e=n._A?.crypto||n._A?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(30))),i.split("").map((e=>"x"===e?o(t,r++).toString(16):"y"===e?(3&o()|8).toString(16):e)).join("")}function s(e){const t=n._A?.crypto||n._A?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const a=[];for(var s=0;s<e;s++)a.push(o(r,i++).toString(16));return a.join("")}function c(){return s(16)}function u(){return s(32)}},7056:(e,t,r)=>{"use strict";r.d(t,{Bq:()=>n,Hb:()=>a,IK:()=>u,K4:()=>i,oD:()=>o,uT:()=>c,wO:()=>s});const n="NRBA",i="SESSION",o=144e5,a=18e5,s={STARTED:"session-started",PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},c={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},u={OFF:0,FULL:1,ERROR:2}},7894:(e,t,r)=>{"use strict";function n(){return Math.floor(performance.now())}r.d(t,{z:()=>n})},7243:(e,t,r)=>{"use strict";r.d(t,{e:()=>i});var n=r(385);function i(e){if(0===(e||"").indexOf("data:"))return{protocol:"data"};try{const t=new URL(e,location.href),r={port:t.port,hostname:t.hostname,pathname:t.pathname,search:t.search,protocol:t.protocol.slice(0,t.protocol.indexOf(":")),sameOrigin:t.protocol===n._A?.location?.protocol&&t.host===n._A?.location?.host};return r.port&&""!==r.port||("http:"===t.protocol&&(r.port="80"),"https:"===t.protocol&&(r.port="443")),r.pathname&&""!==r.pathname?r.pathname.startsWith("/")||(r.pathname="/".concat(r.pathname)):r.pathname="/",r}catch(e){return{}}}},50:(e,t,r)=>{"use strict";function n(e,t){"function"==typeof console.warn&&(console.warn("New Relic: ".concat(e)),t&&console.warn(t))}r.d(t,{Z:()=>n})},2825:(e,t,r)=>{"use strict";r.d(t,{N:()=>c,T:()=>s});var n=r(8325),i=r(385);const o="newrelic";const a=new Set,s={};function c(e,t){const r=n.ee.get(t);s[t]??={},e&&"object"==typeof e&&(a.has(t)||(r.emit("rumresp",[e]),s[t]=e,a.add(t),function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{i._A.dispatchEvent(new CustomEvent(o,{detail:e}))}catch(e){}}({loaded:!0})))}},2210:(e,t,r)=>{"use strict";r.d(t,{X:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},7872:(e,t,r)=>{"use strict";function n(e){var t=this;let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const i=n?.leading||!1;let o;return function(){for(var n=arguments.length,a=new Array(n),s=0;s<n;s++)a[s]=arguments[s];i&&void 0===o&&(e.apply(t,a),o=setTimeout((()=>{o=clearTimeout(o)}),r)),i||(clearTimeout(o),o=setTimeout((()=>{e.apply(t,a)}),r))}}function i(e){var t=this;let r=!1;return function(){if(!r){r=!0;for(var n=arguments.length,i=new Array(n),o=0;o<n;o++)i[o]=arguments[o];e.apply(t,i)}}}r.d(t,{D:()=>n,Z:()=>i})},1284:(e,t,r)=>{"use strict";r.d(t,{D:()=>n});const n=(e,t)=>Object.entries(e||{}).map((e=>{let[r,n]=e;return t(r,n)}))},4351:(e,t,r)=>{"use strict";r.d(t,{P:()=>o});var n=r(8325);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}}}},3960:(e,t,r)=>{"use strict";r.d(t,{KB:()=>a,b2:()=>o});var n=r(3239);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.bP)("load",e,t)}function a(e){if(i())return e();(0,n.iz)("DOMContentLoaded",e)}},8632:(e,t,r)=>{"use strict";r.d(t,{EZ:()=>d,ce:()=>o,ek:()=>u,fP:()=>a,gG:()=>l,h5:()=>c,mF:()=>s});var n=r(385),i=r(7894);const o={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function a(){return n._A.NREUM||(n._A.NREUM={}),void 0===n._A.newrelic&&(n._A.newrelic=n._A.NREUM),n._A.NREUM}function s(){let e=a();return e.o||(e.o={ST:n._A.setTimeout,SI:n._A.setImmediate,CT:n._A.clearTimeout,XHR:n._A.XMLHttpRequest,REQ:n._A.Request,EV:n._A.Event,PR:n._A.Promise,MO:n._A.MutationObserver,FETCH:n._A.fetch}),e}function c(e,t){let r=a();r.initializedAgents??={},t.initializedAt={ms:(0,i.z)(),date:new Date},r.initializedAgents[e]=t}function u(e){let t=a();return t.initializedAgents?.[e]}function d(e,t){a()[e]=t}function l(){return function(){let e=a();const t=e.info||{};e.info={beacon:o.beacon,errorBeacon:o.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),s(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},7956:(e,t,r)=>{"use strict";r.d(t,{N:()=>i});var n=r(3239);function i(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;(0,n.iz)("visibilitychange",(function(){if(t)return void("hidden"===document.visibilityState&&e());e(document.visibilityState)}),r,i)}},7806:(e,t,r)=>{"use strict";r.d(t,{em:()=>b,u5:()=>T,QU:()=>I,_L:()=>j,Gm:()=>L,Lg:()=>M,BV:()=>V,Kf:()=>Y});var n=r(8325),i=r(3117);const o="nr@original:".concat(i.a);var a=Object.prototype.hasOwnProperty,s=!1;function c(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");const a="-"===n.charAt(0);for(let s=0;s<t.length;s++){const c=t[s],u=e[c];d(u)||(e[c]=r(u,a?c+n:n,i,c,o))}},r.flag=o,r;function r(t,r,n,s,c){return d(t)?t:(r||(r=""),nrWrapper[o]=t,function(e,t,r){if(Object.defineProperty&&Object.keys)try{return Object.keys(e).forEach((function(r){Object.defineProperty(t,r,{get:function(){return e[r]},set:function(t){return e[r]=t,t}})})),t}catch(e){u([e],r)}for(var n in e)a.call(e,n)&&(t[n]=e[n])}(t,nrWrapper,e),nrWrapper);function nrWrapper(){var o,a,d,l;try{a=this,o=[...arguments],d="function"==typeof n?n(o,a):n||{}}catch(t){u([t,"",[o,a,s],d],e)}i(r+"start",[o,a,s],d,c);try{return l=t.apply(a,o)}catch(e){throw i(r+"err",[o,a,e],d,c),e}finally{i(r+"end",[o,a,l],d,c)}}}function i(r,n,i,o){if(!s||t){var a=s;s=!0;try{e.emit(r,n,i,t,o)}catch(t){u([t,r,n,i],e)}s=a}}}function u(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function d(e){return!(e&&"function"==typeof e&&e.apply&&!e[o])}var l=r(2210),f=r(385);const h={},p=f._A.XMLHttpRequest,g="addEventListener",m="removeEventListener",v="nr@wrapped:".concat(n.A);function b(e){var t=function(e){return(e||n.ee).get("events")}(e);if(h[t.debugId]++)return t;h[t.debugId]=1;var r=c(t,!0);function i(e){r.inPlace(e,[g,m],"-",o)}function o(e,t){return e[1]}return"getPrototypeOf"in Object&&(f.il&&y(document,i),y(f._A,i),y(p.prototype,i)),t.on(g+"-start",(function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var i=(0,l.X)(n,v,(function(){var e={object:function(){if("function"!=typeof n.handleEvent)return;return n.handleEvent.apply(n,arguments)},function:n}[typeof n];return e?r(e,"fn-",null,e.name||"anonymous"):n}));this.wrapped=e[1]=i}})),t.on(m+"-start",(function(e){e[1]=this.wrapped||e[1]})),t}function y(e,t){let r=e;for(;"object"==typeof r&&!Object.prototype.hasOwnProperty.call(r,g);)r=Object.getPrototypeOf(r);for(var n=arguments.length,i=new Array(n>2?n-2:0),o=2;o<n;o++)i[o-2]=arguments[o];r&&t(r,...i)}var A="fetch-",w=A+"body-",E=["arrayBuffer","blob","json","text","formData"],_=f._A.Request,x=f._A.Response,R="prototype";const S={};function T(e){const t=function(e){return(e||n.ee).get("fetch")}(e);if(!(_&&x&&f._A.fetch))return t;if(S[t.debugId]++)return t;function r(e,r,i){var o=e[r];"function"==typeof o&&(e[r]=function(){var e,r=[...arguments],a={};t.emit(i+"before-start",[r],a),a[n.A]&&a[n.A].dt&&(e=a[n.A].dt);var s=o.apply(this,r);return t.emit(i+"start",[r,e],s),s.then((function(e){return t.emit(i+"end",[null,e],s),e}),(function(e){throw t.emit(i+"end",[e],s),e}))})}return S[t.debugId]=1,E.forEach((e=>{r(_[R],e,w),r(x[R],e,w)})),r(f._A,"fetch",A),t.on(A+"end",(function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(A+"done",[null,r],n)}else t.emit(A+"done",[e],n)})),t}const N={},O=["pushState","replaceState"];function I(e){const t=function(e){return(e||n.ee).get("history")}(e);return!f.il||N[t.debugId]++||(N[t.debugId]=1,c(t).inPlace(window.history,O,"-")),t}var D=r(3239);const P={},C=["appendChild","insertBefore","replaceChild"];function j(e){const t=function(e){return(e||n.ee).get("jsonp")}(e);if(!f.il||P[t.debugId])return t;P[t.debugId]=!0;var r=c(t),i=/[?&](?:callback|cb)=([^&#]+)/,o=/(.*)\.([^.]+)/,a=/^(\w+)(\.|$)(.*)$/;function s(e,t){if(!e)return t;const r=e.match(a),n=r[1];return s(r[3],t[n])}return r.inPlace(Node.prototype,C,"dom-"),t.on("dom-start",(function(e){!function(e){if(!e||"string"!=typeof e.nodeName||"script"!==e.nodeName.toLowerCase())return;if("function"!=typeof e.addEventListener)return;var n=(a=e.src,c=a.match(i),c?c[1]:null);var a,c;if(!n)return;var u=function(e){var t=e.match(o);if(t&&t.length>=3)return{key:t[2],parent:s(t[1],window)};return{key:e,parent:window}}(n);if("function"!=typeof u.parent[u.key])return;var d={};function l(){t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,D.m$)(!1)),e.removeEventListener("error",f,(0,D.m$)(!1))}function f(){t.emit("jsonp-error",[],d),t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,D.m$)(!1)),e.removeEventListener("error",f,(0,D.m$)(!1))}r.inPlace(u.parent,[u.key],"cb-",d),e.addEventListener("load",l,(0,D.m$)(!1)),e.addEventListener("error",f,(0,D.m$)(!1)),t.emit("new-jsonp",[e.src],d)}(e[0])})),t}const k={};function L(e){const t=function(e){return(e||n.ee).get("mutation")}(e);if(!f.il||k[t.debugId])return t;k[t.debugId]=!0;var r=c(t),i=f._A.MutationObserver;return i&&(window.MutationObserver=function(e){return this instanceof i?new i(r(e,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype),t}const H={};function M(e){const t=function(e){return(e||n.ee).get("promise")}(e);if(H[t.debugId])return t;H[t.debugId]=!0;var r=t.context,i=c(t),a=f._A.Promise;return a&&function(){function e(r){var n=t.context(),o=i(r,"executor-",n,null,!1);const s=Reflect.construct(a,[o],e);return t.context(s).getCtx=function(){return n},s}f._A.Promise=e,Object.defineProperty(e,"name",{value:"Promise"}),e.toString=function(){return a.toString()},Object.setPrototypeOf(e,a),["all","race"].forEach((function(r){const n=a[r];e[r]=function(e){let i=!1;[...e||[]].forEach((e=>{this.resolve(e).then(a("all"===r),a(!1))}));const o=n.apply(this,arguments);return o;function a(e){return function(){t.emit("propagate",[null,!i],o,!1,!1),i=i||!e}}}})),["resolve","reject"].forEach((function(r){const n=a[r];e[r]=function(e){const r=n.apply(this,arguments);return e!==r&&t.emit("propagate",[e,!0],r,!1,!1),r}})),e.prototype=a.prototype;const n=a.prototype.then;a.prototype.then=function(){var e=this,o=r(e);o.promise=e;for(var a=arguments.length,s=new Array(a),c=0;c<a;c++)s[c]=arguments[c];s[0]=i(s[0],"cb-",o,null,!1),s[1]=i(s[1],"cb-",o,null,!1);const u=n.apply(this,s);return o.nextPromise=u,t.emit("propagate",[e,!0],u,!1,!1),u},a.prototype.then[o]=n,t.on("executor-start",(function(e){e[0]=i(e[0],"resolve-",this,null,!1),e[1]=i(e[1],"resolve-",this,null,!1)})),t.on("executor-err",(function(e,t,r){e[1](r)})),t.on("cb-end",(function(e,r,n){t.emit("propagate",[n,!0],this.nextPromise,!1,!1)})),t.on("propagate",(function(e,r,n){this.getCtx&&!r||(this.getCtx=function(){if(e instanceof Promise)var r=t.context(e);return r&&r.getCtx?r.getCtx():this})}))}(),t}const U={},z="setTimeout",F="setInterval",B="clearTimeout",G="-start",q="-",K=[z,"setImmediate",F,B,"clearImmediate"];function V(e){const t=function(e){return(e||n.ee).get("timer")}(e);if(U[t.debugId]++)return t;U[t.debugId]=1;var r=c(t);return r.inPlace(f._A,K.slice(0,2),z+q),r.inPlace(f._A,K.slice(2,3),F+q),r.inPlace(f._A,K.slice(3),B+q),t.on(F+G,(function(e,t,n){e[0]=r(e[0],"fn-",null,n)})),t.on(z+G,(function(e,t,n){this.method=n,this.timerDuration=isNaN(e[1])?0:+e[1],e[0]=r(e[0],"fn-",this,n)})),t}var Z=r(50);const W={},X=["open","send"];function Y(e){var t=e||n.ee;const r=function(e){return(e||n.ee).get("xhr")}(t);if(W[r.debugId]++)return r;W[r.debugId]=1,b(t);var i=c(r),o=f._A.XMLHttpRequest,a=f._A.MutationObserver,s=f._A.Promise,u=f._A.setInterval,d="readystatechange",l=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],h=[],p=f._A.XMLHttpRequest=function(e){const t=new o(e),n=r.context(t);try{r.emit("new-xhr",[t],n),t.addEventListener(d,(a=n,function(){var e=this;e.readyState>3&&!a.resolved&&(a.resolved=!0,r.emit("xhr-resolved",[],e)),i.inPlace(e,l,"fn-",w)}),(0,D.m$)(!1))}catch(e){(0,Z.Z)("An error occurred while intercepting XHR",e);try{r.emit("internal-error",[e])}catch(e){}}var a;return t};function g(e,t){i.inPlace(t,["onreadystatechange"],"fn-",w)}if(function(e,t){for(var r in e)t[r]=e[r]}(o,p),p.prototype=o.prototype,i.inPlace(p.prototype,X,"-xhr-",w),r.on("send-xhr-start",(function(e,t){g(e,t),function(e){h.push(e),a&&(m?m.then(A):u?u(A):(v=-v,y.data=v))}(t)})),r.on("open-xhr-start",g),a){var m=s&&s.resolve();if(!u&&!s){var v=1,y=document.createTextNode(v);new a(A).observe(y,{characterData:!0})}}else t.on("fn-end",(function(e){e[0]&&e[0].type===d||A()}));function A(){for(var e=0;e<h.length;e++)g(0,h[e]);h.length&&(h=[])}function w(e,t){return t}return r}},7825:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.ajax},6660:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.jserrors},3081:(e,t,r)=>{"use strict";r.d(t,{gF:()=>o,mY:()=>i,t9:()=>n,vz:()=>s,xS:()=>a});const n=r(3325).D.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},4649:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.pageAction},7633:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.pageViewEvent},9251:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.pageViewTiming},7144:(e,t,r)=>{"use strict";r.d(t,{Ef:()=>o,J0:()=>f,Mi:()=>l,Vb:()=>a,Ye:()=>c,fm:()=>u,i9:()=>s,pB:()=>h,t9:()=>i,u0:()=>d});var n=r(7056);const i=r(3325).D.sessionReplay,o={RECORD:"recordReplay",PAUSE:"pauseReplay",REPLAY_RUNNING:"replayRunning",ERROR_DURING_REPLAY:"errorDuringReplay"},a=.12,s={DomContentLoaded:0,Load:1,FullSnapshot:2,IncrementalSnapshot:3,Meta:4,Custom:5},c=1e6,u=64e3,d={[n.IK.ERROR]:15e3,[n.IK.FULL]:3e5,[n.IK.OFF]:0},l={RESET:{message:"Session was reset",sm:"Reset"},IMPORT:{message:"Recorder failed to import",sm:"Import"},TOO_MANY:{message:"429: Too Many Requests",sm:"Too-Many"},TOO_BIG:{message:"Payload was too large",sm:"Too-Big"},CROSS_TAB:{message:"Session Entity was set to OFF on another tab",sm:"Cross-Tab"},ENTITLEMENTS:{message:"Session Replay is not allowed and will not be started",sm:"Entitlement"}},f=5e3,h={API:"api"}},3112:(e,t,r)=>{"use strict";r.d(t,{HM:()=>c,Rc:()=>a,rU:()=>s,wi:()=>u});var n=r(234),i=r(8488),o=r(385);function a(e){return!!n.Yu.MO&&(0,i.H)(e)&&!0===(0,n.Mt)(e,"session_trace.enabled")}function s(e){return!0===(0,n.Mt)(e,"session_replay.preload")&&a(e)}function c(e,t){return!!a(e)&&(!!t?.isNew||!!t?.state.sessionReplayMode)}function u(e,t){const r=t.correctAbsoluteTimestamp(e);return{originalTimestamp:e,correctedTimestamp:r,timestampDiff:e-r,originTime:o.sK,correctedOriginTime:t.correctedOriginTime,originTimeDiff:Math.floor(o.sK-t.correctedOriginTime)}}},3614:(e,t,r)=>{"use strict";r.d(t,{BST_RESOURCE:()=>i,END:()=>s,FEATURE_NAME:()=>n,FN_END:()=>u,FN_START:()=>c,PUSH_STATE:()=>d,RESOURCE:()=>o,START:()=>a,c:()=>l});const n=r(3325).D.sessionTrace,i="bstResource",o="resource",a="-start",s="-end",c="fn"+a,u="fn"+s,d="pushState",l=1e3},6216:(e,t,r)=>{"use strict";r.d(t,{K8:()=>s,QZ:()=>c,cS:()=>o,sE:()=>i,t9:()=>a,vh:()=>u});var n=r(3325);const i=["click","keydown","submit"],o="api",a=n.D.softNav,s={INITIAL_PAGE_LOAD:"",ROUTE_CHANGE:1,UNSPECIFIED:2},c={INTERACTION:1,AJAX:2,CUSTOM_END:3,CUSTOM_TRACER:4},u={IP:"in progress",FIN:"finished",CAN:"cancelled"}},7836:(e,t,r)=>{"use strict";r.d(t,{BODY:()=>E,CB_END:()=>_,CB_START:()=>u,END:()=>w,FEATURE_NAME:()=>i,FETCH:()=>R,FETCH_BODY:()=>v,FETCH_DONE:()=>m,FETCH_START:()=>g,FN_END:()=>c,FN_START:()=>s,INTERACTION:()=>f,INTERACTION_API:()=>d,INTERACTION_EVENTS:()=>o,JSONP_END:()=>b,JSONP_NODE:()=>p,JS_TIME:()=>x,MAX_TIMER_BUDGET:()=>a,REMAINING:()=>l,SPA_NODE:()=>h,START:()=>A,originalSetTimeout:()=>y});var n=r(234);const i=r(3325).D.spa,o=["click","submit","keypress","keydown","keyup","change"],a=999,s="fn-start",c="fn-end",u="cb-start",d="api-ixn-",l="remaining",f="interaction",h="spaNode",p="jsonpNode",g="fetch-start",m="fetch-done",v="fetch-body-",b="jsonp-end",y=n.Yu.ST,A="-start",w="-end",E="-body",_="cb"+w,x="jsTime",R="fetch"},5938:(e,t,r)=>{"use strict";r.d(t,{W:()=>i});var n=r(8325);class i{constructor(e,t,r){this.agentIdentifier=e,this.aggregator=t,this.ee=n.ee.get(e),this.featureName=r,this.blocked=!1}}},8488:(e,t,r)=>{"use strict";r.d(t,{H:()=>o});var n=r(234),i=r(385);const o=e=>i.il&&!0===(0,n.Mt)(e,"privacy.cookies_enabled")},2758:(e,t,r)=>{"use strict";r.d(t,{j:()=>_});var n=r(3325),i=r(234),o=r(5546),a=r(8325),s=r(8e3),c=r(3960),u=r(385),d=r(50),l=r(3081),f=r(8632),h=r(7144);const p=["setErrorHandler","finished","addToTrace","addRelease","addPageAction","setCurrentRouteName","setPageViewName","setCustomAttribute","interaction","noticeError","setUserId","setApplicationVersion","start",h.Ef.RECORD,h.Ef.PAUSE],g=["setErrorHandler","finished","addToTrace","addRelease"];var m=r(7894),v=r(7056);function b(){const e=(0,f.gG)();p.forEach((t=>{e[t]=function(){for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];return function(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];let o=[];return Object.values(e.initializedAgents).forEach((e=>{e.exposed&&e.api[t]&&o.push(e.api[t](...n))})),o.length>1?o:o[0]}(t,...n)}}))}const y={};var A=r(2825);const w=e=>{const t=e.startsWith("http");e+="/",r.p=t?e:"https://"+e};let E=!1;function _(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},p=arguments.length>2?arguments[2]:void 0,_=arguments.length>3?arguments[3]:void 0,{init:x,info:R,loader_config:S,runtime:T={loaderType:p},exposed:N=!0}=t;const O=(0,f.gG)();R||(x=O.init,R=O.info,S=O.loader_config),(0,i.Dg)(e.agentIdentifier,x||{}),(0,i.GE)(e.agentIdentifier,S||{}),R.jsAttributes??={},u.v6&&(R.jsAttributes.isWorker=!0),(0,i.CX)(e.agentIdentifier,R);const I=(0,i.P_)(e.agentIdentifier),D=[R.beacon,R.errorBeacon];E||(I.proxy.assets&&(w(I.proxy.assets),D.push(I.proxy.assets)),I.proxy.beacon&&D.push(I.proxy.beacon),b(),(0,f.EZ)("activatedFeatures",A.T),e.runSoftNavOverSpa&&=!0===I.soft_navigations.enabled&&I.feature_flags.includes("soft_nav")),T.denyList=[...I.ajax.deny_list||[],...I.ajax.block_internal?D:[]],T.ptid=e.agentIdentifier,(0,i.sU)(e.agentIdentifier,T),void 0===e.api&&(e.api=function(e,t){let f=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t||(0,s.RP)(e,"api");const p={};var b=a.ee.get(e),A=b.get("tracer");y[e]=v.IK.OFF,b.on(h.Ef.REPLAY_RUNNING,(t=>{y[e]=t}));var w="api-",E=w+"ixn-";function _(t,r,n,o){const a=(0,i.C5)(e);return null===r?delete a.jsAttributes[t]:(0,i.CX)(e,{...a,jsAttributes:{...a.jsAttributes,[t]:r}}),S(w,n,!0,o||null===r?"session":void 0)(t,r)}function x(){}g.forEach((e=>{p[e]=S(w,e,!0,"api")})),p.addPageAction=S(w,"addPageAction",!0,n.D.pageAction),p.setPageViewName=function(t,r){if("string"==typeof t)return"/"!==t.charAt(0)&&(t="/"+t),(0,i.OP)(e).customTransaction=(r||"http://custom.transaction")+t,S(w,"setPageViewName",!0)()},p.setCustomAttribute=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"==typeof e){if(["string","number","boolean"].includes(typeof t)||null===t)return _(e,t,"setCustomAttribute",r);(0,d.Z)("Failed to execute setCustomAttribute.\nNon-null value must be a string, number or boolean type, but a type of <".concat(typeof t,"> was provided."))}else(0,d.Z)("Failed to execute setCustomAttribute.\nName must be a string type, but a type of <".concat(typeof e,"> was provided."))},p.setUserId=function(e){if("string"==typeof e||null===e)return _("enduser.id",e,"setUserId",!0);(0,d.Z)("Failed to execute setUserId.\nNon-null value must be a string type, but a type of <".concat(typeof e,"> was provided."))},p.setApplicationVersion=function(e){if("string"==typeof e||null===e)return _("application.version",e,"setApplicationVersion",!1);(0,d.Z)("Failed to execute setApplicationVersion. Expected <String | null>, but got <".concat(typeof e,">."))},p.start=()=>{try{(0,o.p)(l.xS,["API/start/called"],void 0,n.D.metrics,b),b.emit("manual-start-all")}catch(e){(0,d.Z)("An unexpected issue occurred",e)}},p[h.Ef.RECORD]=function(){(0,o.p)(l.xS,["API/recordReplay/called"],void 0,n.D.metrics,b),(0,o.p)(h.Ef.RECORD,[],void 0,n.D.sessionReplay,b)},p[h.Ef.PAUSE]=function(){(0,o.p)(l.xS,["API/pauseReplay/called"],void 0,n.D.metrics,b),(0,o.p)(h.Ef.PAUSE,[],void 0,n.D.sessionReplay,b)},p.interaction=function(e){return(new x).get("object"==typeof e?e:{})};const R=x.prototype={createTracer:function(e,t){var r={},i=this,a="function"==typeof t;return(0,o.p)(l.xS,["API/createTracer/called"],void 0,n.D.metrics,b),f||(0,o.p)(E+"tracer",[(0,m.z)(),e,r],i,n.D.spa,b),function(){if(A.emit((a?"":"no-")+"fn-start",[(0,m.z)(),i,a],r),a)try{return t.apply(this,arguments)}catch(e){const t="string"==typeof e?new Error(e):e;throw A.emit("fn-err",[arguments,this,t],r),t}finally{A.emit("fn-end",[(0,m.z)()],r)}}}};function S(e,t,r,i){return function(){return(0,o.p)(l.xS,["API/"+t+"/called"],void 0,n.D.metrics,b),i&&(0,o.p)(e+t,[(0,m.z)(),...arguments],r?null:this,i,b),r?void 0:this}}function T(){r.e(111).then(r.bind(r,7438)).then((t=>{let{setAPI:r}=t;r(e),(0,s.LP)(e,"api")})).catch((e=>{(0,d.Z)("Downloading runtime APIs failed...",e),b.abort()}))}return["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach((e=>{R[e]=S(E,e,void 0,f?n.D.softNav:n.D.spa)})),p.setCurrentRouteName=f?S(E,"routeName",void 0,n.D.softNav):S(w,"routeName",!0,n.D.spa),p.noticeError=function(t,r){"string"==typeof t&&(t=new Error(t)),(0,o.p)(l.xS,["API/noticeError/called"],void 0,n.D.metrics,b),(0,o.p)("err",[t,(0,m.z)(),!1,r,!!y[e]],void 0,n.D.jserrors,b)},u.il?(0,c.b2)((()=>T()),!0):T(),p}(e.agentIdentifier,_,e.runSoftNavOverSpa)),void 0===e.exposed&&(e.exposed=N),E=!0}},8993:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},3325:(e,t,r)=>{"use strict";r.d(t,{D:()=>n,p:()=>i});const n={ajax:"ajax",jserrors:"jserrors",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",softNav:"soft_navigations",spa:"spa"},i={[n.pageViewEvent]:1,[n.pageViewTiming]:2,[n.metrics]:3,[n.jserrors]:4,[n.ajax]:5,[n.sessionTrace]:6,[n.pageAction]:7,[n.spa]:8,[n.softNav]:9,[n.sessionReplay]:10}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>({111:"nr-spa",164:"nr-spa-compressor",433:"nr-spa-recorder"}[e]+"-1.260.1.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.260.1.PROD:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var l=u[d];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){s=l;break}}if(!s){c=!0;var f={111:"sha512-1vbJLadsUx7r3ct9dcZ8xWYWRwjt1ZgNM7ZGewgLIexOrwwEwfm93GALuGB8Z5SoqqsLLjmx45VxQ6hbq5d4tA==",433:"sha512-GiLzIBj56lJ8WJ2NzkmQbbP5bDfqc0PbS30+FFrYgYBhzMOWg3PDNb2OYCaGiWyvQagVT9CeRMBrrFe45RBNVA==",164:"sha512-89TYqrPxRo9GwsbxmRSsCdyC5BH41uIPaW0FFv5w92e97EnshpUozEOnd12Dqnl7LGF+GS5XJY3LfGAh5DzLyA=="};(s=document.createElement("script")).charset="utf-8",s.timeout=120,i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r,0!==s.src.indexOf(window.location.origin+"/")&&(s.crossOrigin="anonymous"),f[a]&&(s.integrity=f[a])}e[r]=[n];var h=(t,n)=>{s.onerror=s.onload=null,clearTimeout(p);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(n))),t)return t(n)},p=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),c&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.p="https://js-agent.newrelic.com/",(()=>{var e={801:0,92:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,i)=>n=e[t]=[r,i]));r.push(n[2]=o);var a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.260.1.PROD"]=self["webpackChunk:NRBA-1.260.1.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(8993);var e=i(50),t=i(7144),r=i(4402),n=i(8325);class o{agentIdentifier;constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:(0,r.ky)(16);this.agentIdentifier=e,this.ee=n.ee.get(e)}#e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];if("function"==typeof this.api?.[t])return this.api[t](...n);(0,e.Z)("Call to agent api ".concat(t," failed. The API is not currently initialized."))}addPageAction(e,t){return this.#e("addPageAction",e,t)}setPageViewName(e,t){return this.#e("setPageViewName",e,t)}setCustomAttribute(e,t,r){return this.#e("setCustomAttribute",e,t,r)}noticeError(e,t){return this.#e("noticeError",e,t)}setUserId(e){return this.#e("setUserId",e)}setApplicationVersion(e){return this.#e("setApplicationVersion",e)}setErrorHandler(e){return this.#e("setErrorHandler",e)}finished(e){return this.#e("finished",e)}addRelease(e,t){return this.#e("addRelease",e,t)}start(e){return this.#e("start",e)}recordReplay(){return this.#e(t.Ef.RECORD)}pauseReplay(){return this.#e(t.Ef.PAUSE)}addToTrace(e){return this.#e("addToTrace",e)}setCurrentRouteName(e){return this.#e("setCurrentRouteName",e)}interaction(){return this.#e("interaction")}}var a=i(3325),s=i(234);const c=Object.values(a.D);function u(e){const t={};return c.forEach((r=>{t[r]=function(e,t){return!0===(0,s.Mt)(t,"".concat(e,".enabled"))}(r,e)})),t}var d=i(2758);var l=i(8e3),f=i(5938),h=i(3960),p=i(385),g=i(3112),m=i(8488),v=i(7872);class b extends f.W{constructor(e,t,r){let n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];super(e,t,r),this.auto=n,this.abortHandler=void 0,this.featAggregate=void 0,this.onAggregateImported=void 0,!1===(0,s.Mt)(this.agentIdentifier,"".concat(this.featureName,".autoStart"))&&(this.auto=!1),this.auto?(0,l.RP)(e,r):this.ee.on("manual-start-all",(0,v.Z)((()=>{(0,l.RP)(this.agentIdentifier,this.featureName),this.auto=!0,this.importAggregator()})))}importAggregator(){let t,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.featAggregate||!this.auto)return;this.onAggregateImported=new Promise((e=>{t=e}));const n=async()=>{let n;try{if((0,m.H)(this.agentIdentifier)){const{setupAgentSession:e}=await i.e(111).then(i.bind(i,9446));n=e(this.agentIdentifier)}}catch(t){(0,e.Z)("A problem occurred when starting up session manager. This page will not start or extend any session.",t),this.featureName===a.D.sessionReplay&&this.abortHandler?.()}try{if(!this.#t(this.featureName,n))return(0,l.LP)(this.agentIdentifier,this.featureName),void t(!1);const{lazyFeatureLoader:e}=await i.e(111).then(i.bind(i,8582)),{Aggregate:o}=await e(this.featureName,"aggregate");this.featAggregate=new o(this.agentIdentifier,this.aggregator,r),t(!0)}catch(r){(0,e.Z)("Downloading and initializing ".concat(this.featureName," failed..."),r),this.abortHandler?.(),(0,l.LP)(this.agentIdentifier,this.featureName,!0),t(!1),this.ee&&this.ee.abort()}};p.il?(0,h.b2)((()=>n()),!0):n()}#t(e,t){return e!==a.D.sessionReplay||(0,g.HM)(this.agentIdentifier,t)}}var y=i(7633);class A extends b{static featureName=y.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,y.t,r),this.importAggregator()}}var w=i(1117),E=i(1284);class _ extends w.w{constructor(e){super(e),this.aggregatedData={}}store(e,t,r,n,i){var o=this.getBucket(e,t,r,i);return o.metrics=function(e,t){t||(t={count:0});return t.count+=1,(0,E.D)(e,(function(e,r){t[e]=x(r,t[e])})),t}(n,o.metrics),o}merge(e,t,r,n,i){var o=this.getBucket(e,t,n,i);if(o.metrics){var a=o.metrics;a.count+=r.count,(0,E.D)(r,(function(e,t){if("count"!==e){var n=a[e],i=r[e];i&&!i.c?a[e]=x(i.t,n):a[e]=function(e,t){if(!t)return e;t.c||(t=R(t.t));return t.min=Math.min(e.min,t.min),t.max=Math.max(e.max,t.max),t.t+=e.t,t.sos+=e.sos,t.c+=e.c,t}(i,a[e])}}))}else o.metrics=r}storeMetric(e,t,r,n){var i=this.getBucket(e,t,r);return i.stats=x(n,i.stats),i}getBucket(e,t,r,n){this.aggregatedData[e]||(this.aggregatedData[e]={});var i=this.aggregatedData[e][t];return i||(i=this.aggregatedData[e][t]={params:r||{}},n&&(i.custom=n)),i}get(e,t){return t?this.aggregatedData[e]&&this.aggregatedData[e][t]:this.aggregatedData[e]}take(e){for(var t={},r="",n=!1,i=0;i<e.length;i++)t[r=e[i]]=Object.values(this.aggregatedData[r]||{}),t[r].length&&(n=!0),delete this.aggregatedData[r];return n?t:null}}function x(e,t){return null==e?function(e){e?e.c++:e={c:1};return e}(t):t?(t.c||(t=R(t.t)),t.c+=1,t.t+=e,t.sos+=e*e,e>t.max&&(t.max=e),e<t.min&&(t.min=e),t):{t:e}}function R(e){return{t:e,min:e,max:e,sos:e*e,c:1}}var S=i(8632),T=i(4351);var N=i(5546),O=i(7956),I=i(3239),D=i(9251),P=i(7894);class C extends b{static featureName=D.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,D.t,r),p.il&&((0,O.N)((()=>(0,N.p)("docHidden",[(0,P.z)()],void 0,D.t,this.ee)),!0),(0,I.bP)("pagehide",(()=>(0,N.p)("winPagehide",[(0,P.z)()],void 0,D.t,this.ee))),this.importAggregator())}}var j=i(3081);class k extends b{static featureName=j.t9;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,j.t9,r),this.importAggregator()}}var L=i(6660);class H{constructor(e,t,r,n,i){this.name="UncaughtError",this.message="string"==typeof e?e:(0,T.P)(e),this.sourceURL=t,this.line=r,this.column=n,this.__newrelic=i}}function M(e){return F(e)?e:new H(void 0!==e?.message?e.message:e,e?.filename||e?.sourceURL,e?.lineno||e?.line,e?.colno||e?.col,e?.__newrelic)}function U(e){let t="Unhandled Promise Rejection";if(F(e?.reason))try{return e.reason.message=t+": "+e.reason.message,M(e.reason)}catch(t){return M(e.reason)}if(void 0===e.reason)return M(t);const r=M(e.reason);return r.message=t+": "+r?.message,r}function z(e){if(e.error instanceof SyntaxError&&!/:\d+$/.test(e.error.stack?.trim())){const t=new H(e.message,e.filename,e.lineno,e.colno,e.error.__newrelic);return t.name=SyntaxError.name,t}return F(e.error)?e.error:M(e)}function F(e){return e instanceof Error&&!!e.stack}class B extends b{static featureName=L.t;#r=!1;constructor(e,r){let n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,r,L.t,n);try{this.removeOnAbort=new AbortController}catch(e){}this.ee.on("internal-error",(e=>{this.abortHandler&&(0,N.p)("ierr",[M(e),(0,P.z)(),!0,{},this.#r],void 0,this.featureName,this.ee)})),this.ee.on(t.Ef.REPLAY_RUNNING,(e=>{this.#r=e})),p._A.addEventListener("unhandledrejection",(e=>{this.abortHandler&&(0,N.p)("err",[U(e),(0,P.z)(),!1,{unhandledPromiseRejection:1},this.#r],void 0,this.featureName,this.ee)}),(0,I.m$)(!1,this.removeOnAbort?.signal)),p._A.addEventListener("error",(e=>{this.abortHandler&&(0,N.p)("err",[z(e),(0,P.z)(),!1,{},this.#r],void 0,this.featureName,this.ee)}),(0,I.m$)(!1,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var G=i(2210);let q=1;const K="nr@id";function V(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===p._A?0:(0,G.X)(e,K,(function(){return q++}))}function Z(e){if("string"==typeof e&&e.length)return e.length;if("object"==typeof e){if("undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer&&e.byteLength)return e.byteLength;if("undefined"!=typeof Blob&&e instanceof Blob&&e.size)return e.size;if(!("undefined"!=typeof FormData&&e instanceof FormData))try{return(0,T.P)(e).length}catch(e){return}}}var W=i(7806),X=i(7243);class Y{constructor(e){this.agentIdentifier=e}generateTracePayload(e){if(!this.shouldGenerateTrace(e))return null;var t=(0,s.DL)(this.agentIdentifier);if(!t)return null;var n=(t.accountID||"").toString()||null,i=(t.agentID||"").toString()||null,o=(t.trustKey||"").toString()||null;if(!n||!i)return null;var a=(0,r.M)(),c=(0,r.Ht)(),u=Date.now(),d={spanId:a,traceId:c,timestamp:u};return(e.sameOrigin||this.isAllowedOrigin(e)&&this.useTraceContextHeadersForCors())&&(d.traceContextParentHeader=this.generateTraceContextParentHeader(a,c),d.traceContextStateHeader=this.generateTraceContextStateHeader(a,u,n,i,o)),(e.sameOrigin&&!this.excludeNewrelicHeader()||!e.sameOrigin&&this.isAllowedOrigin(e)&&this.useNewrelicHeaderForCors())&&(d.newrelicHeader=this.generateTraceHeader(a,c,u,n,i,o)),d}generateTraceContextParentHeader(e,t){return"00-"+t+"-"+e+"-01"}generateTraceContextStateHeader(e,t,r,n,i){return i+"@nr=0-1-"+r+"-"+n+"-"+e+"----"+t}generateTraceHeader(e,t,r,n,i,o){if(!("function"==typeof p._A?.btoa))return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(a.d.tk=o),btoa((0,T.P)(a))}shouldGenerateTrace(e){return this.isDtEnabled()&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var t=!1,r={};if((0,s.Mt)(this.agentIdentifier,"distributed_tracing")&&(r=(0,s.P_)(this.agentIdentifier).distributed_tracing),e.sameOrigin)t=!0;else if(r.allowed_origins instanceof Array)for(var n=0;n<r.allowed_origins.length;n++){var i=(0,X.e)(r.allowed_origins[n]);if(e.hostname===i.hostname&&e.protocol===i.protocol&&e.port===i.port){t=!0;break}}return t}isDtEnabled(){var e=(0,s.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.enabled}excludeNewrelicHeader(){var e=(0,s.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=(0,s.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=(0,s.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.cors_use_tracecontext_headers}}var J=i(7825),Q=i(1199),ee=["load","error","abort","timeout"],te=ee.length,re=s.Yu.REQ,ne=s.Yu.XHR;class ie extends b{static featureName=J.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,J.t,r),this.dt=new Y(e),this.handler=(e,t,r,n)=>(0,N.p)(e,t,r,n,this.ee);try{const e={xmlhttprequest:"xhr",fetch:"fetch",beacon:"beacon"};p._A?.performance?.getEntriesByType("resource").forEach((t=>{if(t.initiatorType in e&&0!==t.responseStatus){const r={status:t.responseStatus},n={rxSize:t.transferSize,duration:Math.floor(t.duration),cbTime:0};oe(r,t.name),this.handler("xhr",[r,n,t.startTime,t.responseEnd,e[t.initiatorType]],void 0,a.D.ajax)}}))}catch(e){}(0,W.u5)(this.ee),(0,W.Kf)(this.ee),function(e,t,r,n){function i(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=E,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},e.addEventListener("load",(function(r){_(t,e)}),(0,I.m$)(!1)),p.IF||e.addEventListener("progress",(function(e){t.lastSize=e.loaded}),(0,I.m$)(!1))}function o(e){this.params={method:e[0]},oe(this,e[1]),this.metrics={}}function c(t,r){var i=(0,s.DL)(e);i.xpid&&this.sameOrigin&&r.setRequestHeader("X-NewRelic-ID",i.xpid);var o=n.generateTracePayload(this.parsedOrigin);if(o){var a=!1;o.newrelicHeader&&(r.setRequestHeader("newrelic",o.newrelicHeader),a=!0),o.traceContextParentHeader&&(r.setRequestHeader("traceparent",o.traceContextParentHeader),o.traceContextStateHeader&&r.setRequestHeader("tracestate",o.traceContextStateHeader),a=!0),a&&(this.dt=o)}}function u(e,r){var n=this.metrics,i=e[0],o=this;if(n&&i){var a=Z(i);a&&(n.txSize=a)}this.startTime=(0,P.z)(),this.body=i,this.listener=function(e){try{"abort"!==e.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==e.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof r.onload)&&"function"==typeof o.end)&&o.end(r)}catch(e){try{t.emit("internal-error",[e])}catch(e){}}};for(var s=0;s<te;s++)r.addEventListener(ee[s],this.listener,(0,I.m$)(!1))}function d(e,t,r){this.cbTime+=e,t?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof r.onload||"function"!=typeof this.end||this.end(r)}function l(e,t){var r=""+V(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function f(e,t){var r=""+V(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function h(){this.endTime=(0,P.z)()}function g(e,r){r instanceof ne&&"load"===e[0]&&t.emit("xhr-load-added",[e[1],e[2]],r)}function m(e,r){r instanceof ne&&"load"===e[0]&&t.emit("xhr-load-removed",[e[1],e[2]],r)}function v(e,t,r){t instanceof ne&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,P.z)()))}function b(e,r){this.xhrCbStart&&t.emit("xhr-cb-time",[(0,P.z)()-this.xhrCbStart,this.onload,r],r)}function y(e){var t,r=e[1]||{};if("string"==typeof e[0]?0===(t=e[0]).length&&p.il&&(t=""+p._A.location.href):e[0]&&e[0].url?t=e[0].url:p._A?.URL&&e[0]&&e[0]instanceof URL?t=e[0].href:"function"==typeof e[0].toString&&(t=e[0].toString()),"string"==typeof t&&0!==t.length){t&&(this.parsedOrigin=(0,X.e)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var i=n.generateTracePayload(this.parsedOrigin);if(i&&(i.newrelicHeader||i.traceContextParentHeader))if(e[0]&&e[0].headers)s(e[0].headers,i)&&(this.dt=i);else{var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),s(o.headers,i)&&(this.dt=i),e.length>1?e[1]=o:e.push(o)}}function s(e,t){var r=!1;return t.newrelicHeader&&(e.set("newrelic",t.newrelicHeader),r=!0),t.traceContextParentHeader&&(e.set("traceparent",t.traceContextParentHeader),t.traceContextStateHeader&&e.set("tracestate",t.traceContextStateHeader),r=!0),r}}function A(e,t){this.params={},this.metrics={},this.startTime=(0,P.z)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r,n=this.opts||{},i=this.target;"string"==typeof i?r=i:"object"==typeof i&&i instanceof re?r=i.url:p._A?.URL&&"object"==typeof i&&i instanceof URL&&(r=i.href),oe(this,r);var o=(""+(i&&i instanceof re&&i.method||n.method||"GET")).toUpperCase();this.params.method=o,this.body=n.body,this.txSize=Z(n.body)||0}function w(e,t){if(this.endTime=(0,P.z)(),this.params||(this.params={}),(0,Q.zh)(this.params))return;let n;this.params.status=t?t.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);const i={txSize:this.txSize,rxSize:n,duration:(0,P.z)()-this.startTime};r("xhr",[this.params,i,this.startTime,this.endTime,"fetch"],this,a.D.ajax)}function E(e){const t=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(let t=0;t<te;t++)e.removeEventListener(ee[t],this.listener,!1);t.aborted||(0,Q.zh)(t)||(n.duration=(0,P.z)()-this.startTime,this.loadCaptureCalled||4!==e.readyState?null==t.status&&(t.status=0):_(this,e),n.cbTime=this.cbTime,r("xhr",[t,n,this.startTime,this.endTime,"xhr"],this,a.D.ajax))}}function _(e,r){e.params.status=r.status;var n=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?Z(e.response):"text"===r||""===r||void 0===r?Z(e.responseText):void 0}(r,e.lastSize);if(n&&(e.metrics.rxSize=n),e.sameOrigin){var i=r.getResponseHeader("X-NewRelic-App-Data");i&&((0,N.p)(j.mY,["Ajax/CrossApplicationTracing/Header/Seen"],void 0,a.D.metrics,t),e.params.cat=i.split(", ").pop())}e.loadCaptureCalled=!0}t.on("new-xhr",i),t.on("open-xhr-start",o),t.on("open-xhr-end",c),t.on("send-xhr-start",u),t.on("xhr-cb-time",d),t.on("xhr-load-added",l),t.on("xhr-load-removed",f),t.on("xhr-resolved",h),t.on("addEventListener-end",g),t.on("removeEventListener-end",m),t.on("fn-end",b),t.on("fetch-before-start",y),t.on("fetch-start",A),t.on("fn-start",v),t.on("fetch-done",w)}(e,this.ee,this.handler,this.dt),this.importAggregator()}}function oe(e,t){var r=(0,X.e)(t),n=e.params||e;n.hostname=r.hostname,n.port=r.port,n.protocol=r.protocol,n.host=r.hostname+":"+r.port,n.pathname=r.pathname,e.parsedOrigin=r,e.sameOrigin=r.sameOrigin}var ae=i(3614);const{BST_RESOURCE:se,RESOURCE:ce,START:ue,END:de,FEATURE_NAME:le,FN_END:fe,FN_START:he,PUSH_STATE:pe}=ae;var ge=i(7056);class me extends b{static featureName=t.t9;#i;constructor(e,r){let n,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,r,t.t9,i),this.replayRunning=!1;try{n=JSON.parse(localStorage.getItem("".concat(ge.Bq,"_").concat(ge.K4)))}catch(e){}(0,g.Rc)(e)&&this.ee.on("recordReplay",(()=>this.#o())),this.#a(n)?(this.#i=n?.sessionReplayMode,this.#s()):this.importAggregator(),this.ee.on("err",(e=>{this.replayRunning&&(this.errorNoticed=!0,(0,N.p)(t.Ef.ERROR_DURING_REPLAY,[e],void 0,this.featureName,this.ee))})),this.ee.on(t.Ef.REPLAY_RUNNING,(e=>{this.replayRunning=e}))}#a(e){return e&&(e.sessionReplayMode===ge.IK.FULL||e.sessionReplayMode===ge.IK.ERROR)||(0,g.rU)(this.agentIdentifier)}#c=!1;async#s(e){if(!this.#c){this.#c=!0;try{const{Recorder:t}=await Promise.all([i.e(111),i.e(433)]).then(i.bind(i,4345));this.recorder??=new t({mode:this.#i,agentIdentifier:this.agentIdentifier,trigger:e,ee:this.ee}),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording}catch(e){}this.importAggregator({recorder:this.recorder,errorNoticed:this.errorNoticed})}}#o(){this.featAggregate?this.featAggregate.mode!==ge.IK.FULL&&this.featAggregate.initializeRecording(ge.IK.FULL,!0):(this.#i=ge.IK.FULL,this.#s(t.pB.API),this.recorder&&this.recorder.parent.mode!==ge.IK.FULL&&(this.recorder.parent.mode=ge.IK.FULL,this.recorder.stopRecording(),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording))}}var ve=i(6216);class be extends b{static featureName=ve.t9;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(super(e,t,ve.t9,r),!p.il||!s.Yu.MO)return;const n=(0,W.QU)(this.ee),i=(0,W.em)(this.ee),o=()=>(0,N.p)("newURL",[(0,P.z)(),""+window.location],void 0,this.featureName,this.ee);n.on("pushState-end",o),n.on("replaceState-end",o);try{this.removeOnAbort=new AbortController}catch(e){}(0,I.bP)("popstate",(e=>(0,N.p)("newURL",[e.timeStamp,""+window.location],void 0,this.featureName,this.ee)),!0,this.removeOnAbort?.signal);let a=!1;const c=new s.Yu.MO(((e,t)=>{a||(a=!0,requestAnimationFrame((()=>{(0,N.p)("newDom",[(0,P.z)()],void 0,this.featureName,this.ee),a=!1})))})),u=(0,v.D)((e=>{(0,N.p)("newUIEvent",[e],void 0,this.featureName,this.ee),c.observe(document.body,{attributes:!0,childList:!0,subtree:!0,characterData:!0})}),100,{leading:!0});i.on("fn-start",(e=>{let[t]=e;ve.sE.includes(t?.type)&&u(t)}));for(let e of ve.sE)document.addEventListener(e,(()=>{}));this.abortHandler=function(){this.removeOnAbort?.abort(),c.disconnect(),this.abortHandler=void 0},this.importAggregator({domObserver:c})}}var ye=i(7836);const{FEATURE_NAME:Ae,START:we,END:Ee,BODY:_e,CB_END:xe,JS_TIME:Re,FETCH:Se,FN_START:Te,CB_START:Ne,FN_END:Oe}=ye;var Ie=i(4649);class De extends b{static featureName=Ie.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,Ie.t,r),this.importAggregator()}}new class extends o{constructor(t,r){super(r),p._A?(this.sharedAggregator=new _({agentIdentifier:this.agentIdentifier}),this.features={},(0,S.h5)(this.agentIdentifier,this),this.desiredFeatures=new Set(t.features||[]),this.desiredFeatures.add(A),this.runSoftNavOverSpa=[...this.desiredFeatures].some((e=>e.featureName===a.D.softNav)),(0,d.j)(this,t,t.loaderType||"agent"),this.run()):(0,e.Z)("Failed to initialize the agent. Could not determine the runtime environment.")}get config(){return{info:this.info,init:this.init,loader_config:this.loader_config,runtime:this.runtime}}run(){try{const t=u(this.agentIdentifier),r=[...this.desiredFeatures];r.sort(((e,t)=>a.p[e.featureName]-a.p[t.featureName])),r.forEach((r=>{if(!t[r.featureName]&&r.featureName!==a.D.pageViewEvent)return;if(this.runSoftNavOverSpa&&r.featureName===a.D.spa)return;if(!this.runSoftNavOverSpa&&r.featureName===a.D.softNav)return;const n=function(e){switch(e){case a.D.ajax:return[a.D.jserrors];case a.D.sessionTrace:return[a.D.ajax,a.D.pageViewEvent];case a.D.sessionReplay:return[a.D.sessionTrace];case a.D.pageViewTiming:return[a.D.pageViewEvent];default:return[]}}(r.featureName);n.every((e=>e in this.features))||(0,e.Z)("".concat(r.featureName," is enabled but one or more dependent features has not been initialized (").concat((0,T.P)(n),"). This may cause unintended consequences or missing data...")),this.features[r.featureName]=new r(this.agentIdentifier,this.sharedAggregator)}))}catch(t){(0,e.Z)("Failed to initialize all enabled instrument classes (agent aborted) -",t);for(const e in this.features)this.features[e].abortHandler?.();const r=(0,S.fP)();delete r.initializedAgents[this.agentIdentifier]?.api,delete r.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator;return r.ee.get(this.agentIdentifier).abort(),!1}}}({features:[ie,A,C,class extends b{static featureName=le;constructor(e,t){super(e,t,le,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]);if(!(0,m.H)(this.agentIdentifier))return void(0,l.o5)(this.agentIdentifier,this.featureName);const r=this.ee;let n;(0,W.QU)(r),this.eventsEE=(0,W.em)(r),this.eventsEE.on(he,(function(e,t){this.bstStart=(0,P.z)()})),this.eventsEE.on(fe,(function(e,t){(0,N.p)("bst",[e[0],t,this.bstStart,(0,P.z)()],void 0,a.D.sessionTrace,r)})),r.on(pe+ue,(function(e){this.time=(0,P.z)(),this.startPath=location.pathname+location.hash})),r.on(pe+de,(function(e){(0,N.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,a.D.sessionTrace,r)}));try{n=new PerformanceObserver((e=>{const t=e.getEntries();(0,N.p)(se,[t],void 0,a.D.sessionTrace,r)})),n.observe({type:ce,buffered:!0})}catch(e){}this.importAggregator({resourceObserver:n})}},me,k,De,B,be,class extends b{static featureName=Ae;constructor(e,t){var r;if(super(e,t,Ae,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]),r=this,!p.il)return;try{this.removeOnAbort=new AbortController}catch(e){}let n,i=0;const o=this.ee.get("tracer"),a=(0,W._L)(this.ee),s=(0,W.Lg)(this.ee),c=(0,W.BV)(this.ee),u=(0,W.Kf)(this.ee),d=this.ee.get("events"),l=(0,W.u5)(this.ee),f=(0,W.QU)(this.ee),h=(0,W.Gm)(this.ee);function g(e,t){f.emit("newURL",[""+window.location,t])}function m(){i++,n=window.location.hash,this[Te]=(0,P.z)()}function v(){i--,window.location.hash!==n&&g(0,!0);var e=(0,P.z)();this[Re]=~~this[Re]+e-this[Te],this[Oe]=e}function b(e,t){e.on(t,(function(){this[t]=(0,P.z)()}))}this.ee.on(Te,m),s.on(Ne,m),a.on(Ne,m),this.ee.on(Oe,v),s.on(xe,v),a.on(xe,v),this.ee.on("fn-err",(function(){for(var t=arguments.length,n=new Array(t),i=0;i<t;i++)n[i]=arguments[i];n[2]?.__newrelic?.[e]||(0,N.p)("function-err",[...n],void 0,r.featureName,r.ee)})),this.ee.buffer([Te,Oe,"xhr-resolved"],this.featureName),d.buffer([Te],this.featureName),c.buffer(["setTimeout"+Ee,"clearTimeout"+we,Te],this.featureName),u.buffer([Te,"new-xhr","send-xhr"+we],this.featureName),l.buffer([Se+we,Se+"-done",Se+_e+we,Se+_e+Ee],this.featureName),f.buffer(["newURL"],this.featureName),h.buffer([Te],this.featureName),s.buffer(["propagate",Ne,xe,"executor-err","resolve"+we],this.featureName),o.buffer([Te,"no-"+Te],this.featureName),a.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),b(l,Se+we),b(l,Se+"-done"),b(a,"new-jsonp"),b(a,"jsonp-end"),b(a,"cb-start"),f.on("pushState-end",g),f.on("replaceState-end",g),window.addEventListener("hashchange",g,(0,I.m$)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",g,(0,I.m$)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",(function(){g(0,i>1)}),(0,I.m$)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}],loaderType:"spa"})})()})();
</script>
<meta content="EA3F0DC751089224F0A97C414E310BE8" name="msvalidate.01">
<meta content="index, follow" name="robots">
<title>
Bestseller
</title>
<meta content="Bestseller" name="description"/>
<meta content="Bestseller" name="keywords"/>
<meta content="yes" name="mobile-web-app-capable"/>
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0" name="viewport"/>
<link href="https://images.bewakoof.com/web/favicon-1635856217.png" rel="shortcut icon" type="image/x-icon"/>
<link href="https://images.bewakoof.com/lib/icon/app-logo.png" rel="apple-touch-icon" sizes="192x192"/>
<link href="https://images.bewakoof.com/lib/icon/app-logo.png" rel="icon" sizes="192x192"/>
<link href="/manifest.json" rel="manifest"/>
<meta content="Bewakoof" name="apple-mobile-web-app-title"/>
<meta content="119193024779571" property="fb:app_id">
<meta content="140947639712-ukpgitufo1i1gc6nmd8o1l14tcu72nt2.apps.googleusercontent.com" name="google-signin-client_id"/>
<link href="https://plus.google.com/+Bewakoof/" rel="publisher">
<meta content="Bewakoof" name="application-name"/>
<meta content="#ffc40d" name="msapplication-TileColor"/>
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" name="msapplication-TileImage"/>
<meta content="https://files.bewakoof.com/lib/default/images_css/browserconfig.xml" name="msapplication-config"/>
<meta content="#222222" name="theme-color"/>
<meta content="bewakoof://www.bewakoof.com/bestseller?sort=popular" property="al:ios:url">
<meta content="1100190514" property="al:ios:app_store_id">
<meta content="Bewakoof- Fashion Shopping App" property="al:ios:app_name">
<meta content="bewakoof://www.bewakoof.com/bestseller?sort=popular" property="al:android:url"/>
<meta content="com.bewakoof.bewakoof" property="al:android:package"/>
<meta content="Bewakoof Online Fashion Shopping App" property="al:android:app_name"/>
<meta content="1548728332017744" property="og:app_id"/>
<meta content="640" property="og:image:width"/>
<meta content="300" property="og:image:height"/>
<meta content="website" property="og:type">
<meta content="Bestseller" property="og:title">
<meta content="Bestseller" property="og:description"/>
<meta content="Bewakoof" property="og:site_name"/>
<meta content="https://www.bewakoof.com/bestseller?sort=popular" property="og:url">
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" property="og:image">
<meta content="En" property="og:locale">
<meta content="summary" name="twitter:card"/>
<meta content="@bewakoof" name="twitter:site"/>
<meta content="Bewakoof.com" name="twitter:creator"/>
<meta content="Bestseller" name="twitter:title"/>
<meta content="Bestseller" name="twitter:description"/>
<meta content="https://www.bewakoof.com/bestseller?sort=popular" name="branch:deeplink:$canonical_url"/>
<meta content="5833" name="branch:deeplink:collectionID"/>
<meta content="Bestseller" name="branch:deeplink:collectionName"/>
<meta content="https://www.bewakoof.com/bestseller" name="branch:deeplink:collectionUrl"/>
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" name="twitter:image"/>
<link href="https://www.bewakoof.com/bestseller" rel="canonical">
<link href="https://www.bewakoof.com/bestseller/default/2" rel="next">
<link href="https://www.bewakoof.com/osdd.xml" rel="search" title="bewakoof.com" type="application/opensearchdescription+xml">
<link href="https://static.bewakoof.com/www/app/style.32559cff4fdea553b00c.css" rel="stylesheet"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.bewakoof.com",
"logo": "https://images.bewakoof.com/logos/bewakoof-logo-og.png",
"sameAs": [
"https://www.facebook.com/bewakoofcom", "https://www.instagram.com/bewakoofofficial/", "https://twitter.com/bewakoof", "https://plus.google.com/+Bewakoof", "https://in.pinterest.com/bewakoof"
],
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.bewakoof.com/search/{search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://www.bewakoof.com/",
"name": "Home",
"image": ""
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://www.bewakoof.com/bestseller",
"name": "Bestseller",
"image": ""
}
}]
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ItemList",
"itemListElement": [{"@type": "ListItem",
"position": 1,
"url": "https://www.bewakoof.com/p/womens-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt",
"name": "Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt"
},{"@type": "ListItem",
"position": 2,
"url": "https://www.bewakoof.com/p/mens-black-oversized-cargo-trousers-11",
"name": "Men's Black Oversized Cargo Pants"
},{"@type": "ListItem",
"position": 3,
"url": "https://www.bewakoof.com/p/mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black",
"name": "Men's Black Oversized Cargo Joggers"
},{"@type": "ListItem",
"position": 4,
"url": "https://www.bewakoof.com/p/jet-black-casual-jogger-pants",
"name": "Men's Black Plus Size Casual Joggers"
},{"@type": "ListItem",
"position": 5,
"url": "https://www.bewakoof.com/p/navy-blue-casual-jogger-pants",
"name": "Men's Blue Plus Size Casual Joggers"
},{"@type": "ListItem",
"position": 6,
"url": "https://www.bewakoof.com/p/mens-grey-we-are-venom-graphic-printed-oversized-vest",
"name": "Men's Grey We Are Venom Graphic Printed Oversized Vest"
},{"@type": "ListItem",
"position": 7,
"url": "https://www.bewakoof.com/p/womens-purple-dont-care-graphic-print-oversized-t-shirt",
"name": "Women's Purple Don't Care Graphic Printed Oversized T-shirt"
},{"@type": "ListItem",
"position": 8,
"url": "https://www.bewakoof.com/p/mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black-plain",
"name": "Men's Black Oversized Plus Size Cargo Joggers"
},{"@type": "ListItem",
"position": 9,
"url": "https://www.bewakoof.com/p/men-hug-it-out-graphic-printed-regular-t-shirt-51",
"name": "Men's Purple Hug It Out Graphic Printed T-shirt"
},{"@type": "ListItem",
"position": 10,
"url": "https://www.bewakoof.com/p/mens-grey-oversized-cargo-trousers-17",
"name": "Men's Grey Oversized Cargo Pants"
}]
}
</script>
<script>
/*! For license information please see web-analytics-dist.js.LICENSE */
var Analytics=function(t){function o(e){if(n[e])return n[e].exports;var r=n[e]={i:e,l:!1,exports:{}};return t[e].call(r.exports,r,r.exports,o),r.l=!0,r.exports}var n={};return o.m=t,o.c=n,o.d=function(e,r,t){o.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(r,e){if(1&e&&(r=o(r)),8&e)return r;if(4&e&&"object"==typeof r&&r&&r.__esModule)return r;var t=Object.create(null);if(o.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:r}),2&e&&"string"!=typeof r)for(var n in r)o.d(t,n,function(e){return r[e]}.bind(null,n));return t},o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,"a",r),r},o.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},o.p="/",o(o.s=3)}([function(e,r,t){var g,v,_=t(1),y=t(2),m=0,h=0;e.exports=function(e,r,t){var n=r&&t||0,o=r||[],i=(e=e||{}).node||g,a=void 0!==e.clockseq?e.clockseq:v;if(null==i||null==a){var u=_();null==i&&(i=g=[1|u[0],u[1],u[2],u[3],u[4],u[5]]),null==a&&(a=v=16383&(u[6]<<8|u[7]))}var c=void 0!==e.msecs?e.msecs:(new Date).getTime(),s=void 0!==e.nsecs?e.nsecs:h+1,l=c-m+(s-h)/1e4;if(l<0&&void 0===e.clockseq&&(a=a+1&16383),(l<0||m<c)&&void 0===e.nsecs&&(s=0),1e4<=s)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");m=c,v=a;var f=(1e4*(268435455&(c+=122192928e5))+(h=s))%4294967296;o[n++]=f>>>24&255,o[n++]=f>>>16&255,o[n++]=f>>>8&255,o[n++]=255&f;var p=c/4294967296*1e4&268435455;o[n++]=p>>>8&255,o[n++]=255&p,o[n++]=p>>>24&15|16,o[n++]=p>>>16&255,o[n++]=a>>>8|128,o[n++]=255&a;for(var d=0;d<6;++d)o[n+d]=i[d];return r||y(o)}},function(e,r){var t="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof window.msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto);if(t){var n=new Uint8Array(16);e.exports=function(){return t(n),n}}else{var o=new Array(16);e.exports=function(){for(var e,r=0;r<16;r++)0==(3&r)&&(e=4294967296*Math.random()),o[r]=e>>>((3&r)<<3)&255;return o}}},function(e,r){for(var o=[],t=0;t<256;++t)o[t]=(t+256).toString(16).substr(1);e.exports=function(e,r){var t=r||0,n=o;return[n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]]].join("")}},function(e,r,t){"use strict";function n(r,t){return new Promise(function(e){y({type:"track",event:r,properties:t}),e()})}function o(r,t){var n={path:l.pathname||"",search:l.search||"",title:l.title||"",url:l.url||"",referrer:l.referrer};return new Promise(function(e){y({type:"page",name:r,properties:b({},n,t)}),e()})}function i(r,t){return new Promise(function(e){h.set(r,t),e()})}function a(r,t){return new Promise(function(e){switch(r){case"device_category":g.context.device_category=t;break;case"ab_id":g.ab_id=t;break;case"webview":g.context.webview=t;break;case"api_url":v.BA_API_URL=t,h.initialize(),g.initialize();break;case"page_properties":g.context.page=t}e()})}t.r(r);var u="_stv1",c=function(e,r,t){localStorage.setItem(u+e,JSON.stringify({value:r,expiry:t?Math.floor(Date.now()/1e3)+t:9999999999}))},s=function(r){try{var e=JSON.parse(localStorage.getItem(u+r));if(e.expiry&&e.expiry>Math.floor(Date.now()/1e3))return e.value;throw new Error("Key not found or expired")}catch(e){return localStorage.removeItem(u+r),null}},l={get query(){for(var e,r=location.search.substring(1),t=/([^&=]+)=([^&]*)/g,n={};e=t.exec(r);)n[decodeURIComponent(e[1])]=decodeURIComponent(e[2]);return n},get search(){return location.search},get pathname(){return location.pathname},get referrer(){var e=s("_ref")||"";return document.referrer&&-1<document.referrer.search(location.host)&&(e=document.referrer),c("_ref",e,31536e3),e},get title(){return document.title},get url(){return location.href}},f=t(0),p=t.n(f),d=function(){return(d=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)},g={initialize:function(){},get context(){return{get page(){return d({path:l.pathname||"",search:l.search||"",title:l.title||"",url:l.url||"",referrer:l.referrer},s("__p"))},set page(e){c("__p",e)},get utm(){var e={source:"",medium:"",campaign:""};return s("_utm")&&(e=s("_utm")),c("_utm",e,1800),e},get webview(){return s("_wv")||""},set webview(e){c("_wv",e)},get device_category(){return s("_de")||""},set device_category(e){c("_de",e)},get screen(){return{width:screen.width,height:screen.height}},get scroll_depth(){return innerHeight+scrollY}}},set ab_id(e){c("_ab_id",e,1800)},get ab_id(){return s("_ab_id")||""},get user_id(){return h.user_id},get anonymous_id(){var e=s("_a_id")||p()();return c("_a_id",e),e},get session_id(){var e=JSON.parse(localStorage.getItem("_stv1_s_id"));return e&&e.expiry&&e.expiry<Math.floor(Date.now()/1e3)&&(localStorage.isExpiredSession="true"),e||((e={}).value=p()()),c("_s_id",e.value,1800),e.value}},v={BA_API_URL:void 0},_=function(){return(_=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)},y=function(e){var r=new XMLHttpRequest,t=JSON.parse(JSON.stringify(_({common:g},e)));window.localStorage&&window.localStorage.getItem("debug")&&("event"!=t.event?console.log("%c "+JSON.stringify(t,null,2),"color: red"):console.table(t.properties)),r.open("GET",v.BA_API_URL+"/web?d="+encodeURIComponent(JSON.stringify(t)),!0),r.send()},m={user_id:"",properties:{}},h={initialize:function(){s("_u")&&(m=s("_u"))},set:function(e,r){var t=JSON.stringify(m)||"";m={user_id:e,properties:r};var n=JSON.stringify(m);c("_u",m),t!==n&&y({type:"identify",properties:r})},get user_id(){return m.user_id},get properties(){return m.properties}},b=function(){return(b=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)};t.d(r,"track",function(){return n}),t.d(r,"identify",function(){return i}),t.d(r,"page",function(){return o}),t.d(r,"set",function(){return a})}]);
</script>
<script>
var PhonePe=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s;!function(e){e.READ_SMS="READ_SMS",e.LOCATION="LOCATION",e.CAMERA="CAMERA",e.WRITE_EXTERNAL_STORAGE="WRITE_EXTERNAL_STORAGE",e.READ_EXTERNAL_STORAGE="READ_EXTERNAL_STORAGE"}(t=e.Permission||(e.Permission={})),function(e){e.web="web",e.native="native"}(n=e.Species||(e.Species={})),function(e){e.ios="ios",e.android="android"}(r=e.OS||(e.OS={})),function(e){e.ios="phonepe-ios",e.android="phonepe-android"}(i=e.OSUserAgent||(e.OSUserAgent={})),function(e){e.email="email",e.name="name",e.phoneNumber="phoneNumber",e.isEmailVerified="isEmailVerified"}(s=e.UserDetail||(e.UserDetail={}))}(t.ExternalConstants||(t.ExternalConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(4),i=n(5),s=n(3),o=n(10);class a{static callback(e,t,n,r){i.Logger.logd("PhonePe","phonepeCallback called! with callbackName = "+e);let o=a.promiseMapping[e];o&&("1"===t?o[s.PhonePeSDKWebConstants.General.resolve](n):o[s.PhonePeSDKWebConstants.General.reject](r),delete a.promiseMapping[e])}static callNative(e,t,n){if(!o.MethodVersioningHandler.isMethodSupported(e))return void i.Logger.logd("PhonePe","Sorry! This method is not supported with PhonePe app's version");i.Logger.logd("PhonePe","Trying to call methodName = "+e);let s=window.webkit;if(r.PhonePeUtils.isValidMethodOniOS(e))s.messageHandlers[e].postMessage(n);else{window[t][e](JSON.stringify(n))}}static storePromiseAndCallNative(e,t,n){return new Promise((i,o)=>{let a=r.PhonePeUtils.createuuid();n[s.PhonePeSDKWebConstants.General.callbackId]=a,this.callNative(e,t,n),this.promiseMapping[a]={resolve:i,reject:o}})}}a.promiseMapping={},t.MessagingHandler=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s,o,a,c,l;e.sdkVersion="0.1",e.PhonePeSDKRNMajorVersion=0,e.PhonePeSDKRNMinorVersion=53,e.data_preferences="database_versions",e.PhonePeSDKVersion=4,function(e){e.confirmationScreenDuration=400,e.discoveryContextMode="PEER_TO_MERCHANT",e.paymentScreenName="PAY",e.v1="v1",e.v2="v2"}(t=e.General||(e.General={})),function(e){e.invalidParams="PARAMS_INVALID_OR_INSUFFICIENT"}(n=e.ErrorCode||(e.ErrorCode={})),function(e){e.payments=103,e.transactionDetails=105}(r=e.ActivityID||(e.ActivityID={})),function(e){e.name="PermissionsBridge",e.seekPermission="seekPermission",e.openSettingsPage="openSettingsPageForPermission",e.androidPrefix="android.permission.",e.locationPermissionName="ACCESS_FINE_LOCATION",e.kPermission="permission"}(i=e.PermissionsBridge||(e.PermissionsBridge={})),function(e){e.bridgeName="AnalyticsBridge",e.methodName="logMerchantEvent",e.kName="name",e.kMetadata="metadata",e.kGroupingKey="groupingKey"}(s=e.AnalyticsBridge||(e.AnalyticsBridge={})),function(e){e.bridgeName="AuthBridge",e.fetchGrantToken="fetchGrantToken",e.fetchAuthToken="fetchAuthToken"}(o=e.AuthBridge||(e.AuthBridge={})),function(e){e.bridgeName="OrderActionBridge",e.reserveOrder="reserveOrder",e.fetchOrderRequestToken="fetchOrderRequestToken",e.openPaymentsPageForReservedOrder="openPaymentsPageForReservedOrder"}(a=e.OrderActionBridge||(e.OrderActionBridge={})),function(e){e.bridgeName="FilePickerBridge",e.selectFile="selectFile",e.readFile="readFile"}(c=e.FilePickerBridge||(e.FilePickerBridge={})),function(e){e.bridgeName="CameraBridge",e.scanQRCode="scanQRCode",e.startCamera="startCamera"}(l=e.CameraBridge||(e.CameraBridge={}))}(t.InternalConstants||(t.InternalConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s,o,a,c,l;!function(e){e.reject="reject",e.resolve="resolve",e.callbackId="callbackId",e.prefName="prefName",e.key="key",e.defaultValue="defaultValue",e.value="value",e.min="min",e.max="max"}(t=e.General||(e.General={})),function(e){e.androidBridgeName="PreferencesBridge",e.getItem="getItem",e.setItem="setItem",e.removeItem="removeItem",e.removeItemAndroid="removeKey"}(n=e.Preferences||(e.Preferences={})),function(e){e.supportedVersion="getSupportedWebSDKVersion",e.androidBridgeName="MetadataBridge"}(r=e.Metadata||(e.Metadata={})),function(e){e.androidBridgeName="LocationBridge",e.startUpdatingLocation="startUpdatingLocation",e.stopUpdatingLocation="stopUpdatingLocation",e.getCurrentLocation="getCurrentLocation",e.locationSuccessEventKey="locationUpdated",e.locationFailureEventKey="failedToUpdateLocation",e.forceNewLocation="forceNew",e.getAddress="getAddress"}(i=e.Location||(e.Location={})),function(e){e.androidBridgeName="NavigationBridge",e.processRequest="processRequest",e.navigateToPath="navigateToPath",e.navigateToPathForResult="navigateToPathForResult",e.navigateToGenericPaymentForResult="navigateToGenericPaymentForResult",e.navigateToGenericPayment="navigateToGenericPayment"}(s=e.Navigation||(e.Navigation={})),function(e){e.navigateToPaymentsView="openPaymentsPage",e.navigateToTransactionDetail="openTransactionDetailsPage",e.navigateToGenericPaymentsView="openGenericPaymentsPage",e.navigateToHelpPage="openHelpPage",e.navigateToReactView="openReactView"}(o=e.NavigationIOS||(e.NavigationIOS={})),function(e){e.merchantId="merchantId",e.discoveryMode="mode",e.discoveryModeValue="PEER_TO_MERCHANT",e.title="Pay",e.transactionType="SENT_PAYMENT",e.timeoutTitle="Payment Expired",e.timeoutMessage="Sorry! Your payment request timed out. Please try again.",e.timeoutActionButtonTitle="OK",e.dismissTitle="Are you sure?",e.dismissMessage="Going back will cancel the payment. Are you sure you want to proceed?",e.dismissPositiveButtonTitle="I'm sure",e.dismissNegativeButtonTitle="Dismiss"}(a=e.Payments||(e.Payments={})),function(e){e.getUserDetails="getUserDetails",e.androidBridgeName="UserBridge",e.attributes="attributes"}(c=e.User||(e.User={})),function(e){e.androidBridgeName="CameraBridge",e.scanQRCode="scanQRCode",e.startCamera="startCamera"}(l=e.Camera||(e.Camera={}))}(t.PhonePeSDKWebConstants||(t.PhonePeSDKWebConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(0),i=n(2);var s=r.ExternalConstants.Permission;class o{static assert(e,t){if(!e)throw new Error(t)}static assertString(e,t){o.assertType(e,"string",t)}static assertNumber(e,t){o.assertType(e,"number",t)}static assertBoolean(e,t){o.assertType(e,"boolean",t)}static assertFunction(e,t){o.assertType(e,"function",t)}static assertArray(e,t){if((!t||e)&&e.constructor!==Array)throw new TypeError(i.InternalConstants.ErrorCode.invalidParams)}static assertObject(e,t){o.assertType(e,"object",t)}static assertType(e,t,n){if((!n||e)&&typeof e!==t)throw new TypeError(i.InternalConstants.ErrorCode.invalidParams)}static returnResolution(e){return new Promise((t,n)=>{t(e)})}static returnRejection(e){return new Promise((t,n)=>{n(e)})}static isValidSpecies(e){return e===r.ExternalConstants.Species.web||e===r.ExternalConstants.Species.native}static isValidOS(e){return e===r.ExternalConstants.OS.ios||e===r.ExternalConstants.OS.android}static createuuid(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=16*Math.random()|0;return("x"==e?t:3&t|8).toString(16)})}static osSpecificPermissionNames(e,t){let n=[];for(let o of e)if(t===r.ExternalConstants.OS.ios)n.push(s[o]);else{let e="";e=o===s.LOCATION?i.InternalConstants.PermissionsBridge.androidPrefix+i.InternalConstants.PermissionsBridge.locationPermissionName:i.InternalConstants.PermissionsBridge.androidPrefix+s[o],n.push(e)}return n}static strippedPermissionName(e,t){if(t===r.ExternalConstants.OS.ios)return e;let n=i.InternalConstants.PermissionsBridge.androidPrefix,o=e.replace(new RegExp("^"+n),"");return o===i.InternalConstants.PermissionsBridge.locationPermissionName&&(o=s.LOCATION),o}static isValidMethodOniOS(e){let t=window.webkit;return t&&t.messageHandlers&&t.messageHandlers[e]&&"function"==typeof t.messageHandlers[e].postMessage}static getReserveOrderPayload(e,t){const n={};return n["X-PROVIDER-ID"]=t,{headers:n,body:e}}}t.PhonePeUtils=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(9);class i{static isLoggingEnabled(){return r.PhonePe.loggingEnabled}static logd(e,t){i.isLoggingEnabled()&&console.log("["+e+"] "+t)}constructor(e){this.tag=e}logd(e){i.logd(this.tag,e)}logAnything(e){console.log(e)}logError(e){0}}t.Logger=i},function(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.WebView="WebView",e.ReactView="ReactView",e.PaymentsView="PaymentView",e.GenericPaymentsView="GenericPaymentsView",e.AppScreen="AppScreen",e.ContactPicker="ContactPicker",e.TransactionDetail="TransactionDetail",e.Profile="Profile",e.HelpPage="HelpPage",e.MandateSetup="MandateSetup",e.AddToWallet="AddToWallet",e.MicroApp="MicroApp",e.PWAWebView="PWAWebView"}(r=t.NavigationScreenType||(t.NavigationScreenType={}));class i{constructor(e,t,n,r){this.screenType=e,this.title=t,this.animated=n,this.showModally=r,this.isNewTask=!1}}t.BaseNavigationRequest=i;t.ReactViewNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d,u,h,g){super(r.ReactView,i,s,o),this.appId=h,this.bundleName=e,this.componentName=t,this.shouldShowToolbar=n,this.toolBarText=i,this.animated=s,this.showModally=o,this.initialProperties=a,this.category=c,this.merchantId=l,this.merchantName=d,this.tAndCUrl=u,this.appUniqueId=g}};t.WebViewNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l){super(r.WebView,t,c,l),this.url=e,this.title=t,this.shouldShowToolBar=n,this.shouldShowBackButton=i,this.screenName=s,this.shouldAllowWebViewBack=o,this.shouldShowProgressWhileLoading=a}};t.PWAWebViewNavigationRequest=class extends i{constructor(e,t,n,i){super(r.PWAWebView,"",!0,!0),this.merchantId=e,this.deepLinkUrl=t,this.appId=n,this.appUniqueId=i}};t.AppScreenNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.AppScreen,i,s,o),this.screenName=e,this.url=t,this.params=n}};t.PaymentMetaData=class{constructor(e){this.details=e}};t.PaymentNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d){super(r.PaymentsView,t,n,i),this.mode=s,this.microPayRequest=o,this.internalPaymentUiConfig=a,this.transactionType=c,this.metaData=l,this.originInfo=d}};t.GenericPaymentNavigationRequest=class extends i{constructor(e,t,n,i,s){super(r.GenericPaymentsView,e,t,n),this.reservationId=i,s&&(this.fallbackUrl=s)}};t.MandateSetupNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.MandateSetup,n,i,s),this.mandateContext=e,this.mandateUiConfig=t,this.mandateType=o||"MERCHANT"}};t.AddToWalletNavigationRequest=class extends i{constructor(e,t,n,i){super(r.AddToWallet,t,n,i),this.addToWalletUiContext=e}};t.TransactionDetailsNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a){super(r.TransactionDetail,t,n,i),this.transactionId=s,this.transactionType=o,this.info=a}};t.ContactNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d,u,h,g,P){super(r.ContactPicker,t,n,i),this.contactPickerMode=s,this.contactPickerType=o,this.initialContacts=a,this.transactionType=c,this.isVpaEnable=l,this.isSelfEnable=d,this.phoneContact=u,this.vpaContact=h,this.accountContact=g}};t.ProfileNavRequest=class extends i{constructor(e,t,n,r){super(e,t,n,r)}};t.HelpPageNavRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l){super(r.HelpPage,t,n,i),this.transactionId=e,this.screen=a,this.url=c,this.shouldShowToolBar=s,this.shouldAllowWebViewBack=o,this.freshBotIntentData=l}};t.FreshBotIntentData=class{constructor(e){this.freshBotScreens=e,this.queryParams={}}};t.CloseAppNavRequest=class{constructor(e){this.appIdentifier=e}};t.MicroAppNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.MicroApp,i,s,o),this.appId=e,this.appUniqueId=t,this.initialProperties=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(11).ExternalPaymentModels.ActionButtonProp;!function(e){let t,n,i,s,o;!function(e){e.discoveryModeValue="PEER_TO_MERCHANT",e.title="Pay",e.transactionType="SENT_PAYMENT",e.timeoutTitle="Payment Expired",e.timeoutMessage="Sorry! Your payment request timed out. Please try again.",e.timeoutActionButtonTitle="OK",e.dismissTitle="Are you sure?",e.dismissMessage="Going back will cancel the payment. Are you sure you want to proceed?",e.dismissPositiveButtonTitle="I'm sure",e.dismissNegativeButtonTitle="Dismiss",e.PAYMENT_TIMEOUT="PAYMENT_TIMEOUT",e.PAYMENT_DISMISS="PAYMENT_DISMISS",e.kMerchantId="merchantId",e.kSellingPrice="sellingPrice",e.kPayableAmount="payableAmount",e.kServiceType="serviceType",e.kServiceTypeValue="WEBAPP",e.kReservationId="reservationId",e.kServiceRequestId="serviceRequestId",e.kServiceCategory="serviceCategory",e.kServiceCategoryValue="WEB",e.kServiceContext="serviceContext",e.kQuantity="quantity",e.kValidFor="validFor",e.kMerchantTransactionId="merchantTransactionId",e.kServiceTypeVersion="serviceTypeVersion",e.kKey="key",e.kValue="value"}(t=e.Constant||(e.Constant={})),function(e){e[e.CONTACT_TYPE_VPA=1]="CONTACT_TYPE_VPA",e[e.CONTACT_TYPE_PHONE=2]="CONTACT_TYPE_PHONE",e[e.CONTACT_TYPE_MERCHANT=3]="CONTACT_TYPE_MERCHANT",e[e.CONTACT_TYPE_USER_DATA=4]="CONTACT_TYPE_USER_DATA",e[e.CONTACT_TYPE_EXTERNAL_UPI_MERCHANT=5]="CONTACT_TYPE_EXTERNAL_UPI_MERCHANT",e[e.CONTACT_TYPE_RETAIL_MERCHANT=6]="CONTACT_TYPE_RETAIL_MERCHANT",e[e.CONTACT_TYPE_BANK_ACCOUNT=7]="CONTACT_TYPE_BANK_ACCOUNT",e[e.CONTACT_TYPE_WALLET=8]="CONTACT_TYPE_WALLET",e[e.CONTACT_TYPE_MY_ACCOUNT=9]="CONTACT_TYPE_MY_ACCOUNT"}(n=e.CONTACT_TYPE||(e.CONTACT_TYPE={})),function(e){e[e.MODE_SEND_MONEY=1]="MODE_SEND_MONEY",e[e.MODE_SPLIT_MONEY=2]="MODE_SPLIT_MONEY",e[e.REQUEST_MONEY=3]="REQUEST_MONEY",e[e.MODE_RECHARGE_MOBILE=4]="MODE_RECHARGE_MOBILE",e[e.MODE_WALLET_TOP_UP=5]="MODE_WALLET_TOP_UP",e[e.MODE_BLE_PAYMENT=6]="MODE_BLE_PAYMENT"}(i=e.PAYMENT_MODE||(e.PAYMENT_MODE={})),function(e){e.SENT_PAYMENT="SENT_PAYMENT",e.RECEIVED_PAYMENT="RECEIVED_PAYMENT",e.USER_TO_USER_SENT_REQUEST="USER_TO_USER_SENT_REQUEST",e.USER_TO_USER_RECEIVED_REQUEST="USER_TO_USER_RECEIVED_REQUEST",e.ENSEMBLE_SENT_PAYMENT="ENSEMBLE_SENT_PAYMENT",e.MISSED_PAYMENT="MISSED_PAYMENT",e.PHONE_RECHARGE="PHONE_RECHARGE",e.BILL_PAYMENT="BILL_PAYMENT",e.TICKETING="TICKETING",e.COMMUTE="COMMUTE",e.UNKNOWN="UNKNOWN"}(s=e.TRANSACTION_TYPE||(e.TRANSACTION_TYPE={})),function(e){e.MERCHANT_REVERSAL="MERCHANT_REVERSAL",e.MERCHANT_CASHBACK="MERCHANT_CASHBACK"}(o=e.TRANSFER_MODE||(e.TRANSFER_MODE={}));e.Contact=class{constructor(e,t,n,r){this.type=e,this.name=t,this.displayImageUrl=n,this.lookupId=r}};e.InternalPaymentUiConfig=class{constructor(e,t,n,i,s,o){if(this.isAmountEditable=!1,this.isInitialContactEditable=!1,this.isNoteEditable=!1,this.showRateMeDialog=!1,this.title=e,this.initialAmount=t,this.initialContactList=n,this.confirmationScreenDuration=i,s)this.confirmationActionButtonProperties=s;else{let e={PENDING:new r("DONE"),COMPLETED:new r("VIEW BOOKING"),ERRORED:new r("DONE"),DEFAULT:new r("DONE")};this.confirmationActionButtonProperties=e}this.shouldConfirmationCloseOnFailure=o||!1}};class a{constructor(e){this.allowedInstruments=e,this.supportedInstruments=e}}e.PayRequest=a;e.MicroPayRequest=class extends a{constructor(e,t,n,r,i,s){super(t),this.merchantId=e,this.serviceVersion=n,this.fallbackURL=r,this.paymentOptionsContext=i,this.serviceRequestId=s}};e.PaymentTimeOutModel=class{constructor(e,t,n,r,i,s){this.time=e,this.showDialog=t,this.title=n,this.message=r,this.actionButtonName=i,this.errorCode=s}};e.DismissBehaviourModel=class{constructor(e,t,n,r,i,s){this.showDialog=e,this.title=t,this.message=n,this.positiveButton=r,this.negativeButton=i,this.errorCode=s}};e.TopUpConsentContext=class{constructor(e,t,n){this.showDialog=e,this.title=t,this.message=n}};e.AddToWalletUiContext=class{constructor(e,t,n,r,i,s,o,a,c,l,d,u){this.walletPageTitle=e,this.suggestedAmount=t,this.showCloseWalletOption=n,this.hideWalletWithdrawal=r,this.minAmount=i,this.showRateMeDialog=s,this.isAmountEditable=o,this.confirmationScreenDuration=a,this.showTopupConsent=c,this.topUpConsentContext=l,this.paymentDismiss=d,this.paymentOptionsContext=u}};e.MandateConfig=class{constructor(e,t,n,r,i,s){this.type=e,this.merchantId=t,this.serviceProviderIds=n,this.serviceType=r,this.serviceCategory=i,this.entityType=s}};e.MandateVisibleProperties=class{constructor(e,t,n,r,i){this.amount=e,this.frequency=t,this.autoPayDay=n,this.payeeWidget=r,this.toolbar=i}};e.MandateUiConfig=class{constructor(e,t,n,r,i,s,o,a,c,l,d,u,h,g,P){this.visibilityProperty=e,this.analyticsInfo=t,this.successMessage=n,this.actionButtonText=r,this.title=i,this.merchantName=s,this.merchantMandateDescription=o,this.merchantBannerImageId=a,this.merchantBannerImageSection=c,this.merchantImageId=l,this.merchantImageSection=d,this.mandateInfoLink=u,this.confirmationScreenDuration=h,this.dismissButtonDisplayTimeout=g,this.contactId=P}};e.PaymentOptionsContext=class{constructor(e){this.type="FULFILL_SERVICE",this.metaData=e}};e.PaymentOptionsContextMetadata=class{constructor(e,t,n,r){this.merchantId=e,this.serviceCategory=t,this.serviceProviderId=n,this.serviceType=r}}}(t.ExternalPaymentsNamespace||(t.ExternalPaymentsNamespace={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5);class i{static addSubscription(e){let t=this.eventNameToSubscriptionMapping[e.eventName];t?t.push(e):(t=[]).push(e),this.eventNameToSubscriptionMapping[e.eventName]=t}static removeSubscription(e){let t=e.eventName,n=e.callbackName,r=this.eventNameToSubscriptionMapping[t];if(r){let e=[],t=0;for(let i of r)i.callbackName===n&&(e.push(t),t++);for(;e.length;){let t=e.pop();t&&r.splice(t,1)}}}static removeAllSubscriptions(e){this.eventNameToSubscriptionMapping.hasOwnProperty(e)&&delete this.eventNameToSubscriptionMapping[e]}static sendEvent(e,t){let n=this.eventNameToSubscriptionMapping[e];if(n)for(let e of n)e.listener(t);else r.Logger.logd("PhonePe","[Error] No subscribers for eventName = "+e)}}i.eventNameToSubscriptionMapping={},t.EventHandler=i},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(6),s=n(12),o=n(14),a=n(16),c=n(10),l=n(4),d=n(18),u=n(22),h=n(25),g=n(30),P=n(32),p=n(34),m=n(36),v=n(1),f=n(8),y=n(2),N=n(0),T=n(3),C=n(7),E=n(11),b=n(38),S=n(40),M=n(42);var _=N.ExternalConstants.Permission;t.MessagingHandler=v.MessagingHandler,t.EventHandler=f.EventHandler,t.Constants=N.ExternalConstants,t.PaymentModels=E.ExternalPaymentModels;class A{constructor(e,t){this.preferencesModule=g.NativePreferenceBridgeFactory.getNativePreferenceBridge(e,t),this.locationModule=u.LocationBridgeFactory.getNativeLocationBridge(e,t),this.navigationModule=h.NativeNavigationFactory.repository(e,t),this.cameraBridge=S.NativeCameraBridgeFactory.getNativeCameraBridge(e),this.permissionsBridge=a.NativePermissionsBridgeFactory.getPermissionsBridge(e,t),this.analyticsBridge=o.NativeAnalyticsBridgeFactory.getNativeAnalyticsBridge(e,t),this.authBridge=s.NativeOAuthBridgeFactory.bridge(e),this.deviceInfoBridge=P.NativeDeviceInfoBridgeFactory.bridge(e),this.bleManagerBridge=b.default.getBleManagerBridge(e),this.orderActionBridge=p.NativeOrderActionBridgeFactory.bridge(e),this.filePickerBridge=m.NativeFilePickerBridgeFactory.bridge(e),this.species=e}static build(e,t){return r(this,void 0,void 0,function*(){let n=t;if(n||(n=this.getOperatingSystem(e)),!n)throw new Error(y.InternalConstants.ErrorCode.invalidParams);if(!l.PhonePeUtils.isValidSpecies(e)||!l.PhonePeUtils.isValidOS(n))throw new Error(y.InternalConstants.ErrorCode.invalidParams);let r=new A(e,n);return e===N.ExternalConstants.Species.web&&(yield c.MethodVersioningHandler.initSupportedVersionFromNative()),r})}static getOperatingSystem(e){if(e===N.ExternalConstants.Species.web){if(-1!==navigator.userAgent.search(N.ExternalConstants.OSUserAgent.android))return N.ExternalConstants.OS.android;if(-1!==navigator.userAgent.search(N.ExternalConstants.OSUserAgent.ios))return N.ExternalConstants.OS.ios;let e=T.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView;return l.PhonePeUtils.isValidMethodOniOS(e)?N.ExternalConstants.OS.ios:N.ExternalConstants.OS.android}return N.ExternalConstants.OS.android}getItem(e,t,n){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertString(n,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.getString(e,t,n)}setItem(e,t,n){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertString(n)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.saveString(e,t,n),l.PhonePeUtils.returnResolution(void 0)}removeItem(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.removeItem(e,t),l.PhonePeUtils.returnResolution(void 0)}startUpdatingLocation(){this.locationModule.startUpdatingLocation()}stopUpdatingLocation(){this.locationModule.stopUpdatingLocation()}getCurrentLocation(){return this.locationModule.getCurrentLocation(!0)}registerLocationUpdateSuccessCallback(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertFunction(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=this.locationModule.onLocationUpdateSuccess(e,t);return l.PhonePeUtils.returnResolution(n)}registerLocationUpdateFailureCallback(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertFunction(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=this.locationModule.onLocationUpdateFailure(e,t);return l.PhonePeUtils.returnResolution(n)}openPaymentsPage(e,t,n,r,i,s){return this.makeCommonPaymentsPageCall(y.InternalConstants.General.v1,e,t,n,r,i,s)}openTransactionDetailsPage(e){try{l.PhonePeUtils.assertString(e)}catch(e){return l.PhonePeUtils.returnRejection(e)}let t=d.ExternalNavigationFactory.transactionDetailRequest(e);return this.navigationModule.processNavigationRequestForResultAsync(t)}seekPermission(e){try{l.PhonePeUtils.assertArray(e);for(let t of e)l.PhonePeUtils.assertString(t),l.PhonePeUtils.assert(void 0!==_[t],y.InternalConstants.ErrorCode.invalidParams)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.permissionsBridge.seekPermission(e)}openSettingsPageForPermission(){return this.permissionsBridge.openSettingsPageForPermission()}scanQRCode(e,t=".*"){return this.cameraBridge.scanQRCode(e,t)}startCamera(){return this.cameraBridge.startCamera()}loadFont(e,t,n){if(this.species===N.ExternalConstants.Species.web)return l.PhonePeUtils.returnRejection(y.InternalConstants.ErrorCode.invalidParams);throw new Error("Wrong species sent")}logMerchantEvent(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertObject(t,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.analyticsBridge.logMerchantEvent(e,t)}fetchGrantToken(){return this.authBridge.fetchGrantToken()}fetchAuthToken(){return this.authBridge.fetchAuthToken()}createServiceRequestToken(){return this.orderActionBridge.createServiceRequestToken()}getDeviceInfo(){return this.deviceInfoBridge.getDeviceInfo()}bluetoothRead(e,t,n){return this.bleManagerBridge.read(e,t,n)}bluetoothReadRSSI(e){return this.bleManagerBridge.readRSSI(e)}bluetoothRefreshCache(e){return this.bleManagerBridge.refreshCache(e)}bluetoothRetrieveServices(e,t){return this.bleManagerBridge.retrieveServices(e,t)}bluetoothWrite(e,t,n,r,i=20){return this.bleManagerBridge.write(e,t,n,r,i)}bluetoothWriteWithoutResponse(e,t,n,r,i=20,s=10){return this.bleManagerBridge.writeWithoutResponse(e,t,n,r,i,s)}bluetoothConnect(e){return this.bleManagerBridge.connect(e)}bluetoothCreateBond(e){return this.bleManagerBridge.createBond(e)}bluetoothRemoveBond(e){return this.bleManagerBridge.removeBond(e)}bluetoothDisconnect(e){return this.bleManagerBridge.disconnect(e)}bluetoothStartNotification(e,t,n){return this.bleManagerBridge.startNotification(e,t,n)}bluetoothStopNotification(e,t,n){return this.bleManagerBridge.stopNotification(e,t,n)}bluetoothCheckState(){this.bleManagerBridge.checkState()}bluetoothStart(e){return this.bleManagerBridge.start(e)}bluetoothScan(e,t,n=!1,r={}){return this.bleManagerBridge.scan(e,t,n,r)}bluetoothStopScan(){return this.bleManagerBridge.stopScan()}bluetoothEnableBluetooth(){return this.bleManagerBridge.enableBluetooth()}bluetoothGetConnectedPeripherals(e){return this.bleManagerBridge.getConnectedPeripherals(e)}bluetoothGetBondedPeripherals(){return this.bleManagerBridge.getBondedPeripherals()}bluetoothGetDiscoveredPeripherals(){return this.bleManagerBridge.getDiscoveredPeripherals()}bluetoothRemovePeripheral(e){return this.bleManagerBridge.removePeripheral(e)}bluetoothIsPeripheralConnected(e,t){return this.bleManagerBridge.isPeripheralConnected(e,t)}bluetoothRequestConnectionPriority(e,t){return this.bleManagerBridge.requestConnectionPriority(e,t)}bluetoothRequestMTU(e,t){return this.bleManagerBridge.requestMTU(e,t)}reserveOrder(e,t){let n;try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),n=JSON.parse(M.Base64Client.decode(e)),l.PhonePeUtils.assertObject(n)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.orderActionBridge.reserveOrder(l.PhonePeUtils.getReserveOrderPayload(n,t))}proceedToPay(e,t){try{this.logMerchantEvent("CATEGORY_PAYMENT_INIT",{}),l.PhonePeUtils.assertString(e),A.getOperatingSystem(this.species)===N.ExternalConstants.OS.ios&&l.PhonePeUtils.assertString(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=t?encodeURIComponent(t):"";const r=d.ExternalNavigationFactory.genericPaymentNavigationRequest(e,n);return this.navigationModule.processNavigationRequestForResultAsync(r)}openPaymentsPageForReservedOrder(e,t,n,r,i,s){const o=JSON.parse(M.Base64Client.decode(t));return this.makeCommonPaymentsPageCall(y.InternalConstants.General.v2,e,o,n,r,i,s)}makeCommonPaymentsPageCall(e,t,n,r,i,s,o){try{l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertObject(n),this.species===N.ExternalConstants.Species.web&&l.PhonePeUtils.assertString(r,!0),l.PhonePeUtils.assertString(i,!0),l.PhonePeUtils.assertArray(s,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}let a=n[C.ExternalPaymentsNamespace.Constant.kPayableAmount],c={};a&&(c={amount:a}),this.logMerchantEvent("CATEGORY_PAYMENT_INIT",c);let u=d.ExternalNavigationFactory.paymentNavigationRequest(t,n,e,r,i,s,o);return new Promise((e,t)=>{this.navigationModule.processNavigationRequestForResultAsync(u).then(t=>{let r={},i=C.ExternalPaymentsNamespace.Constant.kMerchantTransactionId,s=n[i];s&&(r[i]=s),e(r)}).catch(e=>{t(e)})})}selectFile(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertBoolean(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.filePickerBridge.selectFile(e,t)}readFile(e,t,n){try{if(l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertNumber(t),l.PhonePeUtils.assertNumber(n),t<0||n<0)throw new TypeError(y.InternalConstants.ErrorCode.invalidParams)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.filePickerBridge.readFile(e,t,n)}closeApp(){let e=new i.CloseAppNavRequest("");this.navigationModule.closeAppRequest(e)}openMicroApp(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertObject(t,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=new i.MicroAppNavigationRequest("",e,t,"",!0,!1);return this.navigationModule.processNavigationRequestAsync(n)}isMethodSupported(e){return c.MethodVersioningHandler.isMethodSupported(e)}}A.loggingEnabled=!1,t.PhonePe=A},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(5),s=n(1),o=n(3),a=n(2);class c{static initSupportedVersionFromNative(){return r(this,void 0,void 0,function*(){yield this.fetchNativeSupportedSDKVersion().then(e=>{i.Logger.logd("PhonePe","Version received from native side = "+e),c.version=Number(e)}).catch(e=>{throw i.Logger.logd("PhonePe","Error found when trying to fetch version = "+e),Error("Something is really wrong here! We should be able to fetch version always. Are you sure you are testing it inside the PhonePe app?")}),this.populateMethodToVersionMapping()})}static isMethodSupported(e){if(e===o.PhonePeSDKWebConstants.Metadata.supportedVersion)return!0;if(!c.version)throw i.Logger.logd("PhonePe","[Error] Can't call isMethodSupported before native has returned the version"),Error("Can't call isMethodSupported before native has returned the version");let t=c.methodToVersionMapping[e];if(!t)throw i.Logger.logd("PhonePe","[Error] Could not find this method in mapping. This should never happen!"),Error("Could not find this method in mapping. This should never happen!");{let e=t[o.PhonePeSDKWebConstants.General.min],n=t[o.PhonePeSDKWebConstants.General.max],r=c.version;if(i.Logger.logd("PhonePe","Comparing minVersion = "+e+" maxVersion = "+n+" nativeSDKSupportVersion = "+r),r<e)return!1;if(-1!==n&&r>n)return!1}return!0}static fetchNativeSupportedSDKVersion(){return i.Logger.logd("PhonePe","Trying to call supportedVersion method in fetchNativeSupportedSDKVersion"),s.MessagingHandler.storePromiseAndCallNative(o.PhonePeSDKWebConstants.Metadata.supportedVersion,o.PhonePeSDKWebConstants.Metadata.androidBridgeName,{})}static populateMethodToVersionMapping(){let e={min:1,max:-1};this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.getItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.setItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.removeItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.removeItemAndroid]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.startUpdatingLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.stopUpdatingLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.getCurrentLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToPath]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToPathForResult]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToHelpPage]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToTransactionDetail]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.User.getUserDetails]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Metadata.supportedVersion]=e,this.methodToVersionMapping[a.InternalConstants.PermissionsBridge.openSettingsPage]=e,this.methodToVersionMapping[a.InternalConstants.PermissionsBridge.seekPermission]=e,this.methodToVersionMapping[a.InternalConstants.AnalyticsBridge.methodName]=e,this.methodToVersionMapping[a.InternalConstants.AuthBridge.fetchGrantToken]=e,this.methodToVersionMapping[a.InternalConstants.CameraBridge.scanQRCode]=e,this.methodToVersionMapping[a.InternalConstants.CameraBridge.startCamera]=e,this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.reserveOrder]=Object.assign({},e,{min:3}),this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.openPaymentsPageForReservedOrder]=Object.assign({},e,{min:3}),this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.fetchOrderRequestToken]=Object.assign({},e,{min:6}),this.methodToVersionMapping[a.InternalConstants.FilePickerBridge.readFile]=Object.assign({},e,{min:4}),this.methodToVersionMapping[a.InternalConstants.FilePickerBridge.selectFile]=Object.assign({},e,{min:4}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToGenericPaymentsView]=Object.assign({},e,{min:5}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToGenericPayment]=Object.assign({},e,{min:5}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToGenericPaymentForResult]=Object.assign({},e,{min:5}),this.methodToVersionMapping[a.InternalConstants.AuthBridge.fetchAuthToken]=Object.assign({},e,{min:5})}}c.methodToVersionMapping={},t.MethodVersioningHandler=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t;!function(e){e.PENDING="PENDING",e.COMPLETED="COMPLETED",e.ERRORED="ERRORED",e.DEFAULT="DEFAULT"}(t=e.TransactionState||(e.TransactionState={}));e.ActionButtonProp=class{constructor(e,t){this.name=e,this.shouldHide=t}}}(t.ExternalPaymentModels||(t.ExternalPaymentModels={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(13),i=n(0);t.NativeOAuthBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeOAuthBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.AuthBridge;t.WebNativeOAuthBridge=class{fetchGrantToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchGrantToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}fetchAuthToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchAuthToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(15),i=n(0);t.NativeAnalyticsBridgeFactory=class{static getNativeAnalyticsBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebNativeAnalyticsBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2);var s=i.InternalConstants.AnalyticsBridge;t.WebNativeAnalyticsBridge=class{logMerchantEvent(e,t){return r.MessagingHandler.storePromiseAndCallNative(s.methodName,s.bridgeName,this.objectForAnalytics(e,t))}objectForAnalytics(e,t){let n={};return n[i.InternalConstants.AnalyticsBridge.kName]=e,t&&(n[i.InternalConstants.AnalyticsBridge.kMetadata]=t),n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(17),i=n(0);t.NativePermissionsBridgeFactory=class{static getPermissionsBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebPermissionsBridge(t);throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5),i=n(4),s=n(1);var o=n(2).InternalConstants.PermissionsBridge;t.WebPermissionsBridge=class{constructor(e){this.operatingSystem=e}seekPermission(e){let t=i.PhonePeUtils.osSpecificPermissionNames(e,this.operatingSystem);return new Promise((e,n)=>{s.MessagingHandler.storePromiseAndCallNative(o.seekPermission,o.name,{permissions:t}).then(t=>{if(r.Logger.logd("PhonePe","Unstripped response = "+JSON.stringify(t)),"string"==typeof t){let n=JSON.parse(t);n.forEach(e=>{let t=i.PhonePeUtils.strippedPermissionName(e[o.kPermission],this.operatingSystem);e[o.kPermission]=t}),r.Logger.logd("PhonePe","Stripped response = "+JSON.stringify(n)),e(n)}else n("Wrong response sent by PhonePe")}).catch(e=>{n(e)})})}openSettingsPageForPermission(){return s.MessagingHandler.storePromiseAndCallNative(o.openSettingsPage,o.name,{})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(19),i=n(20),s=n(6),o=n(7),a=n(21);var c=o.ExternalPaymentsNamespace.Constant;t.ExternalNavigationFactory=class{static genericPaymentNavigationRequest(e,t){return new s.GenericPaymentNavigationRequest("Pay",!0,!1,e,t)}static paymentNavigationRequest(e,t,n,l,d,u,h){let g=t[o.ExternalPaymentsNamespace.Constant.kPayableAmount],P=t[o.ExternalPaymentsNamespace.Constant.kValidFor];P&&(P*=1e3);let p=t[c.kMerchantId],m=i.ExternalPaymentsRequestFactory.internalPaymentUIConfig(g,e,P,d,h,p),v=i.ExternalPaymentsRequestFactory.microPayRequest(t,n,l),f=new s.PaymentMetaData([{}]);if(void 0!==u){let e=[];for(let t of u)for(let n in t)if(t.hasOwnProperty(n)){let r=n,i=t[n],s={};s[c.kKey]=r,s[c.kValue]=i,e.push(s)}f.details=e}let y=t[c.kServiceCategory];y||(y="JSSDK");let N=new r.OriginInfo(new a.AnalyticsInfo(y,y+"_NAVIGATE_TO_PAYMENTS",Math.random().toString(36).substring(7)));return new s.PaymentNavigationRequest("Pay","Pay",!0,!1,o.ExternalPaymentsNamespace.PAYMENT_MODE.MODE_SEND_MONEY,v,m,o.ExternalPaymentsNamespace.TRANSACTION_TYPE.SENT_PAYMENT,f,N)}static transactionDetailRequest(e){let t=new r.OriginInfo(new a.AnalyticsInfo("JSSDK","JSSDK_NAVIGATE_TO_TRANSACTION_DETAILS",Math.random().toString(36).substring(7)));return new s.TransactionDetailsNavigationRequest("Details","Details",!0,!1,e,o.ExternalPaymentsNamespace.TRANSACTION_TYPE.SENT_PAYMENT,t)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.OriginInfo=class{constructor(e){this.analyticsInfo=e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(7);var i=r.ExternalPaymentsNamespace.Constant,s=r.ExternalPaymentsNamespace.PaymentOptionsContext,o=r.ExternalPaymentsNamespace.PaymentOptionsContextMetadata,a=r.ExternalPaymentsNamespace.MicroPayRequest,c=r.ExternalPaymentsNamespace.PaymentTimeOutModel,l=r.ExternalPaymentsNamespace.DismissBehaviourModel,d=r.ExternalPaymentsNamespace.InternalPaymentUiConfig,u=r.ExternalPaymentsNamespace.Contact,h=r.ExternalPaymentsNamespace.CONTACT_TYPE;const g=n(2);t.ExternalPaymentsRequestFactory=class{static microPayRequest(e,t,n){let r=e[i.kServiceRequestId],c=new a(e[i.kMerchantId],191,g.InternalConstants.General.v1,n,void 0,r);c.serviceProviderId=c.merchantId;let l={};l[i.kSellingPrice]=e[i.kPayableAmount],l[i.kServiceType]=i.kServiceTypeValue,l[i.kReservationId]=e[i.kReservationId];let d={};d[i.kServiceCategory]=e[i.kServiceCategory],l[i.kServiceContext]=d,e[i.kQuantity]&&(l[i.kQuantity]=e[i.kQuantity]),l[i.kServiceTypeVersion]=e[i.kServiceTypeVersion],c.fulFillContext=JSON.stringify(l),c.discoveryContext=JSON.stringify(this.discoveryContext(c.merchantId));let u=new o(c.merchantId,e[i.kServiceCategory],c.merchantId,i.kServiceTypeValue);return c.paymentOptionsContext=JSON.stringify(new s(u)),c}static discoveryContext(e){return{merchantId:e,mode:g.InternalConstants.General.discoveryContextMode}}static internalPaymentUIConfig(e,t,n,r,i,s){let o=[new u(h.CONTACT_TYPE_MERCHANT,t,r,s)],a=g.InternalConstants.General.confirmationScreenDuration,c=new d(g.InternalConstants.General.paymentScreenName,e,o,a,i);return void 0!==n&&null!==n&&n>0&&(c.paymentTimeout=this.paymentTimeoutModel(n)),c.paymentDismiss=this.paymentDismissModel(),c}static paymentTimeoutModel(e){return new c(e,!0,i.timeoutTitle,i.timeoutMessage,i.timeoutActionButtonTitle,i.PAYMENT_TIMEOUT)}static paymentDismissModel(){return new l(!0,i.dismissTitle,i.dismissMessage,i.dismissPositiveButtonTitle,i.dismissNegativeButtonTitle,i.PAYMENT_DISMISS)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.AnalyticsInfo=class{constructor(e,t,n){this.category=e,this.action=t,this.groupingKey=n,this.startTimeStamp=(new Date).getTime(),this.lastTimeStamp=this.startTimeStamp,this.customDimens={},this.isTransactionalEvent=!1,this.value=0,this.isFirstTime=!0}setValue(e){this.value=e}setTransactionalEvent(e){this.isTransactionalEvent=!0,this.value=e}setCustomDimension(e){this.customDimens=e}setLastTimeStamp(e){this.lastTimeStamp=e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(23),i=n(0);t.LocationBridgeFactory=class{static getNativeLocationBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebLocationBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(24),i=n(3),s=n(1),o=n(8);var a=i.PhonePeSDKWebConstants.Location;t.WebLocationBridge=class{getAddress(e,t){return Promise.resolve()}startUpdatingLocation(){s.MessagingHandler.callNative(a.startUpdatingLocation,a.androidBridgeName,{})}stopUpdatingLocation(){s.MessagingHandler.callNative(a.stopUpdatingLocation,a.androidBridgeName,{}),o.EventHandler.removeAllSubscriptions(a.locationSuccessEventKey),o.EventHandler.removeAllSubscriptions(a.locationFailureEventKey)}getCurrentLocation(){let e={};return e[a.forceNewLocation]=!0,s.MessagingHandler.storePromiseAndCallNative(a.getCurrentLocation,a.androidBridgeName,e)}onLocationUpdateSuccess(e,t){let n=new r.PhonePeWebSubscription(e,a.locationSuccessEventKey,t);return o.EventHandler.addSubscription(n),n}onLocationUpdateFailure(e,t){let n=new r.PhonePeWebSubscription(e,a.locationFailureEventKey,t);return o.EventHandler.addSubscription(n),n}isLocationTurnedOn(){return Promise.resolve()}turnOnLocation(){return Promise.resolve()}setLocationPriority(e){}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(8);t.PhonePeWebSubscription=class{constructor(e,t,n){this.eventName=t,this.listener=n,this.callbackName=e}remove(){r.EventHandler.removeSubscription(this)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(26),i=n(29),s=n(0);t.NativeNavigationFactory=class{static repository(e,t){if(e===s.ExternalConstants.Species.web)return t===s.ExternalConstants.OS.ios?new i.IOSWebNavigationHandler:new r.AndroidWebNavigationHandler;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(4),s=n(1),o=n(27),a=n(6),c=n(3),l=n(2);var d=c.PhonePeSDKWebConstants.Navigation,u=l.InternalConstants.ActivityID;class h{processNavigationRequestAsync(e,t){return r(this,void 0,void 0,function*(){if(e.screenType===a.NavigationScreenType.PaymentsView){let n=e;return this.navigateToPayment(n,e.isNewTask,t)}if(e.screenType===a.NavigationScreenType.TransactionDetail){let n=e;return this.navigateToTransactionDetail(n,e.isNewTask,t)}if(e.screenType===a.NavigationScreenType.GenericPaymentsView){let n=e;return this.navigateToGenericPayment(n,e.isNewTask,t)}return i.PhonePeUtils.returnRejection("Unhandled request type")})}processNavigationRequestForResultAsync(e){return r(this,void 0,void 0,function*(){return this.processNavigationRequestAsync(e,!0)})}navigateToPayment(e,t,n){let r=o.NativeNavigationRequestFactory.pathFromPaymentRequest(e,t),i=this.objectForNavigation(r,u.payments,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)}navigateToTransactionDetail(e,t,n){return r(this,void 0,void 0,function*(){let r=o.NativeNavigationRequestFactory.pathFromTransactionDetailsRequest(e,t),i=this.objectForNavigation(r,u.transactionDetails,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)})}navigateToGenericPayment(e,t,n){let r=o.NativeNavigationRequestFactory.pathFromGenericPaymentRequest(e,t),i=this.objectForNavigation(r,u.payments,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)}objectForNavigation(e,t,n){let r={};return r[h.pathKey]=JSON.stringify(e),r[h.activityIdKey]=t,r[h.isNewTaskKey]=n?268435456:0,r}closeAppRequest(e){}}h.pathKey="path",h.activityIdKey="activityId",h.isNewTaskKey="isNewTask",t.AndroidWebNavigationHandler=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(28);t.NativeNavigationRequestFactory=class{static pathFromPaymentRequest(e,t){let n=[],i=new r.Node("payment_activity","ACTIVITY",{}),s={};s.mode=JSON.stringify(e.mode),s.internalPaymentUiConfig=JSON.stringify(e.internalPaymentUiConfig),s.microPayRequest=JSON.stringify(e.microPayRequest),s.transactionType=JSON.stringify(e.transactionType),s.info=JSON.stringify(e.originInfo),s.metaData=JSON.stringify(e.metaData);let o=new r.Node("micro_app_payment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}static pathFromGenericPaymentRequest(e,t){let n=[],i=new r.Node("payment_activity","ACTIVITY",{}),s={};s.reservationId=e.reservationId,s.fallbackUrl=e.fallbackUrl;let o=new r.Node("micro_app_aggregator_payment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}static pathFromTransactionDetailsRequest(e,t){let n=[],i=new r.Node("transaction_details_activity","ACTIVITY",{}),s={};s.transactionId=JSON.stringify(e.transactionId),s.transactionType=JSON.stringify("TICKETING"),s.info=JSON.stringify(e.info);let o=new r.Node("transaction_details_fragment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.Node=class{constructor(e,t,n){this.name=e,this.screenType=t,this.data=n}};t.Path=class{constructor(e){this.node=e}}},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(4),s=n(6),o=n(1),a=n(3);t.IOSWebNavigationHandler=class{processNavigationRequestAsync(e,t){return r(this,void 0,void 0,function*(){if(e.screenType===s.NavigationScreenType.PaymentsView){let n=e;return this.navigateToPayment(n,e.isNewTask,t)}if(e.screenType===s.NavigationScreenType.TransactionDetail){let n=e;return this.navigateToTransactionDetail(n,e.isNewTask,t)}if(e.screenType===s.NavigationScreenType.GenericPaymentsView){let n=e;return this.navigateToGenericPayment(n,e.isNewTask,t)}return i.PhonePeUtils.returnRejection("Unhandled request type")})}processNavigationRequestForResultAsync(e){return r(this,void 0,void 0,function*(){return this.processNavigationRequestAsync(e,!0)})}navigateToPayment(e,t,n){let r=e,i=a.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView;return o.MessagingHandler.storePromiseAndCallNative(i,"",r)}navigateToTransactionDetail(e,t,n){return r(this,void 0,void 0,function*(){let t=e,n=a.PhonePeSDKWebConstants.NavigationIOS.navigateToTransactionDetail;return o.MessagingHandler.storePromiseAndCallNative(n,"",t)})}navigateToGenericPayment(e,t,n){return r(this,void 0,void 0,function*(){let t=e,n=a.PhonePeSDKWebConstants.NavigationIOS.navigateToGenericPaymentsView;return o.MessagingHandler.storePromiseAndCallNative(n,"",t)})}closeAppRequest(e){}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(31),i=n(0);t.NativePreferenceBridgeFactory=class{static getNativePreferenceBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebNativePreferenceBridge(t);throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5),i=n(1),s=n(0),o=n(3);var a=o.PhonePeSDKWebConstants.Preferences;t.WebNativePreferenceBridge=class{constructor(e){this.operatingSystem=e}getString(e,t,n){let r=this.prefObject(e,t,void 0,n);return i.MessagingHandler.storePromiseAndCallNative(a.getItem,a.androidBridgeName,r)}getNumber(e,t,n){return new Promise((e,t)=>{t("This should not be called in case of web pref bridge")})}getDecryptedUserId(){return new Promise((e,t)=>{t("This should not be called in case of web pref bridge")})}saveNumber(e,t,n){r.Logger.logd("PhonePe","[Error] his should not be called in case of web pref bridge")}saveString(e,t,n){let r=this.prefObject(e,t,n,void 0);i.MessagingHandler.callNative(a.setItem,a.androidBridgeName,r)}removeItem(e,t){let n=this.prefObject(e,t,void 0,void 0),r=a.removeItem;this.operatingSystem===s.ExternalConstants.OS.android&&(r=a.removeItemAndroid),i.MessagingHandler.callNative(r,o.PhonePeSDKWebConstants.Preferences.androidBridgeName,n)}prefObject(e,t,n,r){let i={};return e&&(i[o.PhonePeSDKWebConstants.General.prefName]=e),t&&(i[o.PhonePeSDKWebConstants.General.key]=t),r&&(i[o.PhonePeSDKWebConstants.General.defaultValue]=r),n&&(i[o.PhonePeSDKWebConstants.General.value]=n),i}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(33),i=n(0);t.NativeDeviceInfoBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeDeviceInfoBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.WebNativeDeviceInfoBridge=class{getDeviceInfo(){return Promise.resolve()}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(35),i=n(0);t.NativeOrderActionBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeOrderActionBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.OrderActionBridge;t.WebNativeOrderActionBridge=class{reserveOrder(e){return new Promise((t,n)=>{r.MessagingHandler.storePromiseAndCallNative(i.reserveOrder,i.bridgeName,e).then(e=>{t(JSON.parse(e))}).catch(e=>{n(e)})})}createServiceRequestToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchOrderRequestToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(37),i=n(0);t.NativeFilePickerBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeFilePickerBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.FilePickerBridge;t.WebNativeFilePickerBridge=class{selectFile(e,t){return new Promise((n,s)=>{r.MessagingHandler.storePromiseAndCallNative(i.selectFile,i.bridgeName,{mimeType:e,allowMultiple:t}).then(e=>{n(JSON.parse(e))}).catch(e=>{s(e)})})}readFile(e,t,n){return new Promise((s,o)=>{r.MessagingHandler.storePromiseAndCallNative(i.readFile,i.bridgeName,{uri:e,offset:t,length:n}).then(e=>{s(JSON.parse(e))}).catch(e=>{o(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(0),i=n(39);t.default=class{static getBleManagerBridge(e){if(e===r.ExternalConstants.Species.web)return new i.WebPPBleManager;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.WebPPBleManager=class{read(e,t,n){throw new Error("Wrong species sent")}readRSSI(e){throw new Error("Wrong species sent")}refreshCache(e){throw new Error("Wrong species sent")}retrieveServices(e,t){throw new Error("Wrong species sent")}write(e,t,n,r,i){throw new Error("Wrong species sent")}writeWithoutResponse(e,t,n,r,i,s){throw new Error("Wrong species sent")}connect(e){throw new Error("Wrong species sent")}createBond(e){throw new Error("Wrong species sent")}removeBond(e){throw new Error("Wrong species sent")}disconnect(e){throw new Error("Wrong species sent")}startNotification(e,t,n){throw new Error("Wrong species sent")}stopNotification(e,t,n){throw new Error("Wrong species sent")}checkState(){throw new Error("Wrong species sent")}start(e){throw new Error("Wrong species sent")}scan(e,t,n,r){throw new Error("Wrong species sent")}stopScan(){throw new Error("Wrong species sent")}enableBluetooth(){throw new Error("Wrong species sent")}getConnectedPeripherals(e){throw new Error("Wrong species sent")}getBondedPeripherals(){throw new Error("Wrong species sent")}getDiscoveredPeripherals(){throw new Error("Wrong species sent")}removePeripheral(e){throw new Error("Wrong species sent")}isPeripheralConnected(e,t){throw new Error("Wrong species sent")}requestConnectionPriority(e,t){throw new Error("Wrong species sent")}requestMTU(e,t){throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(41),i=n(0);t.NativeCameraBridgeFactory=class{static getNativeCameraBridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeCameraBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1);var i=n(3).PhonePeSDKWebConstants.Camera;t.WebNativeCameraBridge=class{scanQRCode(e,t){return new Promise((n,s)=>{r.MessagingHandler.storePromiseAndCallNative(i.scanQRCode,i.androidBridgeName,{showGallery:e,validator:t}).then(e=>{n(e)}).catch(e=>{s(e)})})}startCamera(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.startCamera,i.androidBridgeName,{}).then(t=>{e(t)}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(43);t.Base64Client=class{static encode(e){return r.Base64.encode(e)}static decode(e){return r.Base64.decode(e)}}},function(module,exports,__webpack_require__){(function(global){var __WEBPACK_AMD_DEFINE_ARRAY__,__WEBPACK_AMD_DEFINE_RESULT__;!function(global,factory){module.exports=function(global){"use strict";var _Base64=(global=global||{}).Base64,version="2.5.1",buffer;if(module.exports)try{buffer=eval("require('buffer').Buffer")}catch(e){buffer=void 0}var b64chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b64tab=function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e.charAt(n)]=n;return t}(b64chars),fromCharCode=String.fromCharCode,cb_utob=function(e){if(e.length<2){var t=e.charCodeAt(0);return t<128?e:t<2048?fromCharCode(192|t>>>6)+fromCharCode(128|63&t):fromCharCode(224|t>>>12&15)+fromCharCode(128|t>>>6&63)+fromCharCode(128|63&t)}var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return fromCharCode(240|t>>>18&7)+fromCharCode(128|t>>>12&63)+fromCharCode(128|t>>>6&63)+fromCharCode(128|63&t)},re_utob=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,utob=function(e){return e.replace(re_utob,cb_utob)},cb_encode=function(e){var t=[0,2,1][e.length%3],n=e.charCodeAt(0)<<16|(e.length>1?e.charCodeAt(1):0)<<8|(e.length>2?e.charCodeAt(2):0),r=[b64chars.charAt(n>>>18),b64chars.charAt(n>>>12&63),t>=2?"=":b64chars.charAt(n>>>6&63),t>=1?"=":b64chars.charAt(63&n)];return r.join("")},btoa=global.btoa?function(e){return global.btoa(e)}:function(e){return e.replace(/[\s\S]{1,3}/g,cb_encode)},_encode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(e){return(e.constructor===buffer.constructor?e:buffer.from(e)).toString("base64")}:function(e){return(e.constructor===buffer.constructor?e:new buffer(e)).toString("base64")}:function(e){return btoa(utob(e))},encode=function(e,t){return t?_encode(String(e)).replace(/[+\/]/g,function(e){return"+"==e?"-":"_"}).replace(/=/g,""):_encode(String(e))},encodeURI=function(e){return encode(e,!0)},re_btou=new RegExp(["[À-ß][-¿]","[à-ï][-¿]{2}","[ð-÷][-¿]{3}"].join("|"),"g"),cb_btou=function(e){switch(e.length){case 4:var t=(7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3),n=t-65536;return fromCharCode(55296+(n>>>10))+fromCharCode(56320+(1023&n));case 3:return fromCharCode((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return fromCharCode((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},btou=function(e){return e.replace(re_btou,cb_btou)},cb_decode=function(e){var t=e.length,n=t%4,r=(t>0?b64tab[e.charAt(0)]<<18:0)|(t>1?b64tab[e.charAt(1)]<<12:0)|(t>2?b64tab[e.charAt(2)]<<6:0)|(t>3?b64tab[e.charAt(3)]:0),i=[fromCharCode(r>>>16),fromCharCode(r>>>8&255),fromCharCode(255&r)];return i.length-=[0,0,2,1][n],i.join("")},_atob=global.atob?function(e){return global.atob(e)}:function(e){return e.replace(/\S{1,4}/g,cb_decode)},atob=function(e){return _atob(String(e).replace(/[^A-Za-z0-9\+\/]/g,""))},_decode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(e){return(e.constructor===buffer.constructor?e:buffer.from(e,"base64")).toString()}:function(e){return(e.constructor===buffer.constructor?e:new buffer(e,"base64")).toString()}:function(e){return btou(_atob(e))},decode=function(e){return _decode(String(e).replace(/[-_]/g,function(e){return"-"==e?"+":"/"}).replace(/[^A-Za-z0-9\+\/]/g,""))},noConflict=function(){var e=global.Base64;return global.Base64=_Base64,e};if(global.Base64={VERSION:version,atob:atob,btoa:btoa,fromBase64:decode,toBase64:encode,utob:utob,encode:encode,encodeURI:encodeURI,btou:btou,decode:decode,noConflict:noConflict,__buffer__:buffer},"function"==typeof Object.defineProperty){var noEnum=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}};global.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",noEnum(function(){return decode(this)})),Object.defineProperty(String.prototype,"toBase64",noEnum(function(e){return encode(this,e)})),Object.defineProperty(String.prototype,"toBase64URI",noEnum(function(){return encode(this,!0)}))}}global.Meteor&&(Base64=global.Base64);module.exports?module.exports.Base64=global.Base64:(__WEBPACK_AMD_DEFINE_ARRAY__=[],__WEBPACK_AMD_DEFINE_RESULT__=function(){return global.Base64}.apply(exports,__WEBPACK_AMD_DEFINE_ARRAY__),void 0===__WEBPACK_AMD_DEFINE_RESULT__||(module.exports=__WEBPACK_AMD_DEFINE_RESULT__));return{Base64:global.Base64}}(global)}("undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==global?global:this)}).call(this,__webpack_require__(44))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n}]);
</script>
<script defer="" src="https://microapps.google.com/apis/v1alpha/microapps.js">
</script>
</link>
</link>
</link>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</meta>
</link>
</meta>
</meta>
</meta>
</link>
</head>
<body>
<div id="app">
<div>
<div>
<header class="headerDivWrapper hidden-sm hidden-xs">
<div class="topBarWrapper">
<div class="topBar">
<div class="pull-left">
<a class="headerLinks" href="https://www.bewakoof.com/campaign/delights-coupons-discounts-offers-sale">
<!-- -->
Offers
</a>
<a class="headerLinks" href="https://www.bewakoof.com/fanbook-testimonial-reviews">
<!-- -->
Fanbook
</a>
<a class="headerLinks" href="https://www.bewakoof.com/campaign/apps">
<i class="icon_mobile_covers mobileIcon">
</i>
<!-- -->
Download App
</a>
<a class="headerLinks" href="https://www.bewakoof.com/tribe">
<!-- -->
TriBe Membership
</a>
</div>
<div class="pull-right">
<a class="headerLinks" href="https://www.bewakoof.com/contact-us">
<!-- -->
Contact Us
</a>
<a class="headerLinks" href="https://www.bewakoof.com/myaccount/orders">
<!-- -->
Track Order
</a>
</div>
</div>
</div>
<div class="mainHeaderWrapper">
<div class="mainHeader row">
<div class="col-xs-2 mainHeaderCols bewakoofLogoDiv">
<a href="/" style="display:inline-block;height:inherit">
<img alt="bewakoof_logo" src="https://images.bewakoof.com/web/ic-desktop-bwkf-trademark-logo.svg" style="height:20px;vertical-align:middle;margin-bottom:5px;width:147px" title="Bewakoof.com"/>
</a>
</div>
<div class="col-xs-5 dropDownWrapper">
<div class="mainHeaderCols dropDownDiv" style="text-align:left">
<span class="menuWrapper" style="color:#333">
<a class="menuSelectWrpr" href="/men-clothing" id="testMenuSelect-shop-men" style="position:relative">
<span class="menuSelect" style="cursor:pointer">
<span>
MEN
</span>
</span>
</a>
<div class="container menuDropdownWrpr">
<div class="menuContents dropdownContent">
<div class="dropDownMenu">
</div>
</div>
</div>
</span>
<span class="menuWrapper" style="color:#333">
<a class="menuSelectWrpr" href="/women-clothing" id="testMenuSelect-shop-women" style="position:relative">
<span class="menuSelect" style="cursor:pointer">
<span>
WOMEN
</span>
</span>
</a>
<div class="container menuDropdownWrpr">
<div class="menuContents dropdownContent">
<div class="dropDownMenu">
</div>
</div>
</div>
</span>
<span class="menuWrapper" style="color:#333">
<a class="menuSelectWrpr" href="/mobile-covers-india" id="testMenuSelect-mobile covers" style="position:relative">
<span class="menuSelect" style="cursor:pointer">
<span>
MOBILE COVERS
</span>
</span>
</a>
<div class="container menuDropdownWrpr">
<div class="menuContents dropdownContent">
<div class="dropDownMenu">
</div>
</div>
</div>
</span>
</div>
</div>
<div class="col-xs-5 mainHeaderCols searchMyAccount">
<div class="pull-right mainHeaderCols activemenuwrp" style="padding-right:0">
<div class="actionMenu">
<span class="actionMenu actionMenuInner" id="testHeaderCart">
<a class="cartIcon" href="/cart" style="padding-right:0;position:relative">
<i aria-hidden="true" class="icon_bag">
</i>
</a>
</span>
<span class="actionMenu" id="testHeadWish" style="padding:0 5px;cursor:pointer">
<div>
<div class="">
<i class="icon_wishlist">
</i>
</div>
</div>
</span>
<div class="actionMenu" style="display:flex;align-items:baseline;text-align:right">
<a class="loginLink" href="#" id="loginLink">
Login
</a>
</div>
</div>
</div>
<div class="pull-right mainHeaderCols searchWrapper">
<div class="icon-addon addon-sm">
<form class="searchContainer" style="position:relative;border-bottom:none">
<input autocomplete="off" class="searchInput form-controls" placeholder="Search by product, category or collection" type="text"/>
<i class="icon_search">
</i>
</form>
<div class="seperator">
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="sideNavBox">
<!-- -->
<header class="mHeaderDiv mHeaderSticky visible-sm visible-xs" id="" style="z-index:9999;background-color:">
<div class="noMg mHeader">
<div class="backToPreviousPage">
<a class="backPreviousCat">
<img alt="back" src="https://images.bewakoof.com/web/ic-web-head-primary-back.svg"/>
</a>
</div>
<input id="hambu" type="checkbox"/>
<div class="mActionMenu" style="display:block">
<span class="mBewakoofLogoDiv">
<a href="/" title="Online Lifestyle Brand - Bewakoof.com">
<img alt="bewakoof_logo" src="https://images.bewakoof.com/web/ic-web-head-bwk-primary-logo-eyes.svg" style="height:18px;margin:16px 0;width:40px"/>
</a>
</span>
</div>
<div class="iconMenuOption">
<span class="" style="width:auto">
<form class="msearchContainer" style="display:inline-block">
<label>
<img alt="search-icon" class="header-icon ml-1 ico-search" src="https://images.bewakoof.com/web/ic-web-head-search.svg"/>
</label>
</form>
</span>
<span>
<div class="">
<img alt="wish-list" class="header-icon" src="https://images.bewakoof.com/web/ic-web-head-wishlist.svg"/>
</div>
</span>
<a href="/cart">
<span>
<img alt="shopping-bag" class="header-icon" src="https://images.bewakoof.com/web/ic-web-head-cart.svg"/>
</span>
</a>
</div>
</div>
</header>
<div class="mMenuOverlay undefined">
</div>
</div>
</div>
<div class="containerHeight" style="min-height:75vh">
<div class="breadcrumbWrapper container">
<div class="breadCrumBox hidden-xs">
<ul>
<li class="anchorHover">
<a href="/">
Home
</a>
</li>
<li class="">
<a>
Bestseller
</a>
</li>
</ul>
</div>
</div>
<div class="categoryWrapper" style="margin-top:0">
<div class="categoryInnerWrapper mobileFilterBtn container padding0 visible-xs">
</div>
<div class="container">
<div class="mainHeading">
<div class="headingInner">
<h1 class="searchResults">
Bestseller
</h1>
<span class="totalProductCount">
(401)
</span>
<div>
</div>
</div>
</div>
</div>
<div class="categoryInnerWrapper padding0 container" style="max-height:100%;position:relative">
<div class="col-sm-3 padding0 filterContainer hidden-xs">
<div>
<div class="filterBoxMain">
<div class="filterHeadingDesktop">
<h4>
Filters
</h4>
</div>
<div class="filterWrap hidden-xs">
<div class="accordionWrapper">
<div class="accordionBox clearfix">
<div>
<div class="filterHeader clearfix">
<span>
Sort By
</span>
<i class="icon_bullet bulletIcon">
</i>
<i class="icon_down" style="float:right">
</i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-9 col-sm-offset-3 clearfix noPdXs">
<div class="categoryGridWrapper clearfix">
<div class="sortbyWrapper hidden-xs">
<div class="hoverMenuWrapper">
<button class="sortbyButton">
Sort By
<span>
Popular
<!-- -->
<i class="icon_down">
</i>
</span>
</button>
<div class="hoverMenu">
<div class="sortbyHeading">
<h4 class="visible-xs">
Sort by
<i class="icon_close">
</i>
</h4>
<div class="listingBox">
<ul>
<li>
<div>
<div>
<a aria-current="false" href="/bestseller?sort=popular" style="display:block;width:100%;color:#42a2a2">
Popular
</a>
</div>
</div>
</li>
<li>
<div>
<div>
<a aria-current="false" href="/bestseller?sort=new" style="display:block;width:100%;color:black">
New
</a>
</div>
</div>
</li>
<li>
<div>
<div>
<a aria-current="false" href="/bestseller?sort=high" style="display:block;width:100%;color:black">
Price : High to Low
</a>
</div>
</div>
</li>
<li>
<div>
<div>
<a aria-current="false" href="/bestseller?sort=low" style="display:block;width:100%;color:black">
Price : Low to High
</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="productGrid quickFilterProductgrid" id="productGrid">
<div>
</div>
<div class="prodCardContainer">
<div>
<a aria-current="true" class="subHeading hidden-xs active" href="/">
</a>
<span style="display:none">
0
</span>
</div>
<div class="plp-product-card" id="testProductcard_1">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/womens-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 247, 247)">
<img alt="Shop Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt-625704-1699354913-1.jpg" title="Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
PLUS SIZE
</span>
</div>
</div>
</div>
<div class="lmtd-text-cntr d-flex align-items-center cursor-p false">
<div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined">
<i class="icon_star_filled clr-p-yellow">
</i>
<span class="clr-shade-3">
4.4
</span>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof®
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
529
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1099
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
489
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
100% COTTON
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_2">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-black-oversized-cargo-trousers-11">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 248, 248)">
<img alt="Shop Men's Black Oversized Cargo Pants-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-cargo-pants-609849-1706080484-1.jpg" title="Men's Black Oversized Cargo Pants-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
OVERSIZED FIT
</span>
</div>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof®
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Black Oversized Cargo Pants
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
1199
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
2949
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
1099
</b>
For TriBe Members
</h6>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_3">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 249, 245)">
<img alt="Shop Men's Black Oversized Cargo Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-cargo-joggers-552880-1710766583-1.jpg" title="Men's Black Oversized Cargo Joggers-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
OVERSIZED FIT
</span>
</div>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof Air® 1.0
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Black Oversized Cargo Joggers
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
999
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
2199
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
919
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
LIGHTWEIGHT TERRY FABRIC
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_4">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/jet-black-casual-jogger-pants">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 249, 248)">
<img alt="Shop Men's Black Plus Size Casual Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/jet-black-plus-size-casual-jogger-pants-324701-1655751335-1.jpg" title="Men's Black Plus Size Casual Joggers-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
PLUS SIZE
</span>
</div>
</div>
</div>
<div class="lmtd-text-cntr d-flex align-items-center cursor-p false">
<div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined">
<i class="icon_star_filled clr-p-yellow">
</i>
<span class="clr-shade-3">
4.6
</span>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof®
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Black Plus Size Casual Joggers
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
829
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1299
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
759
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
SOFT TERRY COTTON
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_5">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/navy-blue-casual-jogger-pants">
<div class="productCardBox">
<div class="productCardImg false">
<div class="" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 249)">
<img alt="Shop Men's Blue Plus Size Casual Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/navy-blue-plus-size-casual-jogger-pants-324702-1655752010-1.jpg" title="Men's Blue Plus Size Casual Joggers-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
PLUS SIZE
</span>
</div>
</div>
</div>
<div class="lmtd-text-cntr d-flex align-items-center cursor-p false">
<div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined">
<i class="icon_star_filled clr-p-yellow">
</i>
<span class="clr-shade-3">
4.4
</span>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof®
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Blue Plus Size Casual Joggers
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
959
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1299
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
879
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
PREMIUM BLENDED FABRIC
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_6">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-grey-we-are-venom-graphic-printed-oversized-vest">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 248, 248)">
<img alt="Shop Men's Grey We Are Venom Graphic Printed Oversized Vest-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-grey-we-are-venom-graphic-printed-oversized-vest-602544-1716887285-1.jpg" title="Men's Grey We Are Venom Graphic Printed Oversized Vest-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
OVERSIZED FIT
</span>
</div>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
bewakoof x marvel
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Grey We Are Venom Graphic Printed Oversized Vest
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
499
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1099
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
459
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
100% COTTON
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_7">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/womens-purple-dont-care-graphic-print-oversized-t-shirt">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 245, 247)">
<img alt="Shop Women's Purple Don't Care Graphic Printed Oversized T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-purple-don-t-care-graphic-print-oversized-t-shirt-609644-1691754544-1.jpg" title="Women's Purple Don't Care Graphic Printed Oversized T-shirt-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(255, 236, 236, 0.8)">
<span class="plp" style="color:#FF2E2E">
Few Left
</span>
</div>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
bewakoof x garfield
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Women's Purple Don't Care Graphic Printed Oversized T-shirt
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
399
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1299
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
369
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
100% COTTON
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_8">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black-plain">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 249)">
<img alt="Shop Men's Black Oversized Plus Size Cargo Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-plus-size-cargo-joggers-552888-1698309586-1.jpg" title="Men's Black Oversized Plus Size Cargo Joggers-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
PLUS SIZE
</span>
</div>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof Air® 1.0
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Black Oversized Plus Size Cargo Joggers
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
1054
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
2899
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
979
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
LIGHTWEIGHT TERRY FABRIC
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_9">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/men-hug-it-out-graphic-printed-regular-t-shirt-51">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 246, 249)">
<img alt="Shop Men's Purple Hug It Out Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-purple-hug-it-out-graphic-printed-t-shirt-585798-1709214960-1.jpg" title="Men's Purple Hug It Out Graphic Printed T-shirt-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(0, 184, 82, 0.8)">
<span class="plp" style="color:#fff">
BUY 3 FOR 999
</span>
</div>
</div>
</div>
<div class="lmtd-text-cntr d-flex align-items-center cursor-p false">
<div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined">
<i class="icon_star_filled clr-p-yellow">
</i>
<span class="clr-shade-3">
4.4
</span>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
bewakoof x garfield
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Purple Hug It Out Graphic Printed T-shirt
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
449
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
1149
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
419
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
100% COTTON
</div>
</div>
</div>
</div>
</a>
</div>
<div class="plp-product-card" id="testProductcard_10">
<a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-grey-oversized-cargo-trousers-17">
<div class="productCardBox">
<div class="productCardImg false">
<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 248)">
<img alt="Shop Men's Grey Oversized Cargo Pants-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-grey-oversized-cargo-pants-609842-1707221487-1.jpg" title="Men's Grey Oversized Cargo Pants-Front Bewakoof" width="100%"/>
</div>
<div class="productStatusBox">
</div>
<div class="bottomTag">
</div>
<div class="tag-container">
<div class="d-flex tag-wrapper" style="min-height:15px">
<div class="d-flex align-items-center tag-row p-tag" style="background:rgba(82, 82, 82, 0.8)">
<span class="plp" style="color:#fff">
OVERSIZED FIT
</span>
</div>
</div>
</div>
<div class="lmtd-text-cntr d-flex align-items-center cursor-p false">
<div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined">
<i class="icon_star_filled clr-p-yellow">
</i>
<span class="clr-shade-3">
4.4
</span>
</div>
</div>
</div>
<div class="productCardDetail pdt-card-h">
<div class="d-flex">
<div class="productNaming bkf-ellipsis">
<h3 class="brand-name undefined">
Bewakoof®
</h3>
<h2 class="clr-shade4 h3-p-name undefined false">
Men's Grey Oversized Cargo Pants
</h2>
</div>
<div class="wishListProduct-v2">
<img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/>
</div>
</div>
<div class="productPriceBox d-flex align-items-end false">
<div class="discountedPriceText clr-p-black false">
<span>
₹
</span>
1399
</div>
<div class="actualPriceText clr-shade5">
₹
<!-- -->
2949
</div>
<span class="sellingFastBox">
</span>
</div>
<div class="d-flex align-items-center justify-content-between loyalty-stock-wrap">
<div class="loyaltyPriceBox" style="width:unset">
<h6>
<b>
₹
<!-- -->
1289
</b>
For TriBe Members
</h6>
</div>
</div>
<div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white">
<div class="tag_label_plp" style="color:#737373">
COMFORT STRETCH
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
<div class="container padding0 false">
</div>
<div class="container">
<div class="categoryFooterContainer d-flex">
<div class="categoryFaqAndDesc d-flex flex-column">
</div>
</div>
</div>
</div>
</div>
<div class="countryListWrapper">
</div>
<div class="footerToBottom footerForMobile" style="content-visibility:auto">
<div class="footerDiv">
<div class="container">
<div class="row noMg footerLogo">
<div class="col-xs-12 noPdSm" style="max-height:52px;line-height:52px;overflow-y:hidden">
<a href="/" style="max-height:52px;line-height:52px;overflow-y:hidden;display:inline-block" title="Online Lifestyle Brand - Bewakoof.com">
<i class="icon_bewakoof_logo bewakoofLogo" style="max-height:52px;line-height:52px;overflow-y:hidden">
</i>
</a>
<br/>
<br/>
</div>
</div>
<section class="col-xs-12 noPdSm">
<div class="col-sm-6 col-md-3 noPdSm footerMenuSec">
<span class="footerTitle">
CUSTOMER SERVICE
</span>
<ul>
<li>
<a href="https://www.bewakoof.com/contact-us">
Contact Us
</a>
</li>
<li>
<a href="https://www.bewakoof.com/myaccount/orders">
Track Order
</a>
</li>
<li>
<a href="https://www.bewakoof.com/myaccount/orders?status=returned">
Return Order
</a>
</li>
<li>
<a href="https://www.bewakoof.com/contact-us">
Cancel Order
</a>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-3 noPdSm footerMenuSec">
<span class="footerTitle">
COMPANY
</span>
<ul>
<li>
<a href="https://www.bewakoof.com/about-us/our-story">
About Us
</a>
</li>
<li>
<a href="https://www.bewakoof.com/careers">
We're Hiring
</a>
</li>
<li>
<a href="https://www.bewakoof.com/terms-and-conditions">
Terms & Conditions
</a>
</li>
<li>
<a href="https://www.bewakoof.com/privacy-policy-and-disclaimer">
Privacy Policy
</a>
</li>
<li>
<a href="https://www.bewakoof.com/blog">
Blog
</a>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-3 connectWithUs noPdSm footerMenuSec">
<span class="footerTitle">
CONNECT WITH US
</span>
<div class="col-xs-12 noPd">
<div class="socialIcoMobile">
<div class="fbInsta">
<a class="whiteText" href="https://www.facebook.com/bewakoofcom" target="_blank">
<i class="icon_facebook">
</i>
<span class="hidden-xs">
4.7M
<!-- -->
People Like this
</span>
</a>
</div>
<div class="fbInsta">
<a class="whiteText" href="https://www.instagram.com/bewakoofofficial/" target="_blank">
<i class="icon_instagram_new">
</i>
<span class="hidden-xs">
1M
<!-- -->
Followers
</span>
</a>
</div>
</div>
<div>
<a href="https://twitter.com/bewakoof" target="_blank">
<i class="icon_twitter">
</i>
</a>
<a href="https://www.pinterest.com/bewakoof/" target="_blank">
<i class="icon_pinterest">
</i>
</a>
<a href="https://www.snapchat.com/add/bewakoof_tv" target="_blank">
<i class="icon_snapchat">
</i>
</a>
<a href="https://itunes.apple.com/in/app/bewakoof/id1100190514?mt=8" target="_blank">
<i class="icon_apple">
</i>
</a>
<a href="https://play.google.com/store/apps/details?id=com.bewakoof.bewakoof&hl=en" target="_blank">
<i class="iconAndroid">
</i>
</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 noPdSm hidden-xs">
<span class="footerTitle">
KEEP UP TO DATE
</span>
<form name="subscriptionForm" role="form">
<input class="form-control subscription col-xs-7" placeholder="Enter Email Id" required="" type="email" value=""/>
<input class="subscribeButton col-xs-5" type="submit" value="SUBSCRIBE"/>
</form>
<div class="errorHolder">
</div>
</div>
</section>
<section class="col-xs-12 noPdSm paymentGatewaysFooterBar">
<br class="hidden-xs"/>
<br class="hidden-xs"/>
<div class="col-md-3 col-sm-6 noPdSm tNC hidden-xs">
<ul>
<li>
<a href="https://www.bewakoof.com/contact-us/refund-or-return">
<i class="icon_return_order">
</i>
15 Days return policy*
</a>
</li>
<li>
<a href="https://www.bewakoof.com/contact-us/order-delivery-payment">
<i class="icon_cod">
</i>
Cash on delivery*
</a>
</li>
</ul>
</div>
<div class="col-md-3 col-sm-6 noPdSm noPdXs">
<ul>
<li>
<span class="footerTitle">
DOWNLOAD THE APP
</span>
<div class="downloadAppIcon">
<a href="https://play.google.com/store/apps/details?id=com.bewakoof.bewakoof&hl=en" target="_blank">
<img alt="android app" class="hidden-xs" src="https://images.bewakoof.com/web/app_android_v1.png" title="android app" width="100px"/>
<img alt="android app" class="visible-xs" src="https://images.bewakoof.com/web/android-2x.png" title="android app" width="24px"/>
</a>
<a href="https://itunes.apple.com/in/app/bewakoof/id1100190514?mt=8" target="_blank">
<img alt="ios app" class="hidden-xs" src="https://images.bewakoof.com/web/app_ios_v1.png" title="ios app" width="100px"/>
<img alt="ios app" class="visible-xs" src="https://images.bewakoof.com/web/apple-2x.png" title="ios app" width="24px"/>
</a>
</div>
</li>
</ul>
</div>
<div class="col-md-6 col-sm-12 noPdSm hidden-xs">
<br class="visible-xs"/>
<br class="visible-xs"/>
<span class="footerTitle">
100% Secure Payment
</span>
<img alt="secure payments" class="paymentImg" src="https://images.bewakoof.com/web/secure-payments-image.png" title="secure payments"/>
</div>
</section>
<section class="col-xs-12 noPdSm footCategoryList">
<div class="footerContainer clearfix" style="margin:30px 0px">
<ul class="col-sm-3 footCategoryMobile">
<a href="/men-clothing">
<h4 class="fcWhite">
Men's Clothing
</h4>
</a>
<li>
<a class="seperate-li" href="/top-wear-for-men" title="Top Wear for Men Online India - Bewakoof">
Top Wear
</a>
</li>
<li>
<a class="" href="/men-new-arrivals-collection" title="Buy latest clothes for Men Online India - Bewakoof">
Men's New Arrivals
</a>
</li>
<li>
<a class="" href="/men-t-shirts" title="Mens T-Shirts Online India - Bewakoof">
Men's T-Shirts
</a>
</li>
<li>
<a class="" href="/men-hoodies-sweatshirts" title="Mens Hoodies & SweatShirts Online India - Bewakoof">
Men's Hoodies & Sweatshirts
</a>
</li>
<li>
<a class="" href="/oversized-t-shirts-for-men" title="Oversized T-Shirts for Men - Bewakoof">
Oversized T-Shirts for Men
</a>
</li>
<li>
<a class="" href="/men-full-sleeve-t-shirts" title="Long Sleeve T-Shirts for Men Online India - Bewakoof">
Men's Long Sleeve T-shirts
</a>
</li>
<li>
<a class="" href="/half-sleeve-t-shirts-for-men" title="Mens Half Sleeve T-Shirts - Bewakoof">
Men's Half Sleeve T-Shirts
</a>
</li>
<li>
<a class="" href="/men-printed-tshirts" title="Printed T-Shirts for Men Online India - Bewakoof">
Men's Printed T-shirts
</a>
</li>
<li>
<a class="" href="/men-plain-t-shirts" title="Plain T-Shirts for Men Online India - Bewakoof">
Men's Plain T-shirts
</a>
</li>
<li>
<a class="" href="/drop-shoulder-t-shirts-for-men" title="Drop Shoulder T-Shirts for Men Online India - Bewakoof">
Men's Drop Shoulder T-shirts
</a>
</li>
<li>
<a class="" href="/men-vests" title="Gym Vests for Men Online India - Bewakoof">
Men's Vests
</a>
</li>
<li>
<a class="" href="/polo-t-shirts-for-men" title="Polo Neck T-Shirts - Bewakoof">
Men's Polo T-Shirts
</a>
</li>
<li>
<a class="" href="/men-kurtas" title="Kurtas for Men - Bewakoof">
Men's Kurtas
</a>
</li>
<li>
<a class="" href="/mens-combo-t-shirt" title="Combo T-Shirts for Men - Bewakoof">
Men's Combo T-Shirts
</a>
</li>
<li>
<a class="" href="/men-shirts" title="Buy Casual Shirts for Men Online India - Bewakoof">
Men's Shirts
</a>
</li>
<li>
<a class="" href="/men-nightwear" title="Buy Nightwear for Men Online">
Men's Nightwear
</a>
</li>
<li>
<a class="" href="/plus-size-store-for-men" title="Plus Size Store for Men - Bewakoof">
Men's Plus Size Store
</a>
</li>
<li>
<a class="seperate-li" href="/men-bottom-wear-collection" title="Bottom Wear for Men Online India - Bewakoof">
Bottom Wear
</a>
</li>
<li>
<a class="" href="/men-pajamas" title="Pajamas for men Online India - Bewakoof">
Men's Pajamas
</a>
</li>
<li>
<a class="" href="/men-boxer-shorts" title="Boxer Shorts for men Online India - Bewakoof">
Men's Boxer Shorts
</a>
</li>
<li>
<a class="" href="/men-shorts" title="Shorts for men Online India - Bewakoof">
Men's Shorts
</a>
</li>
<li>
<a class="" href="/men-joggers" title="Buy Jogger pants for men Online India - Bewakoof">
Men's Jogger
</a>
</li>
<li>
<a class="" href="/cargo-joggers-for-men" title="Buy Cargo Joggers for men Online India - Bewakoof">
Men's Cargo Joggers
</a>
</li>
<li>
<a class="" href="/track-pants-for-men" title="Buy Track pants for men Online India - Bewakoof">
Men's Track Pants
</a>
</li>
<li>
<a class="" href="/mens-denim" title="Buy Jeans for men Online India - Bewakoof">
Men's Jeans
</a>
</li>
<li>
<a class="" href="/men-bell-bottom-jeans" title="Buy Bell Bottom Jeans for men Online India - Bewakoof">
Men's Bell Bottom Jeans
</a>
</li>
<li>
<a class="" href="/men-pants" title="Pants for Men Online India - Bewakoof">
Men's Trousers & Pants
</a>
</li>
<li class="seperate-li">
<a>
Featured
</a>
</li>
<li>
<a href="/men-flip-flops" title="Buy Slippers for Men Online India">
Men's Flip Flops
</a>
</li>
<li>
<a href="/men-sliders" title="Buy Sliders for Men Online India">
Men's Sliders
</a>
</li>
<li>
<a href="/marvel-merchandise" title="Buy Marvel Merchandise India Online">
Marvel T-Shirts
</a>
</li>
<li>
<a href="/disney-merchandise" title="Buy Disney Merchandise India">
Disney T-Shirts
</a>
</li>
<li>
<a href="/avengers-merchandise" title="Buy Avengers Merchandise India Online">
Avengers T-Shirts
</a>
</li>
<li>
<a href="/star-wars-merchandise" title="Buy Star Wars Merchandise India Online">
Star Wars T-Shirts
</a>
</li>
<li>
<a href="/batman-merchandise" title="Buy Batman Merchandise India Online">
Batman T-Shirts
</a>
</li>
<li>
<a href="/superman-merchandise" title="Buy Superman Merchandise India Online">
Superman T-Shirts
</a>
</li>
<li>
<a href="/joker-merchandise" title="Buy Joker Merchandise India Online">
Joker T-Shirts
</a>
</li>
</ul>
<ul class="col-sm-3 footCategoryMobile">
<a href="/women-clothing">
<h4 class="fcWhite">
Women's Clothing
</h4>
</a>
<li>
<a class="seperate-li" href="/top-wear-for-women" title="Top Wear for Women Online India - Bewakoof.com">
Women's Top Wear
</a>
</li>
<li>
<a class="" href="/women-new-arrivals-collection" title="Buy Latest Clothes for Women Online India - Bewakoof.com">
Women's New Arrivals
</a>
</li>
<li>
<a class="" href="/women-t-shirts" title="Buy T Shirts for Women Online India - Bewakoof.com">
Women's T-Shirts
</a>
</li>
<li>
<a class="" href="/women-hoodies-sweatshirts" title="Buy Hoodies & Sweatshirts for Women Online India - Bewakoof.com">
Women's Hoodies & Sweatshirts
</a>
</li>
<li>
<a class="" href="/women-dresses" title="Buy T Shirt Dresses for Women Online India - Bewakoof.com">
Women's Dresses
</a>
</li>
<li>
<a class="" href="/women-3-4-sleeve-t-shirts" title="Buy 3 4 T-Shirts Online India - Bewakoof.com">
Women's 3/4 Sleeve T-Shirts
</a>
</li>
<li>
<a class="" href="/women-kurtas" title="Buy Kurtis for Women Online">
Women's Kurtis
</a>
</li>
<li>
<a class="" href="/womens-combo-t-shirt" title="Buy Combo T-Shirts for Women Online">
Women's Combo T-Shirts
</a>
</li>
<li>
<a class="" href="/women-nightwear" title="Buy Nightwear for Women Online">
Women's Nightwear
</a>
</li>
<li>
<a class="" href="/plus-size-store-for-women" title="Buy Plus Size Tops for Women Online">
Women's Plus Size Store
</a>
</li>
<li>
<a class="seperate-li" href="/bottom-wear-for-women" title="Buy Bottom Wear for Women Online India - Bewakoof.com">
Women's Bottom Wear
</a>
</li>
<li>
<a class="" href="/women-pajamas" title="Buy Pajamas for Women Online India - Bewakoof.com">
Women's Pajamas
</a>
</li>
<li>
<a class="" href="/women-boxer-shorts" title="Buy Boxers for Women Online India - Bewakoof.com">
Women's Boxer Shorts
</a>
</li>
<li>
<a class="" href="/womens-denims" title="Buy Jeans for Women Online India - Bewakoof.com">
Women's Jeans
</a>
</li>
<li>
<a class="" href="/women-wide-leg-jeans" title="Buy Wide Leg Jeans for Women Online India - Bewakoof.com">
Women's Wide Leg Jeans
</a>
</li>
<li>
<a class="" href="/jeggings-for-women" title="Buy Jeggings for Women Online India - Bewakoof.com">
Women's Jeggings
</a>
</li>
<li>
<a class="" href="/women-joggers-sweatpants" title="Buy Joggers for Women Online India - Bewakoof.com">
Women's Joggers
</a>
</li>
<li>
<a class="" href="/women-pants" title="Pants for Women Online India - Bewakoof">
Women's Trousers & Pants
</a>
</li>
<li>
<a class="" href="/track-pants-for-women" title="Buy Track Pants for Women Online India - Bewakoof.com">
Women's Track Pants
</a>
</li>
<li>
<a class="" href="/women-shorts" title="Buy Shorts for Women Online India - Bewakoof.com">
Women's Shorts
</a>
</li>
<li>
<a class="seperate-li" href="/bags" title="Bags for Men & Women">
BAGS
</a>
</li>
<li>
<a class="" href="/laptop-bags" title="Buy Laptop Bags for Men & Women">
Laptop Bags
</a>
</li>
<li>
<a class="" href="/small-backpacks" title="Buy Mini Bags for Men & Women">
Small Backpacks
</a>
</li>
<li class="seperate-li">
<a>
Featured
</a>
</li>
<li>
<a href="/women-sliders" title="Buy Sliders for Women Clothing Online India">
Women's Slides
</a>
</li>
<li>
<a href="/women-flip-flops" title="Buy Slippers for Women India">
Women's Flip Flops
</a>
</li>
</ul>
<ul class="col-sm-3 footCategoryMobile">
<a href="/mobile-covers-india">
<h4 class="fcWhite">
Mobile Covers
</h4>
</a>
<li>
<p style="cursor:default" title="Shop by brands">
Brands
</p>
</li>
<li>
<a href="/mobile-covers-india/apple-cases-back-covers" title="Apple">
Apple
</a>
</li>
<li>
<a href="/mobile-covers-india/realme-cases-back-covers" title="Realme">
Realme
</a>
</li>
<li>
<a href="/mobile-covers-india/samsung-cases-back-covers" title="Samsung">
Samsung
</a>
</li>
<li>
<a href="/mobile-covers-india/xiaomi-cases-back-covers" title="Xiaomi">
Xiaomi
</a>
</li>
<li>
<a href="/mobile-covers-india/oneplus-cases-back-covers" title="Oneplus">
Oneplus
</a>
</li>
<li>
<a href="/mobile-covers-india/vivo-cases-back-covers" title="Vivo">
Vivo
</a>
</li>
<li>
<a href="/mobile-covers-india/oppo-cases-back-covers" title="Oppo">
Oppo
</a>
</li>
</ul>
<ul class="col-xs-12 col-sm-3 footerExtraLinks">
<h4 class="col-sm-12 footCategoryMobile fcWhite">
<a class="success" href="/fanbook-testimonial-reviews">
<!-- -->
Fanbook
</a>
</h4>
<h4 class="col-sm-12 footCategoryMobile fcWhite">
<a class="success" href="/campaign/delights-coupons-discounts-offers-sale">
<!-- -->
Offers
</a>
</h4>
<h4 class="col-sm-12 footCategoryMobile fcWhite">
<a class="success" href="/sitemap">
<!-- -->
Sitemap
</a>
</h4>
</ul>
<div class="col-md-3 col-sm-6 noPdSm tNC tcnForMobile visible-xs">
<ul>
<li>
<a href="https://www.bewakoof.com/contact-us/refund-or-return">
<i class="icon_return_order">
</i>
15 Days return policy*
</a>
</li>
<li>
<a href="https://www.bewakoof.com/contact-us/order-delivery-payment">
<i class="icon_cod">
</i>
Cash on delivery*
</a>
</li>
</ul>
</div>
<div class="footerAboutUs">
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<script>
window.__PRELOADED_STATE__ = {"whatsapp":{"whatsapp_updates":true},"loyalty":{"planSelected":false,"tribe_data":undefined,"cancelAutoRenewalRes":undefined},"refer":{"referral_code":null,"pageData":null},"ratingReducer":{"rate":0,"rating":undefined,"feedback":undefined},"orderReducer":{"order":undefined,"returnOrders":undefined,"orderStatus":undefined,"orderSuccessData":undefined},"router":{"location":null},"auth":{"idle":true,"newUser":{"message":false},"login":undefined,"loginError":undefined,"logout":false,"isLoggedIn":false,"openauthModal":false,"openforgotpasswordModal":false,"openotpModal":false,"forgot":false,"emailSent":false,"otp":undefined,"startResendTimer":undefined,"emailVerification":{"isEmailVerified":false,"haveOTPAttempts":true,"otpErrorMsg":undefined},"otpMobile":undefined,"haveOTPAttempts":true,"regMissCreds":undefined,"open_missing_login_info_collector_wizard":false,"tokens":[],"loginFlow":false,"otpErrorMsg":undefined,"loginCreatives":undefined,"registerVerifyOtp":undefined,"registerVerifyOtpError":undefined},"plussize":{"plussize":undefined},"feedbackReducer":{"submit_rating":undefined,"feedback_questions":undefined,"save_feedback":undefined},"deliveryfeedback":{"saveDeliveryFeedback":undefined},"feed":{"saveBShots":undefined},"gamerewards":{"gameRewardsDetails":undefined,"spinReward":undefined,"saveGameRewards":undefined},"appObject":{"deal":null,"footer_links":{"value":{"mobile_covers":{"link":"mobile-covers-india","title":"Mobile Covers & Cases","text":"Mobile Covers","brandsList":[{"title":"Shop by brands","text":"Brands","class":"seperate-li"},{"link":"mobile-covers-india\u002Fapple-cases-back-covers","title":"Apple","text":"Apple"},{"link":"mobile-covers-india\u002Frealme-cases-back-covers","title":"Realme","text":"Realme"},{"link":"mobile-covers-india\u002Fsamsung-cases-back-covers","title":"Samsung","text":"Samsung"},{"link":"mobile-covers-india\u002Fxiaomi-cases-back-covers","title":"Xiaomi","text":"Xiaomi"},{"link":"mobile-covers-india\u002Foneplus-cases-back-covers","title":"Oneplus","text":"Oneplus"},{"link":"mobile-covers-india\u002Fvivo-cases-back-covers","title":"Vivo","text":"Vivo"},{"link":"mobile-covers-india\u002Foppo-cases-back-covers","title":"Oppo","text":"Oppo"}]},"men_fashion":{"link":"men-clothing","is_category_or_collection":7,"title":"Online Shopping for Men India - Bewakoof","text":"Men's Clothing","list":[{"link":"top-wear-for-men","is_category_or_collection":7,"title":"Top Wear for Men Online India - Bewakoof","text":"Top Wear","class":"seperate-li"},{"link":"men-new-arrivals-collection","is_category_or_collection":7,"title":"Buy latest clothes for Men Online India - Bewakoof","text":"Men's New Arrivals"},{"link":"men-t-shirts","is_category_or_collection":7,"title":"Mens T-Shirts Online India - Bewakoof","text":"Men's T-Shirts"},{"link":"men-hoodies-sweatshirts","is_category_or_collection":7,"title":"Mens Hoodies & SweatShirts Online India - Bewakoof","text":"Men's Hoodies & Sweatshirts"},{"link":"oversized-t-shirts-for-men","is_category_or_collection":7,"title":"Oversized T-Shirts for Men - Bewakoof","text":"Oversized T-Shirts for Men"},{"link":"men-full-sleeve-t-shirts","is_category_or_collection":7,"title":"Long Sleeve T-Shirts for Men Online India - Bewakoof","text":"Men's Long Sleeve T-shirts"},{"link":"half-sleeve-t-shirts-for-men","is_category_or_collection":7,"title":"Mens Half Sleeve T-Shirts - Bewakoof","text":"Men's Half Sleeve T-Shirts"},{"link":"men-printed-tshirts","is_category_or_collection":7,"title":"Printed T-Shirts for Men Online India - Bewakoof","text":"Men's Printed T-shirts"},{"link":"men-plain-t-shirts","is_category_or_collection":7,"title":"Plain T-Shirts for Men Online India - Bewakoof","text":"Men's Plain T-shirts"},{"link":"drop-shoulder-t-shirts-for-men","is_category_or_collection":7,"title":"Drop Shoulder T-Shirts for Men Online India - Bewakoof","text":"Men's Drop Shoulder T-shirts"},{"link":"men-vests","is_category_or_collection":7,"title":"Gym Vests for Men Online India - Bewakoof","text":"Men's Vests"},{"link":"polo-t-shirts-for-men","is_category_or_collection":7,"title":"Polo Neck T-Shirts - Bewakoof","text":"Men's Polo T-Shirts"},{"link":"men-kurtas","is_category_or_collection":7,"title":"Kurtas for Men - Bewakoof","text":"Men's Kurtas"},{"link":"mens-combo-t-shirt","is_category_or_collection":7,"title":"Combo T-Shirts for Men - Bewakoof","text":"Men's Combo T-Shirts"},{"link":"men-shirts","is_category_or_collection":7,"title":"Buy Casual Shirts for Men Online India - Bewakoof","text":"Men's Shirts"},{"link":"men-nightwear","is_category_or_collection":7,"title":"Buy Nightwear for Men Online","text":"Men's Nightwear"},{"link":"plus-size-store-for-men","is_category_or_collection":7,"title":"Plus Size Store for Men - Bewakoof","text":"Men's Plus Size Store"},{"link":"men-bottom-wear-collection","is_category_or_collection":7,"title":"Bottom Wear for Men Online India - Bewakoof","text":"Bottom Wear","class":"seperate-li"},{"link":"men-pajamas","is_category_or_collection":7,"title":"Pajamas for men Online India - Bewakoof","text":"Men's Pajamas"},{"link":"men-boxer-shorts","is_category_or_collection":7,"title":"Boxer Shorts for men Online India - Bewakoof","text":"Men's Boxer Shorts"},{"link":"men-shorts","is_category_or_collection":7,"title":"Shorts for men Online India - Bewakoof","text":"Men's Shorts"},{"link":"men-joggers","is_category_or_collection":7,"title":"Buy Jogger pants for men Online India - Bewakoof","text":"Men's Jogger"},{"link":"cargo-joggers-for-men","is_category_or_collection":7,"title":"Buy Cargo Joggers for men Online India - Bewakoof","text":"Men's Cargo Joggers"},{"link":"track-pants-for-men","is_category_or_collection":7,"title":"Buy Track pants for men Online India - Bewakoof","text":"Men's Track Pants"},{"link":"mens-denim","is_category_or_collection":7,"title":"Buy Jeans for men Online India - Bewakoof","text":"Men's Jeans"},{"link":"men-bell-bottom-jeans","is_category_or_collection":7,"title":"Buy Bell Bottom Jeans for men Online India - Bewakoof","text":"Men's Bell Bottom Jeans"},{"link":"men-pants","is_category_or_collection":7,"title":"Pants for Men Online India - Bewakoof","text":"Men's Trousers & Pants"}],"featured":{"text":"Featured","class":"seperate-li","is_category_or_collection":2,"list":[{"link":"men-flip-flops","is_category_or_collection":7,"title":"Buy Slippers for Men Online India","text":"Men's Flip Flops"},{"link":"men-sliders","is_category_or_collection":7,"title":"Buy Sliders for Men Online India","text":"Men's Sliders"},{"link":"marvel-merchandise","is_category_or_collection":7,"title":"Buy Marvel Merchandise India Online","text":"Marvel T-Shirts"},{"link":"disney-merchandise","is_category_or_collection":7,"title":"Buy Disney Merchandise India","text":"Disney T-Shirts"},{"link":"avengers-merchandise","is_category_or_collection":7,"title":"Buy Avengers Merchandise India Online","text":"Avengers T-Shirts"},{"link":"star-wars-merchandise","is_category_or_collection":7,"title":"Buy Star Wars Merchandise India Online","text":"Star Wars T-Shirts"},{"link":"batman-merchandise","is_category_or_collection":7,"title":"Buy Batman Merchandise India Online","text":"Batman T-Shirts"},{"link":"superman-merchandise","is_category_or_collection":7,"title":"Buy Superman Merchandise India Online","text":"Superman T-Shirts"},{"link":"joker-merchandise","is_category_or_collection":7,"title":"Buy Joker Merchandise India Online","text":"Joker T-Shirts"}]}},"women_fashion":{"link":"women-clothing","is_category_or_collection":7,"title":"Online Fashion Shopping for Women India - Bewakoof.com","text":"Women's Clothing","list":[{"link":"top-wear-for-women","is_category_or_collection":7,"title":"Top Wear for Women Online India - Bewakoof.com","text":"Women's Top Wear","class":"seperate-li"},{"link":"women-new-arrivals-collection","is_category_or_collection":7,"title":"Buy Latest Clothes for Women Online India - Bewakoof.com","text":"Women's New Arrivals"},{"link":"women-t-shirts","is_category_or_collection":7,"title":"Buy T Shirts for Women Online India - Bewakoof.com","text":"Women's T-Shirts"},{"link":"women-hoodies-sweatshirts","is_category_or_collection":7,"title":"Buy Hoodies & Sweatshirts for Women Online India - Bewakoof.com","text":"Women's Hoodies & Sweatshirts"},{"link":"women-dresses","is_category_or_collection":7,"title":"Buy T Shirt Dresses for Women Online India - Bewakoof.com","text":"Women's Dresses"},{"link":"women-3-4-sleeve-t-shirts","is_category_or_collection":7,"title":"Buy 3 4 T-Shirts Online India - Bewakoof.com","text":"Women's 3\u002F4 Sleeve T-Shirts"},{"link":"women-kurtas","is_category_or_collection":7,"title":"Buy Kurtis for Women Online","text":"Women's Kurtis"},{"link":"womens-combo-t-shirt","is_category_or_collection":7,"title":"Buy Combo T-Shirts for Women Online","text":"Women's Combo T-Shirts"},{"link":"women-nightwear","is_category_or_collection":7,"title":"Buy Nightwear for Women Online","text":"Women's Nightwear"},{"link":"plus-size-store-for-women","is_category_or_collection":7,"title":"Buy Plus Size Tops for Women Online","text":"Women's Plus Size Store"},{"link":"bottom-wear-for-women","is_category_or_collection":7,"title":"Buy Bottom Wear for Women Online India - Bewakoof.com","text":"Women's Bottom Wear","class":"seperate-li"},{"link":"women-pajamas","is_category_or_collection":7,"title":"Buy Pajamas for Women Online India - Bewakoof.com","text":"Women's Pajamas"},{"link":"women-boxer-shorts","is_category_or_collection":7,"title":"Buy Boxers for Women Online India - Bewakoof.com","text":"Women's Boxer Shorts"},{"link":"womens-denims","is_category_or_collection":7,"title":"Buy Jeans for Women Online India - Bewakoof.com","text":"Women's Jeans"},{"link":"women-wide-leg-jeans","is_category_or_collection":7,"title":"Buy Wide Leg Jeans for Women Online India - Bewakoof.com","text":"Women's Wide Leg Jeans"},{"link":"jeggings-for-women","is_category_or_collection":7,"title":"Buy Jeggings for Women Online India - Bewakoof.com","text":"Women's Jeggings"},{"link":"women-joggers-sweatpants","is_category_or_collection":7,"title":"Buy Joggers for Women Online India - Bewakoof.com","text":"Women's Joggers"},{"link":"women-pants","is_category_or_collection":7,"title":"Pants for Women Online India - Bewakoof","text":"Women's Trousers & Pants"},{"link":"track-pants-for-women","is_category_or_collection":7,"title":"Buy Track Pants for Women Online India - Bewakoof.com","text":"Women's Track Pants"},{"link":"women-shorts","is_category_or_collection":7,"title":"Buy Shorts for Women Online India - Bewakoof.com","text":"Women's Shorts"},{"link":"bags","is_category_or_collection":7,"title":"Bags for Men & Women","text":"BAGS","class":"seperate-li"},{"link":"laptop-bags","is_category_or_collection":7,"title":"Buy Laptop Bags for Men & Women","text":"Laptop Bags"},{"link":"small-backpacks","is_category_or_collection":7,"title":"Buy Mini Bags for Men & Women","text":"Small Backpacks"}],"featured":{"text":"Featured","class":"seperate-li","is_category_or_collection":2,"list":[{"link":"women-sliders","is_category_or_collection":7,"title":"Buy Sliders for Women Clothing Online India","text":"Women's Slides"},{"link":"women-flip-flops","is_category_or_collection":7,"title":"Buy Slippers for Women India","text":"Women's Flip Flops"}]}},"others":[{"link":"fanbook-testimonial-reviews","is_category_or_collection":6,"text":"Fanbook","tile":"Fanbook"},{"link":"campaign\u002Fdelights-coupons-discounts-offers-sale","is_category_or_collection":3,"text":"Offers","tile":"Offers"},{"link":"sitemap","is_category_or_collection":7,"text":"Sitemap","tile":"Sitemap"}]},"updated_at":1718363031},"new_mobile_menu":{"value":[{"title":"SHOP IN","children":[{"title":"Men","url":"campaign\u002Fthe-yellow-friday-sale-for-men","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_12.png?v=1689316181","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Men&subCat=Topwear","page":true,"object_type":"shop-men","isCategoryRedirection":true,"category_page_url":"categories?category=men","icon_image":"Circle-icon-men--1--1684748735.png","image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":"campaign\u002Fthe-yellow-friday-sale-for-men"}],"children":[{"title":"Topwear","url":"top-wear-for-men","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-t-shirts"},{"title":"Printed T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-printed-tshirts"},{"title":"Oversized T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"oversized-t-shirts-for-men"},{"title":"Classic Fit T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"classic-t-shirt-for-men"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-6-1646915132.jpg","url":"men-plain-t-shirts"},{"title":"Half Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-4-1646915131.jpg","url":"half-sleeve-t-shirts-for-men"},{"title":"Polo T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-8-1646915133.jpg","url":"polo-t-shirts-for-men"},{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646915130.jpg","url":"men-vests"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Shirts-420X420-1638440741.jpg","url":"men-shirts"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-7-1646915132.jpg","url":"men-full-sleeve-t-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt_kurta_vest_sweatshirt_shirt_jacket_co-ordinates_kurta_set_t-shirt_%26_set_kurta__set"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts\u002Fgender-men"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0020-bottom-navigation-box-1634893908.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0002-White-Color-Block-Flat-Knit-Sweater-1634893902.jpg","url":"men-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-men"}]},{"title":"Bottomwear","url":"men-bottom-wear-collection","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Joggers-420X420-1638440737.jpg","url":"men-joggers"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"mens-denim"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"baggy-jeans-for-men"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargos-for-men"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargo-pants-for-men"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Casual-Pants-420X420-1638440735.jpg","url":"men-pants"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-2-1646915130.jpg","url":"men-shorts"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-3-1646915130.jpg","url":"men-boxer-shorts"},{"title":"Combos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-March2023-Bottomwear-BoxersCOMBO-1683787302.jpg","url":"combos?gender=men&category=boxer"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=jeans_joggers_pyjama_trousers_track__pant_boxer_casual__pants"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"men-bottom-wear-collection"}]},{"title":"Winterwear","url":"winter-wear-for-men","children":[{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FHoodies-1635838081.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweaters-1635838082.jpg","url":"men-sweaters"},{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0006-joggers-1635838124.jpg","url":"men-joggers"},{"title":"Plus Size","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FFull-Sleeves-1635838080.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt_jacket"}]},{"title":"Footwear","url":"men-footwear","children":[{"title":"Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men?manufacturer_brand=bewakoof®"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"men-sliders"},{"title":"Non Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men"},{"title":"Non Bewakoof Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"men-casual-shoes"}]},{"title":"Accessories","children":[{"title":"Mobile covers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002F10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india","is_new":"NEW"},{"title":"Backpacks","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838175.jpg","url":"bags"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=men","is_new":"NEW"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Caps","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"caps","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-men","children":[{"title":"T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size--Shirts-420X420-1642656919.jpg","url":"plus-size-store-for-men?category=shirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size---Jackets-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=jacket"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid--Plus-size--Hoodies---Sweatshirts-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt"},{"title":"Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=joggers_jeans_pyjama_trousers_track__pant_casual__pants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"plus-size-store-for-men?category=jeans"}]},{"title":"Innerwear & Loungewear ","url":"","children":[{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0005-minion--1634893903.jpg","url":"men-vests"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0011-boxers-1634894719.jpg","url":"men-boxer-shorts"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Bewakoof Sneakers","image":"Circle-Nav-168x168-Kakashi-1718371704.png","url":"sneakers-for-men?manufacturer_brand=bewakoof®"},{"title":"Bwkf x Google Cloud","image":"Circle-Nav-168x168-BWKF-x-Google-1716990921.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=men"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=men"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=men"},{"title":"Disney Villans","image":"DisneyVillains-168x168-1702822672.png","url":"disney-villains?gender=men"},{"title":"Bwkf X Ishaan Khatter","image":"circle-168x168-IK-1699605086.png","url":"campaign\u002FIshan-Khatter"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=men_unisex"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_men"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=men"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=men"},{"title":"Cartoon Network","image":"Circle-Nav-168x168-1697373196.png","url":"cartoon-network-merchandise"},{"title":"Bwkf x Pima","image":"circle-icon-pima-168x168-1695825476.png","url":"bewakoof-american-pima"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise"},{"title":"Squad Tees","image":"Circle-icon-buddy-tees--2--1694693460.png","url":"friendship-day-gifts"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Anime Collection","image":"circlenav-animeFLASHOUT-168x168-1675432697.png","url":"anime-collection?gender=men_unisex"},{"title":"Marvel Youth Beat","image":"Circle-Icon-Marvel-Youth-Beat-1653558342.png","url":"marvel-merchandise?gender=men_unisex"},{"title":"The Batman Collection","image":"batman-icon-1652639811.png","url":"batman-merchandise?gender=men_unisex"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=men_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-men"}]}]},{"title":"Women","url":"","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_1.png?v=1683702749","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Women&subCat=Topwear","object_type":"shop-women","isCategoryRedirection":true,"category_page_url":"categories?category=women","icon_image":"Circle-icon-women--1--1684748736.png","page":true,"image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":""}],"children":[{"title":"Topwear","url":"top-wear-for-women","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"women-t-shirts"},{"title":"Printed T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-7-1646932671.jpg","url":"women-printed-t-shirts"},{"title":"Boyfriend T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-boyfriend-tshirts"},{"title":"Oversized T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"oversized-t-shirts-for-women"},{"title":"Classic Fit T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"classic-t-shirt-for-women"},{"title":"Half Sleeves T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-6-1646932671.jpg","url":"half-sleeve-t-shirts-for-women"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-2-1646932669.jpg","url":"women-plain-t-shirts"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-full-sleeves-t-shirts"},{"title":"Fashion Tops","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Fashion-Tops-Women-1638441042.jpg","url":"fashion-tops"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Dresses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-8-1646932672.jpg","url":"women-dresses"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FPrinted-Shirt-1634896295.jpg","url":"women-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_top"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=women"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1-1634895368.jpg","url":"women-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-fatima-1644323907.jpg","url":"women-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1634895368.jpg","url":"women-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-women"}]},{"title":"Bottomwear","url":"bottom-wear-for-women","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0005-joggers-women-1634894810.jpg","url":"women-joggers-sweatpants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"womens-denims"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"baggy-jeans-for-women"},{"title":"Parachute pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Parachute-Pants-1694077402.jpg","url":"parachute-pants-for-women"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargos-for-women"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargo-pants-for-women"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-5-1646932670.jpg","url":"women-pajamas"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Trousers-Women-1638535094.jpg","url":"women-pants"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-4-1646932670.jpg","url":"women-shorts"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"bottom-wear-for-women"}]},{"title":"Winterwear","url":"winter-wear-for-women","children":[{"title":"Jackets","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-13-1622014271.png","url":"women-jackets"},{"title":"Sweatshirts & Hoodies","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-12-1622014270.png","url":"women-hoodies-sweatshirts"},{"title":"Sweaters","image":"Bewakoof-Homepage-TopWear-Women-Icon-Sweaters-14-1622014276.png","url":"women-sweaters"},{"title":"Joggers","image":"Jogger-1622015072.png","url":"women-joggers-sweatpants"},{"title":"Plus Size","image":"Category-Grid-Sweatshirts-420X420-1638865326.jpg","url":"plus-size-store-for-women?category=hoodies_jacket_sweatshirt"}]},{"title":"Footwear","url":"women-footwear","children":[{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"casual-shoes-for-women"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"women-sliders"},{"title":"Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"women-sneakers"}]},{"title":"Accessories","children":[{"title":"Mobile Covers","image":"10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india"},{"title":"Bags & Backpacks","image":"tod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838450.jpg","url":"bags"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=women","is_new":"NEW"},{"title":"Caps","image":"bottom-navigation-cap--1637934867.jpg","url":"caps"}]},{"title":"Plus Size","url":"plus-size-store-for-women","children":[{"title":"Topwear","image":"Category-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_t-shirt__%26__pyjama__set_top"},{"title":"Sweatshirts & hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-2-1700128926.jpg","url":"plus-size-store-for-women?category=hoodies_sweatshirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-1-1700128926.jpg","url":"plus-size-store-for-women?category=jacket"},{"title":"Bottomwear","image":"Category-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"Dresses","image":"Category-Grid-Plus-Size-Dresses-420X420-1643692240.jpg","url":"plus-size-store-for-women?category=dress"}]},{"title":"Loungewear","url":"women-nightwear","children":[{"title":"Shorts","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-shorts"},{"title":"Pajamas","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-pajamas"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Bwkf x Google Cloud","image":"Circle-Nav-168x168-BWKF-x-Google-1716990921.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=women"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=women"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=women"},{"title":"Bwkf X Rashmika Mandanna","image":"NewBottomNav-RM-336x336-1701505415.png","url":"campaign\u002FRashmika_Mandanna"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=unisex_women"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_women"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=women"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=women_unisex"},{"title":"Cartoon Network","image":"Circle-Nav-168x168-1697373196.png","url":"cartoon-network-merchandise"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise"},{"title":"Squad Tees","image":"Circle-icon-buddy-tees--2--1694693460.png","url":"friendship-day-gifts"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=women_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-women"}]}]},{"title":"Shop by Fandom","object_type":"campaign\u002Fofficial-collaborations","navigateToHome":"categories","isCategoryRedirection":true,"category_page_url":"categories?sub-cat=shop by fandom","icon_image":"Circle-icon-character-shop--1--1684748738.png","shopify_url":"\u002Fpages\u002Fofficial-collaborations","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","iswebview":true,"page":true,"exclude":"desktop","login_required":false,"appNavigation":{"screen":"campaign"}},{"title":"Mobile Covers","object_type":"mobile covers","exclude":"ios,android,mobile_site","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","shopify_url":"\u002F","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","right_imgs":[{"src":"bewakoof-online-fashion-COTM-mobile-cover-navigation-box-desktop-1612275399.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Nothing","url":"mobile-covers-india\u002Fnothing-cases-back-covers","page":true,"children":[{"title":"Nothing Phone 1","url":"nothing-phone-1-back-covers-cases","params":{"qf":false}},{"title":"Nothing Phone 2","url":"nothing-phone-2-back-covers-cases","params":{"qf":false}}]},{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","page":true,"children":[{"title":"Mi 12 Pro 5G","url":"xiaomi-mi-12-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9 Power","url":"xiaomi-redmi-9-power-back-cover-cases","params":{"qf":false}},{"title":"Redmi Note 11 SE","url":"redmi-note-11-se-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 T","url":"xiaomi-redmi-note-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10i 5G","url":"xiaomi-mi-10i-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Ultra","url":"mi-11-ultra-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Lite NE 5G","url":"mi-11-lite-ne-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i","url":"xiaomi-mi-11i-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i HyperCharge","url":"mi-11i-hypercharge-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11T Pro 5G","url":"xiaomi-mi-11t-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11X","url":"xiaomi-mi-11x-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10T","url":"xiaomi-mi-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi K20 Pro","url":"xiaomi-redmi-k-20-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10","url":"xiaomi-mi-10-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco C3","url":"xiaomi-poco-c3-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9","url":"xiaomi-redmi-9-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 10 Prime","url":"xiaomi-redmi-10-prime-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Prime","url":"xiaomi-redmi-9-prime-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10T 5G","url":"redmi-note-10t-5g-back-covers-cases","params":{"qf":false}},{"title":"Redmi 11 Prime 5G","url":"redmi-11-prime-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11 Pro 5G","url":"redmi-note-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11t 5G","url":"xiaomi-redmi-note-11t-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro Max","url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro","url":"xiaomi-redmi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10","url":"xiaomi-redmi-note-10-back-covers-cases","params":{"qf":false}},{"title":"Mi Note 10 pro","url":"xiaomi-mi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases ","params":{"qf":false}},{"title":"Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 5 Pro","url":"xiaomi-redmi-note-5-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Google Pixel","url":"mobile-covers-india\u002Fgoogle-pixel-cases-back-covers","page":true,"children":[{"title":"Google Pixel 6A","url":"google-pixel-6a-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","page":true,"children":[{"title":"OnePlus Nord 3 5G","url":"oneplus-nord-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite 5G","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 5G","url":"oneplus-nord-ce-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 2 Lite","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 2T 5G","url":"oneplus-nord-2t-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9R","url":"oneplus-9r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9RT","url":"oneplus-9rt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 9","url":"oneplus-9-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Pro","url":"oneplus-9-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord N20 SE","url":"oneplus-nord-n20-se-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8 Pro","url":"oneplus-8-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8","url":"oneplus-8-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord N20","url":"one-plus-nord-n20-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE","url":"oneplus-nord-ce-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord CE 5G","url":"oneplus-nord-ce-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord CE2 5G","url":"oneplus-nord-ce-2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus Nord CE2 Lite 5G","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 10 Pro","url":"oneplus-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord 2","url":"oneplus-nord-2-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7","url":"oneplus-7-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 10 R","url":"oneplus-10r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7 Pro","url":"oneplus-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6T","url":"oneplus-6t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","page":true,"children":[{"title":"iPhone 15 Pro max","url":"iphone-15-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Pro","url":"iphone-15-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Plus","url":"iphone-15-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15","url":"iphone-15-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro Max","url":"iphone-14-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro","url":"iphone-14-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Plus","url":"iphone-14-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14","url":"iphone-14-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2022","url":"iphone-se-2022-back-covers-cases","params":{"qf":false}},{"title":"iPhone 13 Pro Max","url":"iphone-13-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Pro","url":"iphone-13-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Mini","url":"iphone-13-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13","url":"iphone-13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro","url":"iphone-12-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12","url":"iphone-12-back-covers-cases","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS Max","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}},{"title":"iPhone 8 plus","url":"iphone-8-plus-back-covers-cases","params":{"qf":false}},{"title":"iPhone 7 plus","url":"iphone-7-plus-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","page":true,"children":[{"title":"Samsung Galaxy A55 5G Covers","url":"samsung-galaxy-a55-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A35 5G Covers","url":"samsung-galaxy-a35-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 Ultra 5G Mobile Covers","url":"samsung-galaxy-s24-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 5G Mobile Covers","url":"samsung-galaxy-s24-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Fold4 5G Mobile Covers","url":"samsung-galaxy-z-fold4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Flip4 5G Mobile Covers","url":"samsung-galaxy-z-flip4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M14 5G","url":"samsung-galaxy-m14-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Ultra 5G","url":"samsung-galaxy-s23-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Plus 5G","url":"samsung-galaxy-s23-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 5G","url":"samsung-galaxy-s23-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A54 5G","url":"samsung-galaxy-a54-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A34 5G","url":"samsung-galaxy-a34-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20 Ultra","url":"samsung-galaxy-note-20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20 FE","url":"samsung-galaxy-s20-fe-back-cover-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20","url":"samsung-galaxy-note-20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20","url":"samsung-galaxy-s20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21","url":"samsung-galaxy-s21-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 5G","url":"samsung-galaxy-s22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note20 Ultra","url":"samsung-galaxy-s20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M33 5G","url":"samsung-galaxy-m33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A33 5G","url":"samsung-galaxy-a33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A23","url":"samsung-galaxy-a23-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A73 5G","url":"samsung-galaxy-a73-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A13","url":"samsung-galaxy-a13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10","url":"samsung-galaxy-s10-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Lite","url":"samsung-galaxy-s10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Plus","url":"samsung-galaxy-s10-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy F62","url":"samsung-galaxy-f62-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A12","url":"samsung-galaxy-a12-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22","url":"samsung-galaxy-a22-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22 5G","url":"samsung-galaxy-a22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A32","url":"samsung-galaxy-a32-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52","url":"samsung-galaxy-a52-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52s","url":"samsung-galaxy-a52s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A50","url":"samsung-galaxy-a50-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M53 5G","url":"samsung-galaxy-m53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A53 5G","url":"samsung-galaxy-a53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Ultra 5G","url":"samsung-galaxy-s22-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Plus 5G","url":"samsung-galaxy-s22-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M52 5G","url":"samsung-galaxy-m52-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 fe 5G","url":"samsung-galaxy-s21-fe-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 Plus","url":"samsung-galaxy-s21-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M32 5G","url":"samsung-galaxy-m32-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","page":true,"children":[{"title":"Realme 12 Pro+ 5G","url":"realme-12-pro-plus-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 12 Pro 5G","url":"realme-12-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro+ 5G","url":"realme-11-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro 5G","url":"realme-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro+ 5G","url":"realme-10-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro 5G","url":"realme-10-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 8 5G","url":"realme-8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 9 Pro 5G","url":"realme-9-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme C11","url":"realme-c11-back-covers-cases","params":{"qf":false}},{"title":"Realme 8","url":"realme-8-back-covers-cases","params":{"qf":false}},{"title":"Realme 7 Pro","url":"realme-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 6i","url":"realme-6i-back-covers-cases","params":{"qf":false}},{"title":"Realme XT","url":"realme-xt-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","page":true,"children":[{"title":"Vivo V30 Pro 5G Covers","url":"vivo-v30-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo V30 5G Covers","url":"vivo-v30-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo T3X 5G Covers","url":"vivo-t3x-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo Y100 Mobile Covers","url":"vivo-y100-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 Pro 5G","url":"vivo-v27-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 5G Mobile Covers","url":"vivo-v27-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V25 Pro","url":"vivo-v25-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo IQOO9 5G","url":"vivo-iqoo9-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V23e 5G Mobile Covers","url":"vivo-v23e-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y51 2020","url":"vivo-y51-2020-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y12s Mobile Covers","url":"vivo-y12-s-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y73","url":"vivo-y73-back-covers-cases","params":{"qf":false}},{"title":"Vivo X60","url":"vivo-x60-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y20 Mobile Covers","url":"vivo-y20-back-covers-cases","params":{"qf":false}},{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23e 5G","url":"vivo-v23e-5g-back-covers-cases","params":{"qf":false}}]},{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","page":true,"children":[{"title":"Oppo F25 Pro 5G Covers","url":"oppo-f25-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo Reno11 5G Covers","url":"oppo-reno11-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro","url":"oppo-f21s-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro 5G","url":"oppo-f21s-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro Plus","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno6 5G","url":"oppo-reno6-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 5G","url":"oppo-reno7-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 Pro 5G","url":"oppo-reno7-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo A57 4G","url":"oppo-a57-4g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A54","url":"oppo-a54-back-covers-cases","params":{"qf":false}},{"title":"Oppo A53","url":"oppo-a53-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A33","url":"oppo-a33-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3s","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno8 5G","url":"oppo-reno8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Moto","url":"mobile-covers-india\u002Fmoto-cases-back-covers","page":true,"children":[{"title":"Moto G7 Power","url":"moto-g7-power-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Moto G7","url":"moto-g7-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Poco","url":"mobile-covers-india\u002Fpoco-cases-back-covers","page":true,"children":[{"title":"Poco X6 Pro 5G Covers","url":"poco-x6-pro-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X6 5G Covers","url":"poco-x6-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco F5 5G Mobile Covers","url":"poco-f5-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X5 Pro 5G Mobile Covers","url":"poco-x5-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M4 5G Mobile Covers","url":"poco-m4-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5 Mobile Covers","url":"poco-m5-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X4 Pro 5G Mobile Covers","url":"poco-x4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi POCO M2 reloaded Mobile Covers","url":"xiaomi-poco-m2-reloaded-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M4 Pro 5G Mobile Covers","url":"xiaomi-poco-m4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X3 Pro Mobile Covers","url":"xiaomi-poco-x3-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco F3 GT Mobile Covers","url":"xiaomi-poco-f3-gt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco C3 Mobile Covers","url":"xiaomi-poco-c3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X3 Mobile Covers","url":"xiaomi-poco-x3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro Mobile Covers","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M3 Pro","url":"xiaomi-poco-m3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M5","url":"poco-m5-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco X3 Pro","url":"xiaomi-poco-x3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M2 Reloaded","url":"xiaomi-poco-m2-reloaded-back-covers-cases","params":{"qf":false}},{"title":"Poco X3","url":"xiaomi-poco-x3-back-covers-cases","params":{"qf":false}},{"title":"Poco F3 GT","url":"xiaomi-poco-f3-gt-back-covers-cases","params":{"qf":false}}]}]}]}]},{"title":"MY PROFILE","highlight":true,"is_login":true,"exclude":"","children":[{"title":"My Account","url":"myaccount","navigateToHome":"profile","shopify_url":"\u002Faccount","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002FMy_Accounts_1.png?v=1688713899","appNavigation":{"screen":"my_account","headerTitle":"My Account"}},{"title":"My Orders","url":"myaccount\u002Forders","iswebview":true,"shopify_url":"\u002Forders","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002FMy_Orders_1.png?v=1688713850","appNavigation":{"screen":"my_account","headerTitle":"My Orders"}},{"title":"My Wallet","url":"myaccount\u002Fwallet","iswebview":true,"shopify_url":"\u002Faccount\u002Fwallet","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002FMy_Wallet_1.png?v=1688713681","appNavigation":{"screen":"my_account","headerTitle":"My Wallet"}},{"title":"My Wishlist","url":"wishlist","shopify_url":"\u002Fwishlist","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002FMy_Wishlists_1.png?v=1688713923","appNavigation":{"screen":"wishlist","headerTitle":"My Wishlist"}}]},{"title":"CONTACT US","highlight":true,"children":[{"title":"Help & Support","url":"contact-us","exclude":"ios,android","login_required":true},{"title":"Feedback & Suggestions","url":"contact-us\u002Ffeedback\u002Fgive-us-feedback","shopify_url":"\u002Fpages\u002Ffeedback-suggestions","iswebview":true,"appNavigation":{"screen":"common_webview","headerTitle":"Feedback & Suggestions"}},{"title":"Become a Seller","url":"campaign\u002Fbpartner","shopify_url":"\u002Fpages\u002Fbpartner","exclude":"","iswebview":true,"appNavigation":{"screen":"campaign"}}]},{"title":"ABOUT US","highlight":true,"children":[{"title":"Our Story","url":"about-us\u002Four-story","iswebview":true,"shopify_url":"\u002Fpages\u002Fabout-us","appNavigation":{"screen":"common_webview","headerTitle":"Our Story"}},{"title":"Fanbook","url":"fanbook-testimonial-reviews","iswebview":true,"shopify_url":"\u002Fpages\u002Ffanpage","appNavigation":{"screen":"common_webview","headerTitle":"Fanbook"}},{"title":"Blog","url":"blog\u002F","iswebview":true,"appNavigation":{"screen":"common_webview","headerTitle":"Blog"}},{"title":"Rate the App","url":"rate_the_app","shopify_url":"rate_the_app","appNavigation":{"screen":"rate_the_app","headerTitle":"Rate the App"}}]},{"children":[{"title":"Login","url":"login","shopify_url":"\u002Faccount\u002Flogin","is_login":false},{"title":"Logout","url":"logout","shopify_url":"\u002Flogout","is_login":true,"appNavigation":{"screen":"logout","headerTitle":"Logout"}}]},{"header_objects":[{"displayName":"MEN","url":"men-clothing","name":"shop-men"},{"displayName":"WOMEN","url":"women-clothing","name":"shop-women"},{"displayName":"MOBILE COVERS","name":"mobile covers","url":"mobile-covers-india"}],"exclude":"ios,android"}],"updated_at":1718432101},"no_result_found":{"value":{"men":{"text":"Men","list":[{"link":"top-wear-for-men","text":"Topwear"},{"link":"men-bottom-wear-collection","text":"Bottomwear"},{"link":"footwear","text":"Footwear"},{"link":"bestsellers-for-men","text":"Bestsellers"}]},"women":{"text":"Women","list":[{"link":"top-wear-for-women","text":"Topwear"},{"link":"bottom-wear-for-women","text":"Bottomwear"},{"link":"bestsellers-for-women","text":"Bestsellers"}]},"mobile_covers":{"text":"Mobile Covers","list":[{"link":"mobile-covers-india","text":"All Mobile Covers"}]}},"updated_at":1534160829},"brand_description":{"value":{"apple":"\u003Ch2\u003EBecause when youve got an iPhone, youve gotta treat it like an iPhone!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EWhos your best friend? No need to tell us, because everyone knows its not some person, its actually your iPhone! Why? Well, because its an iPhone! And because the phone is as amazing as it is, youve got to protect it in the best way possible. No, we dont only mean super protective iPhone mobile cases, but also iPhone cases that add an edge to your style. Know what we are talking about? No? Well, take a look at the iPhone mobile covers available on the Bewakoof® store and pick your favourites today. We wont tell you to hurry, because you will wanting to flaunt these iPhone phone covers to everyone! \u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch2\u003ESmartphone style? Check! Only with Bewakoof®s range of iPhone cases!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EWhether you have been looking for cases for iPhone 5 or iPhone 6 covers, weve got something for every iPhone fan! Cool and durable, these matte finish \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Back Covers Online India'\u003Ephone cases\u003C\u002Fa\u003E are just what you need to your collection of iPhone accessories. Made of polycarbonate, these iPhone cases will make sure your phone remains protected from all kinds of accidents. Dont waste time, start investing in an iPhone cover for yourself and raise style standards for everyone around you! Time to make your iPhone happy!\u003C\u002Fp\u003E","samsung":"\u003Ch2\u003EStay stylish with Samsung!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EThere you have it, your brand new Samsung phone. Its sleek, shiny and all you ever wanted. You swear to protect it with all your life, because your phone is your new best friend. But what kind of best friend would you be if you didnt protect your phone? Theres no need to panic! What you need is a sturdy Samsung cover. A precious phone requires a precious \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy mobile phone covers Online India'\u003Emobile case\u003C\u002Fa\u003E, so why dont you drop by our Bewakoof® site? Doesnt matter which Samsung phone you have, we have Samsung covers for every model! These Samsung cases will not only protect your phone, but also provide it with a matte finish. Gone are the days where you waste time searching for the perfect Samsung phone case in a shop. Now all you have to do is go online, go to our Bewakoof® site and buy the Samsung cover you love the most!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch3\u003EStart a trend with our Samsung phone covers!\u003C\u002Fh3\u003E\n \u003Cbr\u003E\n \u003Cp\u003ECovers here, covers there, covers everywhere! Samsung covers are all over the place, which confuses you a lot. Which cover do you pick? The answer is simple! If youre looking for a cover that isnt common, Bewakoof® is the site to be at. Our designs are original and complete trendsetters! So dont waste time! Grab a Samsung phone cover to unleash your cool fashion sense!\u003C\u002Fp\u003E","xiaomi":"\u003Ch2\u003EBe exquisite with Xiaomi!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003ENothing says special more than a Xiaomi phone. A phone that you dont want to keep on the corner of a table, because if it falls youre absolutely screwed! You wouldnt want your screen cracked would you? Your smartphone is the most important thing to you and you must protect it with all youve got. And if all youve got doesnt involve a Xiaomi phone cover, then your phone is in danger! Time to grab a Xiaomi phone case to ensure that no harm comes to your phone! Weve got a whole new variety of Xiaomi covers up for grabs! Whether you love smoking weed, pretty flowers or quirky animals, weve got covers for them all! Explore your personality with a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Phone Cases Online India'\u003Emobile covers\u003C\u002Fa\u003E that celebrates you the way you are!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch2\u003EPhone covers at Bewakoof® are the best!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EOur Bewakoof® store provides you with covers that will make all your friends jealous! Our unique collection of Xiaomi Phone covers will make your phone a superstar! With our Bollywood inspired and Marvel superheroes-inspired covers, your phone will always stay trendy! Also, our matte Xiaomi covers give your phone a lovely texture that makes you want to hold your phone forever. Theres no wrong time to buy a cover, so grab a Xiaomi cases from Bewakoof® today!\u003C\u002Fp\u003E","huawei":"\u003Ch2\u003EA phone should show off your personality!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EDo you look at your phone and think, Where have you been all my life? Your phone is the best thing that ever happened to you and you want to spoil it with gifts. Something that makes your phone look good and takes care of it as well as you would. What could you buy out there that fits this description? A Huawei phone cover, thats for sure! Phone covers are all you need when it comes to decorating your phone. You need something that shows off your personality and fashion sense. Huawei covers will definitely dress your phone up and make it look good, but heres the issue. Where do you find good Huawei covers? Dont be silly, at Bewakoof® of course! Our online store has a wide range of Huawei coversthat are sure to make your phone shine like a star on its way to stardom!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch3\u003ECome be Bewakoof® with us!\u003C\u002Fh3\u003E\n \u003Cbr\u003E\n \u003Cp\u003EBeen searching for Huawei phone coversbut its all been in vain? Dont worry! At Bewakoof®, we have Huawei coversthat will make your phone look good and feel good too! How you ask? Well, weve got a collection of covers that are always on trend and they all have matte finish! So dont worry too much about finding the right cover. Youll find what you need right here!\u003C\u002Fp\u003E","oneplus":"\u003Ch2\u003EAdd on to your OnePlus smartphone appeal with a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy phone back cover Online India'\u003Ephone cover!\u003C\u002Fa\u003E\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EWhats the one smartphone brand no one can stop raving about? OnePlus, of course! And when you use an OnePlus phone, you dont have to worry about anything, because these smartphones are amazing to the core! But despite its sturdy design, you would want to protect your phone as much as possible, right? Well, say goodbye to scratches and stains on your smartphone, because weve got the most amazing collection of OnePlus mobile covers here at Bewakoof®. Styled with a matte finish, these OnePlus phone cases are the answers to all your smartphone protection problems!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch2\u003EWhen it comes to your OnePlus, weve got you cover-ed!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EGrace your smartphone with your favourite OnePlus phone cover from the Bewakoof® online store. Phone cases are the hottest tech essentials which gives you every reason to invest in some cool ones. With our range of OnePlus cases, you are sure to make an impression on everyone around you. From weed art to floral prints, from superheroes to Bollywood movies, this collection of phone cases will fulfill all your needs. And just in case you thought these cool phone covers wont protect your phone well, think twice! Made of polycarbonate, your phone is as safe as ever in an OnePlus cover from our online store. Get, set, shop!\u003C\u002Fp\u003E","oppo":"\u003Ch2\u003EBecause these phone cases deserve to cover your smartphone!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EWhats sleek, shiny, and smart? An Oppo smartphone! And youd want to protect your precious phone with something thats equally amazing, wouldnt you? Thats why we have the best range of Oppo mobile covers for you on our online store. These \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Cases Online'\u003Ephone cases\u003C\u002Fa\u003E are everything you need to flash your phone with maximum style. Get yourself an Oppo phone cover from our collection, snap it onto your phone and see how well it works for you. If youve been looking to add a wow factor to your already amazing Oppo phone, these mobile covers will do it for you! Snag your favourites from the line-up today!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch3\u003ELooking for Oppo phone cases? Bewakoof®s the way to go!\u003C\u002Fh3\u003E\n \u003Cbr\u003E\n \u003Cp\u003EAre you a Bollywood buff or are superheroes more your style? Do you like artsy stuff or are you all about that dope? Well, no matter what you are into, our Oppo covers have it all! At Bewakoof®, weve got the best line-up of Oppo phone covers for you to choose from. And no, these cases wont compromise on your phones protection! Made of sturdy polycarbonate, these matte finish Oppo phone cases will definitely protect your phone from unwanted accidents. Think you need to get your hands on one? Of course you do, so start shopping!\u003C\u002Fp\u003E","vivo":"\u003Ch2\u003EWhats cooler than a Vivo?!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003ELets face it, nothing in this world is as cool as your Vivo phone. Its got the right amount of swag and class combined, making it a phone that never goes out of style! A phone like this deserves nothing but the best accessories. The best earphones, the best charger and most importantly, the best Vivo phone cover! When your phone looks that good, you should strive for something even better! A plain phone doesnt describe you like a Vivo cover would. You need something that will represent your character. Do you have a good sense of humor? Try Bewakoof®s pun covers! Do you worship weed? Weve got loads of weed covers for you! Want ,a href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Best Phone Cases Online'\u003Ephone covers\u003C\u002Fa\u003E that are as cute as you are? Weve got cute Vivo covers too! Whatever it is youre looking for, youll find it on Bewakoof®s online store in no time!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch3\u003ENot only will your phone look good, it will feel good!\u003C\u002Fh3\u003E\n \u003Cbr\u003E\n \u003Cp\u003EBewakoof® does have really funky Vivo covers to choose from, but the best part is that all these Vivo covers have matte finish. They'll feel so good in your hand that you will never want to let go! If you want a phone that feels just as good as it looks, then youre looking for a Bewakoof® Vivo cover!\u003C\u002Fp\u003E","realme":"\u003Ch2\u003EYour new Realme smartphone deserves so much better!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EYouve got yourself an Realme mobile phone, and you know youre smart enough to make sure your smartphone is perfectly protected! No matter how careful you are, those damned phones somehow manage to fall and damage themselves. We feel your pain! Its also so difficult to find the kind of Realme mobile cover that is stylish and still dependable, so weve got you a stylish collection of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy printed back cover online India'\u003Emobile covers\u003C\u002Fa\u003E that youll never see anywhere else! Our online store has it all prints, artwork, plain colors, you name it!\u003C\u002Fp\u003E\n \u003Cbr\u003E\n \u003Ch2\u003EStep out of the mainstream with Realme phone covers!\u003C\u002Fh2\u003E\n \u003Cbr\u003E\n \u003Cp\u003EIf you find yourself wishing that you could get awesome phone covers for your awesome Realme phone, were just the website for you! No more traveling to obscure places to get your hands on a good and sturdy Realme mobile cover, because weve got the best range of matte finish phone covers at Bewakoof®! We believe in quality without compromising on trend, so your Realme mobile phone is going to be the eye candy wherever you are! Dont worry, weve got the most diverse set of Realme phone covers, and youre sure to find the right match for your Realme smartphone!\u003C\u002Fp\u003E","default":"\u003Ch2\u003EMobile Covers & Cases By Bewakoof®\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof® offers an exclusive range of stylish and trendy phone covers and cases. Bewakoof® has a wide variety of designs to choose from, so you can find the perfect cover or case to show off your personality. All of our covers and cases are made of high-quality materials that offer protection to your phone. So whether you're looking for a funky cover to show off your personality or a case to protect your phone from scratches and bumps, Bewakoof® has you covered!\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile Covers for Women\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EShop Stylish \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fgirlish-phone-covers'\u003Emobile covers for women\u003C\u002Fa\u003E from Bewakoof® and make a statement! Our collection of Mobile Covers for Women is designed with function and fashion in mind. These lightweight back covers come in a variety of colors and designs to match any outfit, from neutral tones to bright, vibrant colors. Protect your phone while looking great with our Mobile Covers for Women – they provide protection against dirt, dust and scratches, as well as protection from drops and bumps. So don’t settle for anything less – shop now for Mobile Covers for Women from Bewakoof® and stay stylish all day!\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EGet the perfect Mobile Cover that reflects your personality and style! Shop Now at Bewakoof®! With our wide range of stylish and rugged Mobile Covers for Women, you can find the perfect mobile cover that reflects your personality and style. Choose from a variety of colors and designs to match any outfit or mood. Whether you’re looking to make a statement or just want to protect your phone, our Mobile Covers for Women are a perfect choice.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile Covers for Men\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003ETired of using the same boring mobile cover? Then why not update your style with one of our trendy mobile covers for men from Bewakoof®! All our back covers are designed to protect your phone and feature vibrant, stylish designs that will make you stand out in the crowd. Whether you're looking for something subtle or eye-catching, you're sure to find something that fits your style in our collection of mobile covers for men.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile covers on Bewakoof®\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof® is an online store that offers a wide range of phone cases. Bewakoof® was founded in 2012 with the aim of providing high-quality and stylish mobile accessories at an affordable price. Bewakoof® has since grown to become one of the leading online retailers for mobile covers and cases in India.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof® offers a wide variety of designs and colours to choose from, so you can find the perfect cover or case for your phone.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhy choose Bewakoof® for your phone covers or cases?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EThere are several reasons why you should choose Bewakoof® for your phone case needs. Firstly, the company offers a wide range of designs and colours to choose from. Secondly, Bewakoof® covers and cases are made from high-quality materials, so you can be sure your phone is well protected. And finally, Bewakoof® offers great value for money – you won’t find better quality back covers and cases at a better price anywhere else.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat are some of the most popular phone covers and case designs on Bewakoof®?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003ESome of the most popular mobile back covers designs from Bewakoof® include the following:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cul\u003E \u003Cli\u003E\u003Cstrong\u003EMarble\u003C\u002Fstrong\u003E: This is a sleek and stylish design that is perfect for those who want to add a touch of class to their phone.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EQuotes\u003C\u002Fstrong\u003E: This is a great design for those who want to express themselves with their phone cover or case. You can choose from a wide range of quotes, or even add your own personal message.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EFunky Designs\u003C\u002Fstrong\u003E: This is a great design for those who want to add some fun and personality to their phone. The covers are made of high-quality silicone and are available in a range of fun and are available in a range of fun and funky designs.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EPop Culture\u003C\u002Fstrong\u003E: \u003Cstrong\u003ETrendy mobile covers\u003C\u002Fstrong\u003E that are in hype amongst the youth and are stylish. They often have the latest designs and patterns.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ESporty\u003C\u002Fstrong\u003E: Sporty mobile covers are those designed for people who lead an active lifestyle. They often have designs that reflect this, such as sports teams or athletes.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EPlain\u003C\u002Fstrong\u003E: Plain mobile covers are those which do not have any patterns or designs. They are often available in a variety of solid colours.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EAbstract\u003C\u002Fstrong\u003E: Abstract mobile covers are those which feature abstract designs or patterns. These can be geometric, floral, or anything else that is not easily identifiable.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EPatterned\u003C\u002Fstrong\u003E: Patterned mobile covers are those which feature repeating patterns. These can be geometric or any other type of design.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EFloral\u003C\u002Fstrong\u003E: Floral mobile covers are those which feature flower designs. These can be real or artificial flowers and often have a soft look.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ENature\u003C\u002Fstrong\u003E: Nature mobile covers are those which feature designs inspired by nature. These can include animals, plants, landscapes, or anything else that is found in nature.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ETypography\u003C\u002Fstrong\u003E: Typography mobile covers are those which feature text as the primary design element. This can be your name, a quote, or anything else that you want to showcase.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EArt\u003C\u002Fstrong\u003E: Art mobile covers are those which feature artwork as the primary design element. This can be a painting, photograph, or any other type of art that you want to showcase.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EVintage\u003C\u002Fstrong\u003E: Vintage mobile covers are those which feature designs from a specific era. These can include patterns, colours and styles that are associated with a particular time period.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ERetro\u003C\u002Fstrong\u003E: Retro mobile covers are those which feature designs that are inspired by the past. These can include patterns, colours and styles that are associated with a particular time period.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EModernistic\u003C\u002Fstrong\u003E: Modern mobile covers are those which feature contemporary designs. These can include clean lines, simple shapes, and muted colours.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ELuxury\u003C\u002Fstrong\u003E: Luxury mobile covers are those which feature high-end materials and finishes. These can include leather, metal or anything else that gives a cover a luxurious look and feel.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003E3D Designer Covers\u003C\u002Fstrong\u003E: 3D designer covers are one of the most popular types of phone cases on the market. They offer a unique look that can really set your phone apart from the rest.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003ELED Covers\u003C\u002Fstrong\u003E: Bewakoof® has a range of LED covers for your mobile phone. The LED light-up feature is also great for taking Selfies in low light conditions, or for simply finding your phone in the dark. With a Bewakoof® LED cover, your mobile will always stand out from the crowd!\u003C\u002Fli\u003E\u003Cbr\u003E\u003C\u002Ful\u003E\u003Ch2\u003EHow to buy a mobile back cover or case from Bewakoof®?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBuying a mobile case from Bewakoof® is easy! Simply browse our range of designs, select the one you like, and add it to your cart. Once you’ve made your purchase, we will deliver your back cover or case straight to your door.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat are the benefits of using mobile phone covers or cases?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cul\u003E\u003Cli\u003E\u003Cstrong\u003EAbsolute Protection\u003Cem\u003E –\u003C\u002Fem\u003E\u003C\u002Fstrong\u003E Accidents are unpredictable, and there is absolutely no way to stop or save your phone from falling. It is pretty evident that every person tends to make faults at least once in their lifetime, so it is better to have a preventable strategy at any moment. A mobile cover must be purchased of better quality just like the Bewakoof®'s mobile cases\u003Cstrong\u003E \u003C\u002Fstrong\u003Eto conserve it from any external damage such as drops, dirt, dust, etc. \u003Cstrong\u003EStylish Mobile covers \u003C\u002Fstrong\u003Ealso help by securing the mobile from scratches. It acts as a safe home, maintaining the phone as considerably as possible. \u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EAesthetic Appearance\u003Cem\u003E – \u003C\u002Fem\u003E\u003C\u002Fstrong\u003EWho doesn't like aesthetic looks? Mobile covers take the smartphone's aesthetics to an extraordinary level. \u003Cstrong\u003EMobile cases \u003C\u002Fstrong\u003Ehave dual advantages here; it makes sure to keep the phone fully safe and secure and give the best appearance. Bewakoof®'s covers will surely make your phone look better than ever as the unique designs give a particular essence to the phones. \u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EPersonalization\u003Cem\u003E-\u003C\u002Fem\u003E\u003C\u002Fstrong\u003E Are you someone who is a fan of their design and tastes? Having a smartphone without a mobile cover ultimately means restricting yourself to one look until you change the phone itself. We have mobile cases in different models, colors, and designs for more versatility and unique appearances. One must purchase these if they are a huge fan of color coordinating the phone with the dress code they wear and look unique and different each time they go out. Moreover, there are many services available where you can even personalize the \u003Cstrong\u003Emobile back covers\u003C\u002Fstrong\u003E according to your taste and terms like color, picture, design, etc.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EBoosts Functionality\u003Cem\u003E - \u003C\u002Fem\u003E\u003C\u002Fstrong\u003EThe days are gone when phone covers were only used to protect the device. Even though the primary purpose is to protect the phone from several external damages, the style quotient comes as an added benefit here. Bewakoof® has amped up the covers by including cardholding slots, which enhances the functioning of the cover.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EAdditional reselling value \u003Cem\u003E- \u003C\u002Fem\u003E\u003C\u002Fstrong\u003EWhen you are guessing about upgrading your phone, then you would get more deals for your phone if you tend to keep it safeguarded with a mobile cover, making sure that your phone is as new as you bought it. So while reselling, your phone will be defended from all kinds of damages, scratches, and dust particles that might get into your phone.\u003C\u002Fli\u003E\u003Cbr\u003E \u003Cli\u003E\u003Cstrong\u003EPocket-Friendly\u003Cem\u003E - \u003C\u002Fem\u003E\u003C\u002Fstrong\u003ENowadays, phones are much more used than telephones and not just for calling but also for various purposes. Smartphones nowadays come with edged glasses, glass bodies, and dual camera lenses, and they are not just ordinary devices but much more than that. The advanced technologies and multiple purposes of phones often come with a heavy price tag, so it might not hurt to spend a little more to protect your mobile if any accident occurs. If you are looking for budget-friendly \u003Cstrong\u003Eprinted mobile covers\u003C\u002Fstrong\u003E, you are at the right place, so what are you waiting for? Go and buy yours now!!\u003C\u002Fli\u003E\u003Cbr\u003E\u003C\u002Ful\u003E\u003Ch2\u003EHow To Choose The Perfect Mobile Case For Your Phone?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EWhen choosing a phone cover or case, it’s important to consider your needs and preferences. Firstly, decide what type of material you would like your cover or case to be made from. Bewakoof® offers covers and cases made from hard plastic, soft silicone or even glass.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003ESecondly, think about the design you would like. Bewakoof® offers a wide range of designs to choose from, so you can find the perfect one to suit your personality and style.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EAnd finally, consider the price. Bewakoof® offers great value for money, so you can be sure you’re getting a high-quality cover or case at a great price.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat Are The Different Types of Mobile Covers available at Bewakoof®?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EThe types of mobile covers available at Bewakoof® are hardcovers, glass covers and 3D designer covers are some of the options that you can choose from. Each type of cover has its own set of features and benefits. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EHard Covers\u003C\u002Fstrong\u003E: Bewakoof® has a wide variety of hardcovers for your phone. We have cases for all popular phone models including \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fapple-cases-back-covers' title='Buy iPhone Cases Online'\u003EiPhone\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fsamsung-cases-back-covers' title='Buy Samsung covers Online'\u003ESamsung\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fxiaomi-cases-back-covers' title='Buy Xiaomi Covers Online'\u003EXiaomi\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Foneplus-cases-back-covers' title='Buy OnePlus Covers Online'\u003EOnePlus\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Frealme-cases-back-covers' title='Buy Realme Covers Online'\u003ERealme\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Foppo-cases-back-covers' title='Buy Oppo Covers Online'\u003EOppo\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fvivo-cases-back-covers' title='Buy Vivo Covers Online'\u003EVivo\u003C\u002Fa\u003E and more. Our hardcovers are made of durable materials that will protect your phone from scratches, bumps, and drops. You can choose from a variety of designs and colours to find the perfect case for your style. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EGlass Covers\u003C\u002Fstrong\u003E: \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof®\u003C\u002Fa\u003E is one of the leading online stores for glass covers and cases for your mobile phones. We offer a wide range of glass covers and cases for all popular phone models at unbeatable prices. Our glass covers and cases are made from high-quality tempered glass and offer perfect protection to your phone from scratches, bumps and drops. They are also very easy to install and remove. So, if you are looking for a durable, stylish, and affordable glass cover or case for your mobile phone, then Bewakoof® is the right place for you. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003ESilicon Covers\u003C\u002Fstrong\u003E: Silicon covers are one of the most popular \u003Cstrong\u003Ephone cases\u003C\u002Fstrong\u003E on the market today. They are known for their durability and ability to protect your phone from scratches and other damage. Bewakoof® offers a variety of silicon covers to choose from, in a variety of colours and designs. Whether you're looking for a plain case or something with a bit more personality, Bewakoof® has you covered. Silicon covers are made from a durable material that is designed to withstand everyday wear and tear. They are also scratch resistant, so you can rest assured that your phone will look as good as new for many years to come. In addition to protection, silicon covers also add a bit of style to your phone. With so many colours and designs to choose from, you can find a case that reflects your personal taste. Whether you prefer a sleek and simple design or something more fun and funkier, Bewakoof® has the perfect silicon cover for you. So what are you waiting for? Head over to Bewakoof® today and check out our selection of silicon covers! You won't be disappointed.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EMobile covers are one of the most versatile products with multipurpose uses. Bewakoof® has a great collection of covers in many different models and designs which include Official Collaborations like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title=Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise' title=DC Comics Merchandise Online'\u003EDC\u003C\u002Fa\u003E & more along with simple aesthetic designs for travelers, foodies, music lovers, and so on. Explore these ranges and shop your favorites on Bewakoofbsp;\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EPopular Categories:\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cspan style='font-weight: 400;'\u003EMobile Covers\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foversized-t-shirts-for-men'\u003E\u003Cspan style='font-weight: 400;'\u003EOversized T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcustom-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003ECustom T-Shirts\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ET-Shirt For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-hoodies-sweatshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EHoodies For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fanime-collection'\u003E\u003Cspan style='font-weight: 400;'\u003EAnime T- Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-printed-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EPrinted T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-flip-flops'\u003E\u003Cspan style='font-weight: 400;'\u003ESliders\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EShirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-full-sleeve-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EFull Sleeve T-Shirt For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-co-ord-sets'\u003E\u003Cspan style='font-weight: 400;'\u003ECoord Set Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foversized-t-shirts-for-women'\u003E\u003Cspan style='font-weight: 400;'\u003EOversized Shirts For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-joggers'\u003E\u003Cspan style='font-weight: 400;'\u003EJoggers For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ET-Shirts For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcasual-shoes'\u003E\u003Cspan style='font-weight: 400;'\u003EShoes\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmens-denim'\u003E\u003Cspan style='font-weight: 400;'\u003EJeans For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-jackets'\u003E\u003Cspan style='font-weight: 400;'\u003EJacket For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-boyfriend-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EBoyfriend T-Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcouple-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ECouple T-Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-sliders'\u003E\u003Cspan style='font-weight: 400;'\u003ESlides For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-hoodies-sweatshirts'\u003E\u003Cspan style='font-weight: 400;'\u003ESweatshirt For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shorts'\u003E\u003Cspan style='font-weight: 400;'\u003EShorts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-plain-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EPlain T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomens-denims'\u003E\u003Cspan style='font-weight: 400;'\u003EJeans For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fclogs'\u003E\u003Cspan style='font-weight: 400;'\u003EClogs For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-sliders'\u003E\u003Cspan style='font-weight: 400;'\u003ESlippers For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-full-sleeves-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EFull Sleeve T-Shirt For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-sweaters'\u003E\u003Cspan style='font-weight: 400;'\u003ESweater For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-co-ord-sets'\u003E\u003Cspan style='font-weight: 400;'\u003ECoord Set Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-pants'\u003E\u003Cspan style='font-weight: 400;'\u003ETrousers For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003ERelated Categories:\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003Cp\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-back-covers-cases'\u003EiPhone 15 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-13-back-covers-cases'\u003EiPhone 13 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-back-covers-cases'\u003EiPhone 14 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fanime-phone-cases'\u003EAnime Phone Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s23-5g-back-covers-cases'\u003ESamsung Galaxy s23 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-11r-5g-back-covers-cases'\u003EOnePlus 11R Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-plus-back-covers-cases'\u003EiPhone 15 Plus Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-pro-back-covers-cases'\u003EiPhone 15 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-11-back-covers-cases'\u003EiPhone 11 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-12-back-covers-cases'\u003EiPhone 12 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-plus-back-covers-cases'\u003EiPhone 14 Plus Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s21-fe-5g-back-covers-cases'\u003ESamsung Galaxy S21 FE Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-a34-5g-back-covers-cases'\u003ESamsung Galaxy A34 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-12-mini-back-covers-cases'\u003EiPhone 12 Mini Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-ce-3-5g-back-covers-cases'\u003EOnePlus Nord CE 3 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-ce-3-lite-5g-back-covers-cases'\u003EOnePlus Nord CE 3 Lite Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-xr-back-covers-cases'\u003EiPhone XR Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-pro-back-covers-cases'\u003EiPhone 14 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-a14-5g-back-covers-cases'\u003ESamsung Galaxy A14 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-2-back-covers-cases'\u003EOnePlus Nord 2 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s20-fe-back-cover-cases'\u003ESamsung Galaxy S20 FE Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-13-pro-back-covers-cases'\u003EiPhone 13 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s22-5g-back-covers-cases'\u003ESamsung S22 5G Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s23-ultra-5g-back-covers-cases'\u003ESamsung S23 Ultra Back Covers\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-back-covers-cases'\u003EOnePlus Nord Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-2t-5g-back-covers-cases'\u003EOnePlus Nord 2T 5G Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fnothing-phone-1-back-covers-cases'\u003ENothing Phone 1 Cover\u003C\u002Fa\u003E\u003C\u002Fp\u003E"},"updated_at":1718338750},"referral_program":{"value":{"tribe_referrer_amount":125,"non_tribe_referrer_amount":100,"referee_amount":100,"max_referral_amount":5000,"max_referrals":50,"qualifying_amount_for_referral":299},"updated_at":1620896358},"loyalty_program":{"value":{"heading":"Get the TriBe Membership &","title":"Never Pay Full Price Again","description":"Select a plan below -","checked":true,"image":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black.png","image_member":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-white.png","image_small":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black-1565083628.png","statements":["Member Only Discounts","Priority Support & Early Access to Collections."],"loyalty_products":[{"h":"3 Months TriBe Membership","sh":"Membership valid till 3 months","btn":"BUY NOW","product_size_id":557307,"name":"3 months","price":"99"},{"h":"12 Months TriBe Membership","sh":"Membership valid till a year.","btn":"BUY NOW","product_size_id":431056,"name":"12 months","price":"299"}]},"updated_at":1609440543},"loyalty_program_v2":{"value":{"heading":"Get the TriBe Membership &","title":"Never Pay Full Price Again","description":"Become a TriBe Member now!","checked":true,"image":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black.png","image_member":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-white.png","image_small":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black-1565083628.png","statements":{"heading":"TriBe Benefits","body":[{"heading":"Member Only Discounts","body":"Save on every purchase! Enjoy special prices on a wide range of product categories"},{"heading":"Priority Support","body":"Get all your queries resolved on a priority basis, only for TriBe members"},{"heading":"Early Access to Collections","body":"Grab the latest products and exclusive collections before everyone else"}]},"cart_data":{"heading":"Save more with TriBe Membership on every order","body":"Currently, TriBe membership is only available on PREPAID purchases."},"note":"Your new membership plan will start once your current membership ends","free_product":{},"renew_membership_button":{"url":"tribe","text":"Renew Membership"},"loyalty_products":[{"id":557307,"h":"3 Months TriBe Membership","sh":"Membership valid till 3 months.","btn":"BUY NOW","renew_btn":"RENEW NOW","product_size_id":557307,"name":"3 months","price":"₹ 129"}]},"updated_at":1699611547},"loyalty_program_v3":{"value":{"title":[{"text":"Bewakoof Tri","style":{"color":"white","fontFamily":"montserrat-bold"}},{"text":"Be","style":{"color":"black","fontFamily":"montserrat-bold","backgroundColor":"#fdd835"}}],"logo_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FTribe-logo-1603774847.png","sub_heading":{"sub_heading_text":"Join TriBe to enjoy","sub_heading_style":{"fontFamily":"montserrat-regular","fontSize":"11px","color":"rgba(255, 255, 255, 0.7)"},"benefits":[["Guaranteed Savings","Free Shipping","Early Access"]],"benefit_style":{"fontFamily":"montserrat","fontSize":"11px","color":"white"}},"background_image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fline-tribe-component-1603774846.png","products":[{"product_size_id":557307,"name":"3 Months","price":129,"old_price":299,"checked":true,"cta_text":"Get 3 Months TriBe","style":{"backgroundColor":"#fdd835","color":"white","fontFamily":"montserrat-bold"},"tags":{"text":"Popular","style":{"backgroundColor":"#1da25b","color":"white"}}}],"cta_details":{"backgroundColor":"#42a2a2","color":"white"},"auto_renewal_details":{"text":"Your Membership now gets automatically renewed on the last day of active plan.","image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frefresh-1-copy-2-2x-1621349564.png","cancel_text":"Cancel anytime","know_more_text":"Know more"},"about_auto_renewal":{"header":"About Auto-Renewal","values":[{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-17-2x-1621360784.png","text":"Currently available only on purchase of TriBe Membership via \u003Cstrong\u003EUPI payment\u003C\u002Fstrong\u003E"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftick-mark-2x-1621360754.png","text":"Account will be charged on the last day of your active plan"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-16-2x-1621360723.png","text":"Renewed plan will be same as the latest active plan and cannot be changed"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcancel-2-2x-1621360686.png","text":"Cancel auto-renewal \u003Cstrong\u003Eanytime\u003C\u002Fstrong\u003E from your TriBe Membership page"}]},"tribe_flow_data":{"join_tribe":{"heading":"Join Bewakoof TriBe for just","sub_heading":"We want you to never miss out on best deals.","only":"only","amount":129,"button_txt":"Join Tribe","arrow_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FArrow.svg","close_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FXCircle.svg"},"cart_popup":{"know_more":"KNOW MORE","know_more_action":"\u002Ftribe","plan_select":"Select Your Plan","sub_txt":"You get the discounted price for items in your bag when you check out with Tribe Membership","btn_txt":"Swipe to Add","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FyellowBackground.svg","arrow_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FCaretRight.svg","pdp_head_question":"You know what's awesome?","pdp_head_answer":"You get the discounted price for items in your bag when you check out with Tribe Membership"},"awesome_nudge":{"awesome_txt":"Awesome!","heading":"You made a great decision","sub_heading":"Your Tribe Membership has been added to the bag","btn_txt":"continue shopping","btn_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Fcontinue_shopping_btn.png","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeAwesomeBack.png","awesome_gif":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeAwesomeGif.gif"},"tribe_added":{"heading":"You have already added TriBe to your bag","sub_heading":"Checkout with TriBe Plan and we will make sure you get the discounts","icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeMember.svg"},"tribe_toggle":{"tribe_logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftxt-tribe-logo-v1.png","toggle_on":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Ftoggle_active.png","toggle_off":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Ftoggle_inactive.png","members":"Exclusive","non_members":"Prices OFF"},"tap_to_see":{"tap_txt":"Tap to see Tribe Prices","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftap-to-see-bg-v1.png"},"product_offer":{"offer_txt":"\u003Cp\u003ETri\u003Cspan\u003EBe\u003C\u002Fspan\u003E\u003C\u002Fp\u003E Price","offer_sub_txt":"Add TriBe to cart to claim discount","offer_button_txt":"Get TriBe","offer_arrow_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FArrow.svg"},"tribe_saving":{"heading":"Wohoo! you are saving extra on this item with TriBe","ragular_price":"Regular Price","saving_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeSaving.svg"},"tribe_added_nudge":{"header_title":"Tri\u003Cspan\u003EBe\u003C\u002Fspan\u003E","header_subtitle":"for plan months","thanks_header":"Awesome ! Let the savings begin","thanks_subheader":"TriBe has been added to your bag","icon_close":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-mb-f-cross.svg","icon_check_bubble":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-check-bubble.svg","partition_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-tribe-partition.svg"}},"payment_trust":{"display_config":{"pdp":{"show_mobile":true,"show_desktop":true},"plp":{"show_mobile":true,"show_desktop":false,"row_count":3},"cart":{"show_mobile":true,"show_desktop":true}},"image_desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fpayment-trust-banner-desktop.svg","image_mobile":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPayment-trust-banner.svg"}},"updated_at":1715601733},"loyalty_page":{"value":{"lazyLoad":"true,","offset":100,"metaTitle":"Bewakoof TriBe Membership Offer | Never Pay Full Price - Bewakoof","metaDescription":"Become a TriBe Member and Get member only discount, priority customer support, exclusive collections and early access to our exclusive products. Free Shipping, COD Available.","store_images":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F","topBanner":{"heading":"Introducing","desktop":"logo-tribe-white.png","mobile":"logo-tribe-white.png","subHeading":"We promise that you will never pay full price and stay trendy.","button":"JOIN TODAY","alt":"Tribe Logo"},"secondBanner":{"desktop":"tribe-revised-1569866376.jpg","mobile":"tribe-revised-1569866376.jpg","alt":"Tribe Logo"},"pickaplan":{"heading":"Pick A Plan"},"whySection":{"desktop":"group-5-2x-1564994888.png","mobile":"group-5-2x-1564994888.png","alt":"Tribe Logo"},"whySectionold":{"heading":"Why join our TriBe?","reasons":[{"text":"Member Special Pricing","desktop":"special-price-icon-1564489815.png","mobile":"special-price-icon-1564489815.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"},{"text":"Priority Shipping & Support","desktop":"shipment-icon-1564489815.png","mobile":"shipment-icon-1564489815.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"},{"text":"Exclusive Collections & Early Access","desktop":"shopping-bag-icon-1564489816.png","mobile":"shopping-bag-icon-1564489816.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"}]},"memberOnly":{"heading":"Member Only Discounts","desktop":"special-price-icon-1564489815.png","mobile":"special-price-icon-1564489815.png","alt":"Tribe Logo"},"savings":{"heading":"TriBe savings","desktop":"price-comp--1564480272.gif","mobile":"price-comp--1564480272.gif","alt":"Tribe Logo"},"offersBox":null,"otherBenefitsBox":{"desktop":"plus-sign-2x.png","mobile":"plus-sign-2x.png","alt":"Tribe Logo","heading":"Other Benefits","pointers":["Free Shipping on All Orders","Exclusive Collections & Early Access"]},"faqs":{"heading":"Frequently Asked Questions","list":[{"question":"How do I become a TriBe member?","answer":"Joining the TriBe is simple. Follow the link given below and simply add your TriBe membership plan to your cart. Proceed to make your payment online. Your TriBe membership will be activated once your payment is successful. You will receive a welcome email confirming your membership.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Ca href='\u002Ftribe'\u003EJoin the TriBe\u003C\u002Fa\u003E"},{"question":"Can I upgrade my TriBe Membership plan?","answer":"Currently we do not have an upgrade option but you can simply renew your TriBe membership for a longer term at the time of renewal."},{"question":"Can I cancel my TriBe membership?","answer":"You can opt out of the TriBe any time. However, please note that we do not offer any refunds on the TriBe membership itself."},{"question":"What is the free shipping benefit available with the Tribe membership?","answer":"You'll get free shipping on each & every order you place with us as an exclusive benefit with your Tribe membership. Awesome, right?"},{"question":"How do I get the TriBe member prices on products?","answer":"Once you are a TriBe member the special pricing is automatically applied to your bag. Please ensure that you are logged in from the registered member account."},{"question":"Can I use COD as a TriBe member?","answer":"Yes, you can use COD to purchase your favourite products unless otherwise indicated.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EPlease note that while purchasing the TriBe membership itself you will need to make your payment online and COD will not be applicable on that particular order."},{"question":"Can I use other promo codes with my TriBe membership?","answer":"Our team will communicate special promo codes for members as and when they are available."},{"question":"Will my TriBe membership auto renew?","answer":"No, currently we do not have an auto renew option for our TriBe memberships."},{"question":"Do I need to save my card details with Bewakoof to become a TriBe member?","answer":"No, you do not need to save a card with us to become a TriBe member. However, please note that you will have to pay online while purchasing the TriBe membership itself. Subsequent orders can be paid online or as COD."}]}},"updated_at":1610595946},"campaign_offers":null,"disclaimer":{"value":{"html":"\u003Cdiv style='line-height: normal; background: #ffecd3; border: 1px solid #ffd9a6; border-radius: 4px; padding: 10px; position: relative; float: left; font-size: 10px; margin-bottom: 10;'\u003E\u003Cimg style='float: left; width: 20px; margin-right: 6px;' src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fwarning-2x.png' \u002F\u003E\u003Cdiv style='float: left; font-family: montserrat-bold, sans-serif; width: 90%;margin: 0;'\u003E\u003Ch6 style='margin: 0;font-size: 10px;'\u003ECaution:\u003C\u002Fh6\u003E\u003Cp style='font-family: montserrat, sans-serif; margin: 0; padding-top: 5px;'\u003EBewakoof.com employees will never ask for your credentials like \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003EBewakoof password, OTP, Credit\u002FDebit card number\u003C\u002Fstrong\u003E and \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003ECVV\u003C\u002Fstrong\u003E or any other confidential information. \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003E\u003Cbr \u002F\u003EPlease do not share these details with anyone.\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003C\u002Fdiv\u003E\u003C\u002Fdiv\u003E"},"updated_at":1566391662},"facebook_likes":{"value":{"count":"4.7M"},"updated_at":1577442275},"instagram_count":{"value":{"count":"1M"},"updated_at":1577442361},"coin_filters_urls":{"value":{"title":"Only show products with Bewakoof Coins applicable","filters":{"filter":null},"tooltip":"\u003Cdiv\u003E\u003Ch3 style='margin-bottom:10px'\u003ERedeem Bewakoof Coins\u003C\u002Fh3\u003E\u003Chr style='background-color: #fdd835; border: 0.5px solid #fdd835; width: 105px; float :left; display: block; margin:0; box-shadow: none'\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-bottom:10px;'\u003EEnable this option to only see products on which you can redeem your Bewakoof Coins.\u003C\u002Fspan\u003E\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-top: 14px;'\u003ELook for the\u003Cimg src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png' alt='info' style='width:16px; vertical-align:bottom;'\u003E on the products to identify which products are eligible for Bewakoof Coins redemption.\u003C\u002Fspan\u003E\u003C\u002Fdiv\u003E","web_tooltip":"\u003Cdiv\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-bottom:10px;'\u003EEnable this option to only see products on which you can redeem your Bewakoof Coins.\u003C\u002Fspan\u003E\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-top: 14px;'\u003ELook for the\u003Cimg src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png' alt='info' style='width:16px; vertical-align:bottom;'\u003E on the products to identify which products are eligible for Bewakoof Coins redemption.\u003C\u002Fspan\u003E\u003C\u002Fdiv\u003E","conditions":{"whitelisted_urls":[],"blacklisted_urls":["design-of-the-day","factory-outlet-men","factory-outlet-women","the-factory-outlet","lucky-size","last-sizes-left-for-women","last-sizes-left-for-men","bewakoof-coins-collection","bewakoof-coins-collection-for-men","bewakoof-coins-collection-for-women","men-small-t-shirts","men-medium-t-shirts","men-large-t-shirts","men-xl-t-shirts","men-xxl-t-shirts","men-3xl-t-shirts","official-collaborations-collection\u002Fgender-men","official-collaborations-collection\u002Fgender-women","women-small-t-shirts","women-medium-t-shirts","women-large-t-shirts","women-xl-t-shirts","women-xxl-t-shirts","women-3xl-t-shirts"],"default_enabled":true,"min_wallet_amount":1,"max_wallet_amount":1000,"min_product_length":3}},"updated_at":1604134586},"communications":{"value":{"bewakoof_coins":{"icon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png","title":"What are Bewakoof coins?","sub_title":"Bewakoof Coins can be used while shopping on non-discounted products only.","button":{"txt":"Continue Shopping","url":"https:\u002F\u002Fwww.bewakoof.com"}},"whatsapp_toggle":{"text":"I want to receive order updates on Whatsapp","information_text":"Allow us to send updates via WhatsApp for order related communications. \u003Cbr\u002F\u003E \u003Cb\u003EWe do not use WhatsApp for promotional purposes\u003C\u002Fb\u003E","enabled":true}},"updated_at":1596630191},"mobile_covers":{"value":{"title":"Mobile Covers","object_type":"mobile covers","exclude":"","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","right_imgs":[{"src":"mobile-cover-dropdown-box-1558161466.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 8A Dual","url":"xiaomi-redmi-8a-dual-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Prime","url":"xiaomi-redmi-9-prime-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9","url":"xiaomi-redmi-note-9-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X2","url":"xiaomi-poco-x2-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 8A","url":"xiaomi-redmi-8a-back-covers-cases","params":{"qf":false}},{"title":"Mi A3","url":"xiaomi-mi-a3-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7s","url":"xiaomi-redmi-note-7-s-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco F1","url":"xiaomi-poco-f1-back-covers-cases","params":{"qf":false}},{"title":"Redmi 6 Pro","url":"xiaomi-redmi-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 5","url":"xiaomi-redmi-note-5-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 8 Pro","url":"oneplus-8-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 8","url":"oneplus-8-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"iPhone 12","url":"iphone-12-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS MAX","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Samsung Galaxy F41","url":"samsung-galaxy-f41-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M01","url":"samsung-galaxy-m01-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M11","url":"samsung-galaxy-m11-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A21s","url":"samsung-galaxy-a21s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A31","url":"samsung-galaxy-a31-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A71","url":"samsung-galaxy-a71-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 Lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A70","url":"samsung-galaxy-a70-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M30s","url":"samsung-galaxy-m30s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A10","url":"samsung-galaxy-a10-back-covers-cases","params":{"qf":false}},{"title":"Galaxy A50","url":"samsung-a50-back-covers-cases","params":{"qf":false}},{"title":"Galaxy M20","url":"samsung-galaxy-m20-back-covers-cases","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Realme 7","url":"realme-7-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 7 PRO","url":"realme-7-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6i","url":"realme-6i-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme X2","url":"realme-x2-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6 Pro","url":"realme-6-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6","url":"realme-6-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme XT","url":"realme-xt-back-covers-cases","params":{"qf":false}},{"title":"Realme 5 Pro","url":"realme-5-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 5","url":"realme-5-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme X","url":"realme-x-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y50","url":"vivo-y50-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo S1 Pro","url":"vivo-s1-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V17","url":"vivo-v17-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V9","url":"vivo-v9-back-covers-cases","params":{"qf":false}},{"title":"Vivo Z1x","url":"vivo-z1x-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y91","url":"vivo-y91-back-covers-cases","params":{"qf":false}},{"title":"Vivo z1 Pro","url":"vivo-z-1-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y17","url":"vivo-y-17-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y91i","url":"vivo-y91i-back-covers-cases","params":{"qf":false}},{"title":"Vivo V15","url":"vivo-v15-back-covers-cases","params":{"qf":false}},{"title":"Vivo V5","url":"vivo-v5-back-cover-cases","params":{"qf":false}},{"title":"Vivo V15 Pro","url":"vivo-v15-pro-back-covers-cases","params":{"qf":false}}]}]},{"title":"OTHER BRANDS","children":[{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Oppo F15","url":"oppo-f15-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A9 2020","url":"oppo-a9-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno2","url":"oppo-reno-2-back-covers-cases","params":{"qf":false}},{"title":"Oppo F11","url":"oppo-f-11-back-covers-cases","params":{"qf":false}},{"title":"Oppo A7","url":"oppo-a7-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5S","url":"oppo-a5s-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3S","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]}]}]},"updated_at":1617202444},"international_config":{"preferred_location":"IN","is_international_user":false,"all_countries":{"countries":{"IN":{"country":"India","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-round-1639566913.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-india-sm.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-india.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"IN","phone_code":"+91"},"AE":{"country":"UAE","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-round-1639566914.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-uae.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"AE","phone_code":"+971"},"US":{"country":"USA","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fusa-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FUS.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-usa.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"US","phone_code":"+1"},"CA":{"country":"Canada","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcanada-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-canada.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"CA","phone_code":"+1"},"TH":{"country":"Thailand","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fthailand-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-thailand.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"TH","phone_code":"+66"},"MY":{"country":"Malaysia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fmalaysia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-malaysia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"MY","phone_code":"+60"},"AU":{"country":"Australia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Faustrialia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-australia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"AU","phone_code":"+61"},"OM":{"country":"Oman","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Foman-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-oman.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"OM","phone_code":"+968"},"QA":{"country":"Qatar","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fqatar-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-qatar.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"QA","phone_code":"+974"},"SA":{"country":"Saudi Arabia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fsaudi-arabia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-saudi-arabia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"SA","phone_code":"+966"},"SG":{"country":"Singapore","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fsingapore-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-singapore.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"SG","phone_code":"+65"}},"popupData":{"popupIcon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fonline-shopping-1632488124.svg","popupTitle":"I'm shopping for delivery in"},"otherCountryData":{"text":"Looks like we don't deliver to your country, yet. Tell us where you'd want Bewakoof to reach :)","thanksMsg":"Thanks for the feedback! We hope to serve you soon :)"},"deliveryNudge":{"allow_country_change":true,"cta":"Change","backgroundColor":"#e8f3e5"},"login_banner":{"IN":{"mobile_site":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frm-login-mobile-v1.jpg","desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-19-1617704502.png","app":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frm-login-mobile-v1.jpg"},"AE":{"mobile_site":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Flogin-banner-revised-l1-1631021843.jpg","desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-19-1617704502.png","app":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Flogin-banner-revised-l1-1631021843.jpg"}},"shipping_strip":{"url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fmob-banner-global-shipping.jpg","height":32,"enabled":false}}},"bottom_navigation":{"value":{"tabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fhome-3x-1635760383.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-home-tab-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-home-tab-selected-v1.svg","tabTitle":"Home","trackingTag":"home_bn","href":"\u002F"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcategories-3x-1635760335.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-category-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-category-selected-v1.svg","tabTitle":"Categories","trackingTag":"categories_bn","href":"\u002Fcategories"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FExplore-selected-Artboard-10-1637645044.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-explore-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-explore-selected-v1.svg","tabTitle":"Explore","trackingTag":"explore_bn","href":"\u002Fexplore"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FProfile-icon-1635926346.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-profile-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-profile-selected-v1.svg","tabTitle":"Profile","trackingTag":"account_bn","href":"\u002Fmyaccount"}],"RNTabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F005-home-2x-1598588800.png","tabTitle":"Home","trackingTag":"home_bn","href":"\u002F","isLoginRequired":false,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"home","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-home-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-home.png","fontColor":"#808080"},"url":"","isWebView":true},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F006-menu-2x-1598588827.png","tabTitle":"Categories","trackingTag":"categories_bn","href":"\u002Fcategories","isLoginRequired":false,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"categories","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-categories-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-categories.png","fontColor":"#808080"},"url":"categories","isWebView":true},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F004-heart-2x-1598588623.png","tabTitle":"Wishlist","trackingTag":"wishlist_bn","href":"\u002Fwishlist"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F009-user-2x-1598588872.png","tabTitle":"Profile","trackingTag":"account_bn","href":"\u002Fmyaccount","isLoginRequired":true,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"profile","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-profile-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-profile.png","fontColor":"#808080"},"url":"myaccount","isWebView":true}],"BShotsTabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-home-unselected-1633698423.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-home-selected-1633698729.png","tabTitle":"Home","key":"home","trackingTag":"home_bn","isSelected":true,"href":"\u002Fbshots","bottom_nav_bg":"#1f0926","selected":{"color":"#FFF","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-shop-unselected-1633701083.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-shop-selected-1633700959.png","tabTitle":"Shop","trackingTag":"shop_bn","key":"shop","href":"\u002Fshop\u002Fcampaign\u002Fbshots-shop","bottom_nav_bg":"white","selected":{"color":"#1f0926","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-profile-unselected-1633698834.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-profile-selected-1633698608.png","tabTitle":"Account","key":"account","trackingTag":"account_bn","href":"\u002Fmyaccount","isLoginRequire":true,"bottom_nav_bg":"white","selected":{"color":"#1f0926","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}}],"version":"v1"},"updated_at":1718091293},"flash_sale":{"value":{"flash_sale_widget":{"enabled":true,"urls":["flash-sale"],"widget_product_ids":[545573,417959,493240,364956,512926,467455,493175,479819,536331,536336,536347],"mobile":[{"components":[{"name":"FlashSaleWidget","props":{"style":"::host{\n\n}\n::host img{\npadding:0;\n}","enabled":true,"bgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fflash-sale-widget-03-1685944946.png","timerBgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-deal-tag.png","height":231,"width":360,"flashSaleImg":"","discountImg":"","exploreTitle":"","exploreTitleColor":"Black","exploreLink":"","startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-17T06:30:00.615Z","timerTextColor":"#FFFFFF","timerTextShadow":"1px 1px 0 green","saleTitle":"Discounted prices valid only for","saleTitleColor":"#000000","saleSubTitle":"*No returns applicable","saleSubTitleColor":"#000000","makeStickyOnScroll":true,"minimizeOnScroll":false,"stickyBgColor":"#f1f1f1 !important","stickyTimerColor":"#FFFFFF","stickyTimerTextShadow":"1px 1px 0 #ffffff"}}]}],"desktop":[{"components":[{"name":"FlashSaleWidget","props":{"style":"::host{\n\n}\n::host img{\nwidth:100%;padding:0;\n}","enabled":true,"bgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fflash-sale-widget-03-1685944946.png","height":400,"width":1440,"flashSaleImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-logo.png","discountImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-s-sale-logo.png","exploreTitle":"","exploreTitleColor":"black","exploreLink":"","timerBgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-deal-tag.png","startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-17T06:30:00.615Z","timerTextColor":"#fffff","timerTextShadow":"1px 1px 0 yellow","saleTitle":"Discounted prices valid only for","saleTitleColor":"#ffffff","saleSubTitle":"*No returns applicable","saleSubTitleColor":"#ffffff","makeStickyOnScroll":true,"minimizeOnScroll":false}}]}],"app":[]},"flash_sale_data":{"startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-17T06:30:00.615Z","show_timer":true,"show_flash_tag":true,"category_page":{"title":"Flash Sale Price","show_timer":true,"timer_title":"Ends in"},"pdp_page":{"title":"Flash Sale Price Ends In","flash_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-flash-timer-logo.png","show_timer":true,"timer_title":"Ends in"},"cart_page":{"title":"Flash Sale Price","show_timer":true,"timer_title":"Ends in"}}},"updated_at":1718518501},"aicanvas":{"value":{"images":["https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-01.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-02.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-03.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-04.png"],"product_mapping":{"men":{"regular":596648,"oversized":620626},"women":{"regular":605545,"oversized":625974,"boyfriend":627995}},"styleHeading":[{"heading":"Background","value":"background"},{"heading":"Color Palette","value":"color_palette"}],"background":[{"title":"No Background","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNo-Background.webp","index":1},{"title":"Mountainous","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FMountainous.webp","index":2},{"title":"Forest","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FForest.webp","index":3},{"title":"Beach","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBeach.webp","index":4},{"title":"Desert","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FDesert.webp","index":5},{"title":"Underwater Coral Reef","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FUnderwater-Coral-Reef.webp","index":6},{"title":"City Skyline","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCity-Skyline.webp","index":7},{"title":"Oldtown","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FOldtown.webp","index":8},{"title":"Futuristic","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FFuturistic.webp","index":9},{"title":"Park","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPark.webp","index":10},{"title":"Ancient ruins","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FAncient-ruins.webp","index":11},{"title":"Sunny countryside","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FSunny-countryside.webp","index":12},{"title":"Tropical Island","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FTropical-Island.webp","index":13}],"color_palette":[{"title":"No Color","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNo-color.webp","index":1},{"title":"Black and White","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBlack---White.webp","index":2},{"title":"Bright and Bold","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBright---Bold.webp","index":3},{"title":"Cool Blues and Greens","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCool-Blues---Greens.webp","index":4},{"title":"Desert and Hues","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FDesert-Hues.webp","index":5},{"title":"Earth Tones","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FEarth-Tones.webp","index":6},{"title":"Gold Silver and Bronze","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FGold--Silver---Bronze.webp","index":7},{"title":"Natural Greens","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNatural-Greens.webp","index":8},{"title":"Neon and Vibrant","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNeon-and-Vibrant.webp","index":9},{"title":"Ocean Blues","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FOcean-Blues.webp","index":10},{"title":"Pastel Tones","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPastel-Tones.webp","index":11},{"title":"Rainbow Spectrum","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FRainbow-Spectrum.webp","index":12},{"title":"Primary Colors (Red, Yellow, Blue)","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FRed--yellow--blue.webp","index":13},{"title":"Sunset Shades","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FSunset-Shades.webp","index":14},{"title":"Warm Red & Oranges","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FWarm-Red---Oranges.webp","index":15}],"user_limit":40,"acknowledgementText":"I understand that this AI Model might make mistakes and deliver inaccurate results. I take responsibility for the results generated, and confirm that it is an original image that does not violate the rights of any person, organization or entity.","promptPlaceholder":["Giraffe lounging on a beach chair with sunglasses and a coconut drink","Astronaut baking cookies in outer space"],"loaderQoutes":["A T-shirt is your chance to shout your quirks - without saying a word 😋","Your T-shirt is your personal billboard - keep it witty 😜","Let your T-shirt do the talking, so you can focus on better things 😎","With our custom T-shirts, make your wardrobe as unique as yourself 🥰"],"promptTitle":"Enter Your Image Description Here","aiStylesTitle":"Add AI Effects","pdpTnC":["As the product is custom printed, the order cannot be returned, exchanged or canceled.","Only pre-paid orders will be accepted.","Images generated by the AI Model might be inaccurate","The customer takes responsibility for the images generated and used via prompts entered by them","The customer confirms that it is an original image that does not violate the rights of any person, organization or entity and does not contain images that violate the rights of children."],"x-user-emails":["mohammed.s@bewakoof.com","maheshkumaran112@gmail.com","manjunathts@gmail.com","anurag.g@bewakoof.com","anurock.pin2@gmail.com","sahil.m@bewakoof.com","aamir.a@bewakoof.com"],"x-user-limit":5000},"updated_at":1717486733},"pdp_attributes":{"value":{"backend_attributes_flag":"true","attributes":{"t-shirt":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"hoodies":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"top":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"jacket":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"sweatshirt":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"sweater":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"vest":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"kurtas":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"henleys":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"cargos":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"joggers":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"pyjama":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"jeans":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"shorts":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"boxer":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"trousers":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"track_pant":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"casual_pants":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"pant":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"flip_flops_&_sliders":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"sliders":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"clogs":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"casual_shoes":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"caps":{"design":"Design","material":"Material","occasion":"Occasion","fabric_care":"Wash Care"},"hat":{"design":"Design","material":"Material","occasion":"Occasion","fabric_care":"Wash Care"},"backpack":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"},"sling_bag":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"},"fanny_bag":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"}}},"updated_at":1715802978},"faq_plp":{"value":{"faq_header":"Frequently asked questions","show_item_list":false,"data":[{"url":"men-loose-t-shirts","faq":[{"question":"What sizes are available for men's loose t-shirts at Bewakoof.com?","answer":"We offer a wide range of sizes for our men's loose t-shirts. Please refer to our size chart to find your perfect fit."},{"question":"Can I return or exchange a loose t-shirt if it doesn't fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your loose t-shirt doesn't fit, you can easily return or exchange it as per our policy guidelines."},{"question":"Do you offer different colors and designs in men's loose t-shirts?","answer":"Yes, we offer a variety of colors and designs, including plain t-shirts for men, printed loose t-shirts, and more. Explore our collection to find your favorites."},{"question":"Are the loose t-shirts suitable for all seasons?","answer":"Our loose cotton t-shirts are made from breathable fabric, making them suitable for all seasons. Layer them up for cooler weather or wear them as is during warmer months."},{"question":"How should I wash my loose t-shirt to maintain its quality?","answer":"To maintain the quality of your loose t-shirt, wash it in cold water with similar colors and tumble dry on low. Avoid using bleach and do not dry clean. For specific care instructions, always check the label on your garment."},{"question":"Are there any offers or discounts available when buying men's loose t-shirts?","answer":"Yes, we often run offers and discounts on our products. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals for men's loose t-shirts and more."},{"question":"Is it possible to track my order after purchasing a loose t-shirt?","answer":"Absolutely! Once you've made a purchase, you will receive an order confirmation with a tracking number. You can use this number to track your order's progress until it arrives at your doorstep."},{"question":"Does Bewakoof.com offer loose t-shirts for men in sustainable or eco-friendly materials?","answer":"We are committed to sustainability and offer a selection of loose t-shirts for men made from eco-friendly materials. Look for our sustainable range to shop with an environmental conscience."},{"question":"How often does Bewakoof.com update its collection of men's loose t-shirts?","answer":"Our collection is constantly updated to ensure you have access to the latest trends and styles. Check back often to see new arrivals and seasonal updates to our range of men's loose t-shirts."}]},{"url":"one-piece-merchandise","faq":[{"question":"What types of Garfield T-shirts & Merchandise are available on Bewakoof.com?","answer":"We offer a wide range of Garfield T-shirts and merchandise, including graphic tees, hoodies, and accessories featuring your favorite Garfield designs."},{"question":"Where can I buy One Piece T-Shirts online?","answer":"You can buy a wide range of One Piece T-Shirts online at Bewakoof.com. We offer various designs, including graphic prints and oversized fits."},{"question":"Do you have different styles of One Piece T-Shirts?","answer":"Yes, we have a variety of styles including full sleeve, oversized, and graphic printed T-Shirts. You can explore our diverse range here."},{"question":"Are there One Piece T-Shirts available for both men and women?","answer":"Absolutely! We offer One Piece T-Shirts for both men and women."},{"question":"Can I find oversized One Piece T-Shirts on Bewakoof.com?","answer":"Yes, we have a selection of oversized One Piece T-Shirts. You can find them in various colors and designs."},{"question":"How do I know what size to order for One Piece T-Shirt?","answer":"We provide a detailed size guide on our product pages to help you choose the right fit."},{"question":"What is the price range for One Piece T-Shirts?","answer":"The prices vary depending on the design and style of the T-Shirt. You can find affordable options and premium designs on our website. Browse our collection to see the different price ranges available here."},{"question":"Do you offer any discounts or promotions on One Piece T-Shirts?","answer":"Yes, we frequently have discounts and promotions on our One Piece T-Shirts. Keep an eye out for special deals on our website or sign up for our newsletter to stay updated on the latest offers."},{"question":"What materials are the One Piece T-Shirts made from?","answer":"Our One Piece T-Shirts are made from high-quality cotton and cotton blends, ensuring comfort and durability. Each product page provides specific details about the materials used."},{"question":"How can I care for my One Piece T-Shirt to ensure it lasts long?","answer":"To keep your One Piece T-Shirt in the best condition, we recommend washing it inside out in cold water, using mild detergent, and avoiding bleach. Tumble dry on low or hang dry to maintain the print and fabric quality."}]},{"url":"men-crochet-shirts","faq":[{"question":"Are there different designs available for men's crochet shirts on Bewakoof?","answer":"Yes, Bewakoof offers a wide range of designs for men's crochet shirts. You can find various patterns, colors, and styles to suit your personal preferences."},{"question":"What sizes are available for crochet shirts for men on Bewakoof?","answer":"Bewakoof provides crochet shirts for men in a variety of sizes, ranging from small to extra-large, ensuring a perfect fit for everyone."},{"question":"How do I care for my crochet shirt to ensure its longevity?","answer":"To maintain the quality and longevity of your crochet shirt, it is recommended to hand wash it with mild detergent and lay it flat to dry. Avoid wringing or twisting the fabric to prevent damage."},{"question":"Can I return or exchange my crochet shirt if it doesn't fit? ","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your crochet shirt doesn't fit, you can easily return or exchange it within the specified period. Please refer to our return policy for more details."},{"question":"Are there any discounts available for first-time buyers?","answer":"Bewakoof often provides special discounts and offers for first-time buyers. Keep an eye on our website or subscribe to our newsletter to stay updated on the latest deals."}]},{"url":"garfield-merchandise","faq":[{"question":"What types of Garfield T-shirts & Merchandise are available on Bewakoof.com?","answer":"We offer a wide range of Garfield T-shirts, Hoodies, Mobile Covers, including graphic prints, oversized fits, and various colors. You can find both men's and women's styles, as well as unisex options."},{"question":"How can I buy a Garfield T-shirt online at Bewakoof.com?","answer":"Purchasing a Garfield T-shirt is easy! Simply browse our selection, choose your favorite design, select your size, and add it to your cart. Proceed to checkout, fill in your shipping details, and complete the payment process. Start shopping here."},{"question":"Are there oversized Garfield T-shirts available?","answer":"Yes, we have several oversized Garfield T-shirts available. For example, you can find options like the Men's Pink Friday Garfield Graphic Printed Oversized T-shirt and the Women's Lavender Rock Garfield Graphic Printed Oversized T-shirt."},{"question":"Do you have Garfield Merchandise for both men and women?","answer":"Absolutely! We have a variety of Garfield T-shirts & Merchandise for both men and women."},{"question":"Are there any special designs or quotes on the Garfield T-shirts?","answer":"Yes, our Garfield T-shirts feature unique designs and quotes. For instance, the Men's Green Whatever Garfield Graphic Printed T-shirt and the unisex \"Do I Look Like I Care?\" T-shirt are some of the popular choices."},{"question":"Can I find Garfield T-shirts in different colors?","answer":"Yes, our Garfield T-shirts come in various colors. From pink and green to classic white and lavender, you can find a wide range of colors to suit your style. Explore our full range of colors by visiting our Garfield T-shirt collection here."},{"question":"What sizes are available for Garfield T-shirts?","answer":"We offer Garfield T-shirts in a variety of sizes, ranging from XS to XXL. To ensure the perfect fit, refer to our size guide available on each product page. If you have any specific size questions, feel free to contact our customer support."},{"question":"How can I be sure of the quality of the Garfield T-shirts on Bewakoof.com?","answer":"We take pride in offering high-quality products. Our Garfield T-shirts are made from premium fabrics that are soft, durable, and comfortable to wear. Customer reviews and ratings on each product page can also provide insights into the quality."},{"question":"What is the return policy for Garfield Merchandise?","answer":"If you're not satisfied with your purchase, you can return the Garfield Merchandise within 15 days of delivery. The item should be unused, and in its original condition with all tags attached. For more details, visit our return policy page."}]},{"url":"men-plain-t-shirts","faq":[{"question":"What type of plain t-shirts for men are available at Bewakoof?","answer":"We offer a wide range of plain t-shirts for men, including crew neck, V-neck, and polo styles. Our collection features various colors and sizes to suit your preferences and needs."},{"question":"Are the plain t-shirts made from high-quality material?","answer":"Yes, our plain t-shirts are crafted from high-quality materials like 100% pure cotton, ensuring a soft and comfortable fit. We prioritize quality to provide you with durable and stylish apparel."},{"question":"How can I find the right size for my plain t-shirt?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. Measure yourself and compare your measurements with our size guide to choose the right size."},{"question":"How do I buy plain t-shirts for men?","answer":"Buying plain t-shirts for men on Bewakoof.com is easy! Browse our collection, select your preferred style, color, and size, and add the items to your cart. Proceed to checkout, fill in your details, and complete the payment process."},{"question":"Do you offer any discounts or promotions on plain t-shirts?","answer":"Yes, we frequently offer discounts and promotions on our men plain t-shirts. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"Is it safe to shop plain t-shirts online from Bewakoof.com?","answer":"Yes, shopping online at Bewakoof.com is completely safe. We use secure payment gateways and encryption to protect your personal and payment information."},{"question":"What payment methods do you accept for online purchases?","answer":"We accept various payment methods, including credit\u002Fdebit cards, net banking, UPI, and popular digital wallets. You can choose the most convenient option for you during checkout."},{"question":"How much time does it take to deliver plain t-shirts after I place an order?","answer":"Delivery times can vary from location to location, but we typically process and ship orders within 1-3 business days. Once shipped, you can expect your plain t-shirt for men to arrive within 5-7 business days. You will also receive a tracking number to monitor your order's progress."},{"question":"Can I track my order after purchasing a plain t-shirt online?","answer":"Yes, once your order is shipped, we will email you a tracking number. You can use this number to track your order's status and estimated delivery time through our delivery partner's website."}]},{"url":"nasa-merchandise","faq":[{"question":"What types of NASA t-shirts can I find at Bewakoof.com?","answer":"At Bewakoof, we offer a wide range of NASA t-shirts for both men and women. Our collection includes graphic printed t-shirts, slogan tees, and mission-specific designs that celebrate various NASA milestones. You can find short-sleeve, long-sleeve, and even hoodie options in our NASA merchandise lineup."},{"question":"How do I choose the right size NASA t-shirt when shopping online?","answer":"To choose the right size, refer to our detailed size chart available on each product page. Measure your chest, waist, and hips, and compare these measurements with the chart to find your perfect fit."},{"question":"Can I buy official NASA merchandise from Bewakoof?","answer":"Yes, you can! Bewakoof offers officially licensed NASA merchandise. Our products are designed to meet quality standards and feature authentic NASA logos and designs."},{"question":"Are there any special care instructions for NASA t-shirts?","answer":"To keep your NASA t-shirts looking their best, we recommend washing them inside out in cold water with similar colors. Avoid using bleach and opt for a gentle cycle. Tumble dry on low heat or hang them to dry."},{"question":"How can I stay updated on new NASA merchandise releases?","answer":"To stay updated on new arrivals and exclusive NASA merchandise, sign up for our newsletter. You can also follow us on our social media channels for the latest updates and special offers."},{"question":"How long does it take to deliver my NASA t-shirt order?","answer":"Delivery times may vary based on your location. Typically, orders are processed and shipped within 1-2 business days. You can expect to receive your order within 5-7 business days after it has been shipped."},{"question":"Can I return or exchange my NASA t-shirt if it doesn't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your NASA t-shirt doesn't fit or meet your expectations, you can return or exchange it within 15 days of delivery. Ensure that the item is unworn, unwashed, and in its original condition with all tags attached. Visit our returns and exchanges page for more details on how to initiate the process."},{"question":"Are there any discounts or offers available on NASA merchandise?","answer":"We frequently offer discounts and special promotions on our NASA merchandise. To take advantage of these deals, check our website regularly or subscribe to our newsletter."},{"question":"Can I track my NASA t-shirt order after it has been shipped?","answer":"Yes, once your order has been shipped, you will receive a tracking number via email. You can use this tracking number to monitor the status of your shipment on our website or through the courier's tracking portal."}]},{"url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","faq":[{"question":"How durable are the OnePlus Nord CE 3 Lite covers available on Bewakoof.com?","answer":"\u003Cp\u003EThe OnePlus Nord CE 3 Lite cover we offer are made of impact-resistant, hard plastic which is extremely durable. They are designed to protect your phone from everyday bumps and scratches while maintaining a slim profile.\u003C\u002Fp\u003E"},{"question":"Can I access all buttons and ports with the covers on?","answer":"\u003Cp\u003EYes, all of our OnePlus Nord CE 3 covers are designed to provide easy access to all standard buttons and ports. The covers are crafted to ensure that they do not hinder the usability of your device.\u003C\u002Fp\u003E"},{"question":"Is it safe to buy OnePlus Nord CE 3 Lite cover online on Bewakoof?","answer":"\u003Cp\u003EAbsolutely! Shopping online at Bewakoof is safe and secure. We offer a seamless shopping experience with easy payment options and a hassle-free return policy if you are not satisfied with your purchase.\u003C\u002Fp\u003E"},{"question":"What makes Bewakoof.com a good choice for buying OnePlus Nord CE 3 Lite mobile cover?","answer":"\u003Cp\u003EWe are known for our trendy and affordable products. When you buy OnePlus Nord CE 3 Lite back covers from us, you are choosing from a collection that is not only stylish but also offers great protection for your device. \u003C\u002Fp\u003E"},{"question":"How often does Bewakoof.com update its OnePlus Nord CE 3 Lite cover collection?","answer":"\u003Cp\u003EWe regularly update our collection to ensure that we are offering the latest trends and styles. Keep an eye on our website for new designs and collections that are added frequently.\u003C\u002Fp\u003E"},{"question":"How can I find the perfect OnePlus Nord CE 3 Lite cover for me on Bewakoof.com?","answer":"\u003Cp\u003EYou can easily browse through our extensive collection by using the search and filter features on our website. You can filter by themes, colors, and designs to find a cover that matches your personal style and preferences.\u003C\u002Fp\u003E"},{"question":"Are there any exclusive benefits for members when buying OnePlus Nord CE 3 Lite Cases?","answer":"\u003Cp\u003EYes, if you join our Tribe Membership, you can enjoy exclusive benefits such as additional discounts, early access to sales, and more. It's our way of showing appreciation to our loyal customers.\u003C\u002Fp\u003E"},{"question":"Can I customize my OnePlus Nord CE 3 Lite cover on Bewakoof.com?","answer":"\u003Cp\u003ECurrently, we offer a wide range of pre-designed covers that you can choose from. We do not offer customization options at the moment, but we are always looking to expand our offerings based on customer feedback.\u003C\u002Fp\u003E"},{"question":"How can I take care of my OnePlus Nord CE 3 Lite cover to ensure it lasts long?","answer":"\u003Cp\u003ETo maintain the appearance and integrity of your OnePlus Nord CE 3 Lite cover, we recommend keeping it away from extreme temperatures and direct sunlight. Clean it with a soft, dry cloth to remove dust and avoid using harsh chemicals or abrasive materials.\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-12-5g-back-covers-cases","faq":[{"question":"Can I find Redmi Note 12 5G back covers within my budget at Bewakoof.com?","answer":"Absolutely! Our Redmi Note 12 5G covers are competitively priced, and we frequently offer deals and discounts to make our products even more affordable."},{"question":"Is it safe to buy Redmi Note 12 5G back cases online at Bewakoof.com?","answer":"Yes, shopping at Bewakoof.com is safe. We use secure payment methods and ensure that your personal and financial information is protected."},{"question":"What if I'm not satisfied with my Redmi Note 12 5G cover?","answer":"We offer a straightforward return and exchange policy. If you're not satisfied with your purchase, you can return it within the specified period for a refund or exchange."},{"question":"How long will it take to deliver my Redmi Note 12 5G back cover?","answer":"Delivery times can vary based on your location and the availability of the product. Once you place an order, you will be provided with an estimated delivery date. Bewakoof.com strives to deliver products as quickly as possible."},{"question":"Are there any additional charges for shipping when buying a Redmi Note 12 5G back case?","answer":"Shipping charges, if any, will be clearly mentioned at the time of checkout. Sometimes, we offer free shipping promotions, so keep an eye out for those to save on delivery costs."},{"question":"How can I find the right Redmi Note 12 5G back cover for me on Bewakoof.com?","answer":"Shipping charges, if any, will be clearly mentioned at the time of checkout. Sometimes, we offer free shipping promotions, so keep an eye out for those to save on delivery costs."}]},{"url":"sneakers-for-men","faq":[{"question":"How do I find the right size when I buy sneakers for men online?","answer":"We recommend measuring your foot length and comparing it with our size chart available on the product page. This helps ensure you select the right size when you shop online."},{"question":"Can I return or exchange my sneakers if they don't fit?","answer":"Absolutely! We offer easy returns and exchanges. If your sneakers don't fit, you can return or exchange them within the specified return period. Please check our return policy for more details."},{"question":"Are there any special care instructions for maintaining my sneakers?","answer":"Yes, to keep your sneakers for men looking fresh, we suggest cleaning them with a soft brush and mild detergent. Avoid machine washing unless specified. Detailed care instructions are provided with each product."},{"question":"How long does delivery take when I shop for men's sneakers online?","answer":"Delivery times vary based on your location. Typically, it takes 3-7 business days for your sneakers to arrive. You can track your order through the link provided in your confirmation email."},{"question":"What payment methods are accepted when buying sneakers for men online?","answer":"We accept various payment methods, including credit cards, debit cards, net banking, UPI, and popular e-wallets. Choose the option that suits you best at checkout."},{"question":"Are there any benefits to creating an account before I shop for sneakers?","answer":"Creating an account allows you to track your orders, save your favorite items, and enjoy a faster checkout process. Plus, you'll receive updates on exclusive offers and new arrivals."},{"question":"How do I know if the sneakers I want to buy are in stock?","answer":"The availability status is shown on the product page. If a size or color is out of stock, you can sign up for notifications to be alerted when it becomes available again."},{"question":"Are there any special offers for first-time buyers?","answer":"Yes, we often have special promotions for first-time buyers. Keep an eye on our homepage or subscribe to Bewakoof's newsletter to stay updated on the latest offers."},{"question":"How do I track my order once I've purchased men's sneakers online?","answer":"After placing your order, you'll receive a confirmation email with a tracking link. Use that link to monitor the status of your delivery in real time."},{"question":"How often do you update your sneakers collection?","answer":"We regularly update our sneakers collection to bring you the latest trends and styles. Check back often or follow us on social media to stay informed about new arrivals."}]},{"url":"men-pants","faq":[{"question":"WHAT TYPES OF TROUSERS FOR MEN CAN I BUY ON BEWAKOOF?","answer":"You can buy a variety of men's pants on Bewakoof, including cotton pants and casual pants in various designs and styles to suit your fashion needs."},{"question":"HOW DO I KNOW WHICH SIZE TO CHOOSE WHEN SHOPPING FOR MEN PANTS ONLINE AT BEWAKOOF.COM?","answer":"Bewakoof provides a detailed size chart for all clothing items. Make sure to measure yourself and compare it with the size chart on the product page to find the perfect fit for you."},{"question":"IS IT SAFE TO MAKE PAYMENTS ONLINE ON BEWAKOOF.COM?","answer":"Absolutely, making payments on Bewakoof.com is safe. We use secure payment gateways to ensure that your transaction details are protected."},{"question":"HOW OFTEN DOES BEWAKOOF UPDATE ITS COLLECTION OF TROUSERS AND PANTS FOR MEN?","answer":"We frequently update our collection with the trendiest designs and styles. Keep an eye on our website or subscribe to our newsletter for the latest updates."},{"question":"CAN I FIND PLUS-SIZE PANTS FOR MEN ON BEWAKOOF.COM?","answer":"Yes, Bewakoof.com is inclusive and offers a huge variety of plus-size pants for men. You can find pants in larger sizes, ensuring that there's something for everyone."},{"question":"HOW CAN I TRACK MY ORDER AFTER PURCHASING TROUSERS FOR MEN ON BEWAKOOF?","answer":"Once your order is placed, you can track it by logging into your account on Bewakoof.com. There, you'll find the tracking information and updates on the delivery status of your purchase."},{"question":"WHAT MATERIALS ARE THE TROUSERS AND PANTS ON BEWAKOOF MADE OF?","answer":"Trousers for men on Bewakoof are made from a variety of materials, including but not limited to cotton, denim, and synthetic blends. Each product page details the material used, so you can choose according to your preference and comfort."},{"question":"HOW LONG DOES IT TAKE FOR TROUSERS FOR MEN TO BE DELIVERED AFTER I ORDER THEM ONLINE FROM BEWAKOOF?","answer":"Delivery times may vary based on your location and the availability of the pants. Generally, we process orders within a few days, and the estimated delivery time will be provided at checkout."}]},{"url":"men-shirts","faq":[{"question":"How do I know my size when shopping for shirts online at Bewakoof.com?","answer":"You can refer to the size guide provided on each product page, which includes measurements and size recommendations to help you find the perfect fit."},{"question":"Is it safe to buy shirts for men online from Bewakoof.com?","answer":"Absolutely. Bewakoof.com uses secure payment gateways and ensures that your personal and payment information is kept confidential and safe."},{"question":"What kind of men shirts can I find when I shop at Bewakoof.com? ","answer":"Our online collection ranges from casual to formal, solid to printed, and everything in between. We have a shirt for every personality and occasion. Just browse, select, and buy the styles that suit you best."},{"question":"What should I look for when I buy a shirt online to ensure it's good quality? ","answer":"When you shop online, check the product details for information on fabric, fit, and care instructions. At Bewakoof.com, we provide detailed descriptions so you can buy with confidence, knowing you're getting top-quality shirts."},{"question":"Are there any benefits to buying men's shirts online as a Bewakoof.com TriBe member? ","answer":"Yes, TriBe members enjoy exclusive benefits when they shop online with us. From special discounts to early access to new launches buy your shirts for men from Bewakoof.com and reap the rewards of being a TriBe member."}]},{"url":"women-pajamas","faq":[{"question":"What types of women's pyjamas can I buy at Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, you can find a variety of women's pajamas that suit your comfort and style. We offer a range of cute Cotton Pyjamas for women with cool prints and quirky designs, perfect for lounging or a cozy night's sleep.\u003C\u002Fp\u003E"},{"question":"Can I find pyjama for women for different seasons on Bewakoof.com?","answer":"\u003Cp\u003EAbsolutely! We cater to all seasons by offering a variety of pyjamas made from different materials. Whether you need something light and breathable for the summer or something warmer for the winter.\u003C\u002Fp\u003E"},{"question":"How do I know which size to choose when buying pyjamas?","answer":"\u003Cp\u003EWe have a detailed size guide available on our product pages. For instance, if you're looking at our Bewakoof Women Pyjama, you'll find a size chart that will help you select the perfect fit based on your measurements.\u003C\u002Fp\u003E"},{"question":"Can I find women's plus-size pajamas on Bewakoof.com? ","answer":"\u003Cp\u003EYes, we believe in catering to all body types. You can find a range of plus-size pajamas that offer both comfort and style. Just filter the size option to 'plus size' when browsing our women's pajamas section.\u003C\u002Fp\u003E"},{"question":"Are there any offers or discounts when buying women's pyjamas online at Bewakoof.com?","answer":"\u003Cp\u003EWe often run promotions and discounts on our products. To stay updated on offers for women's pajamas, make sure to sign up for our newsletter, check our offers page, and follow us on social media.\u003C\u002Fp\u003E"},{"question":"How can I style my Bewakoof's pajama for a casual day out?","answer":"\u003Cp\u003EWhile our women's pajamas are designed for comfort at home, you can certainly style them for a casual day out. \u003C\u002Fp\u003E"},{"question":"Is there a return policy for women's pajamas bought on Bewakoof.com?","answer":"\u003Cp\u003EYes, we have a customer-friendly return policy. If you're not satisfied with your purchase, you can return it within a specific period. For more details, you can visit our contact us page where we provide information on our return and exchange policies.\u003C\u002Fp\u003E"},{"question":"Are the colors of the pyjamas shown on the website accurate?","answer":"\u003Cp\u003EWe strive to display our products as accurately as possible, but screen resolutions and settings can sometimes affect how colors appear online. Rest assured, we make every effort to ensure the colors you see are as close to the actual product as possible.\u003C\u002Fp\u003E"}]},{"url":"black-panther-merchandise","faq":[{"question":"What types of Black Panther T-shirts are available?","answer":"We offer a variety of Black Panther T-shirts, including graphic prints, jerseys, and super loose-fit styles."},{"question":"Can I buy Black Panther T-shirts online?","answer":"Yes, you can shop Black Panther T-shirts online through our website."},{"question":"What sizes are available for Black Panther T-shirts on Bewakoof?","answer":"Bewakoof offers a range of sizes for our Black Panther T-shirts, from small to extra-large, ensuring there's an option for everyone."},{"question":"Can I customize my own Black Panther Merchandise","answer":"If you're looking for personalized Black Panther Merchandise, we also offer custom t-shirt printing services at affordable prices."},{"question":"What is the material of the Black Panther T-shirts?","answer":"Bewakoof's Black Panther T-shirts are made from high-quality, breathable cotton, ensuring comfort and durability."},{"question":"How do I care for my Black Panther T-shirt?","answer":"To keep your Black Panther T-shirt in great condition, we recommend washing it inside out with cold water and tumble drying on low heat. Avoid using bleach or ironing directly on the print."},{"question":"What is the return policy for Black Panther T-shirts?","answer":"We offer a hassle-free return policy. If you're not satisfied with your purchase, you can return the Black Panther T-shirt within 30 days of delivery for a full refund or exchange, provided it is in its original condition."},{"question":"Can I track my order?","answer":"Yes, once your order is shipped, you will receive a tracking number via email, allowing you to monitor the delivery status of your Black Panther T-shirt."}]},{"url":"men-vests","faq":[{"question":"What types of vests for men are available on Bewakoof.com?","answer":"Bewakoof.com offers a variety of men's vests, including gym vest, sleeveless vest, and casual vests suitable for everyday wear. They come in various designs and styles to cater to different preferences."},{"question":"Can I find gym vests for men on Bewakoof.com?","answer":"Yes, you can find a wide range of gym vests for men on Bewakoof.com. These vests are designed to provide comfort and style during your workout sessions."},{"question":"How do I choose the right size for a men's vest?","answer":"To choose the right size for a men's vest, refer to the size guide provided on the product page. Make sure to measure your chest and compare it to the size chart to find the best fit."},{"question":"Can I buy sleeveless vest for men on Bewakoof.com?","answer":"We have a selection of sleeveless vests for gents that are perfect for layering or wearing on their own during warmer weather."},{"question":"Is online shopping for men vests secure on Bewakoof.com?","answer":"Shopping online on Bewakoof.com is secure. We offer a safe shopping experience with secure payment options for purchasing men's vests and other apparel."},{"question":"Does Bewakoof.com offer easy returns or exchanges on men's vest?","answer":"Bewakoof.com has a return and exchange policy in place for men's vests. If you're not satisfied with your purchase, you can return or exchange the product within a specified period, as long as it meets the return criteria detailed on the website."},{"question":"How long does delivery take for men's vests ordered from Bewakoof.com?","answer":"Delivery times for men's vests can vary depending on your location and the availability of the product. Estimated delivery times are provided at checkout and on the product page."},{"question":"Are there any discounts or offers available when buying vest for men?","answer":"We frequently run discounts and offers on our products. To stay updated on the latest deals on men vests and other apparel, it's recommended to check the website regularly or sign up for our newsletter."}]},{"url":"samsung-galaxy-s21-back-covers-cases","faq":[{"question":"What types of Samsung S21 covers are available at Bewakoof.com?","answer":"Bewakoof.com offers a wide range of Samsung S21 covers, including stylish, protective, and durable designs. We have options like silicone cases, hard cases, and back cases to suit different preferences and needs."},{"question":"Are there any unique designs available for Samsung S21 covers at Bewakoof.com?","answer":"We are known for our unique and trendy designs. You can find a variety of unique designs for Samsung S21 back covers that stand out."},{"question":"How can I find the perfect fit for my Samsung Galaxy S21 cover on Bewakoof.com?","answer":"You can easily select the right fit for your Samsung Galaxy S21 cover by browsing through the dedicated section for Samsung S21 covers on Bewakoof.com and checking the compatibility in the product descriptions."},{"question":"Is the Samsung S21 back cover from Bewakoof.com durable? ","answer":"Yes, the covers available on Bewakoof.com are designed to be both stylish and durable, offering protection for your device."},{"question":"How often does Bewakoof.com update its collection of Samsung S21 back covers?","answer":"We frequently update our inventory with new designs and styles. Keep an eye on our website or subscribe to our newsletter for the latest updates on new arrivals for Samsung S21 mobile covers."},{"question":"Are there any discounts or sales on Samsung S21 back covers at Bewakoof.com?","answer":"We often run discounts and sales on our products. To take advantage of current deals on Samsung S21 covers, check out our website's offers section or sign up for our newsletter."},{"question":"How can I get in touch with customer service for questions about Samsung S21 cases on Bewakoof.com?","answer":"For any inquiries regarding Samsung S21 covers, you can reach out to Bewakoof.com's customer service through our Contact Us page or by using the customer support chat option on the website."}]},{"url":"mom-jeans-for-women","faq":[{"question":"What are mom jeans?","answer":"Mom jeans are a style of women's jeans that are characterized by a high waist, relaxed fit through the hips and thighs, and a straight or slightly tapered leg."},{"question":"How do I know my size when shopping for women's mom-fit jeans online?","answer":"To ensure you find the perfect fit when shopping online, refer to the size chart provided on Bewakoof.com, which includes detailed measurements. Additionally, read customer reviews for insights on fit and sizing."},{"question":"Can mom jeans be dressed up for more formal occasions?","answer":"Absolutely! Mom jeans for women can be dressed up by pairing them with a sophisticated blouse, a blazer, and heels. Accessorize with statement jewelry to add a touch of elegance to your ensemble."},{"question":"Are mom jeans suitable for all body types?","answer":"Yes, Our mom jeans for women are suitable for all body types. Their high waist and relaxed fit can flatter various figures. It's all about finding the right size and style that complements your body shape."},{"question":"Is it easy to return or exchange mom jeans if they don't fit right?","answer":"Bewakoof.com offers a straightforward return and exchange policy. If your mom jeans don't fit as expected, you can easily initiate a return or exchange within the specified period as per the website's policy."},{"question":"How do I maintain the quality of my women's mom jeans?","answer":"To maintain the quality of your mom jeans, follow the care instructions provided on the label. This often includes washing them inside out in cold water, avoiding bleach, and either hanging them to dry or using a low heat setting in the dryer."},{"question":"What makes Bewakoof.com a good place to buy mom jeans for women?","answer":"Bewakoof.com offers a wide selection of mom jeans with various styles and sizes to choose from. We provide user-friendly shopping experience, detailed product descriptions, and customer reviews to help you make an informed decision. Additionally, our commitment to sustainability and quality makes us a responsible choice for fashion-forward consumers."}]},{"url":"men-boxer-shorts","faq":[{"question":"What types of men's boxer shorts are available on Bewakoof.com?","answer":"At Bewakoof.com, you can find a wide range of boxers for men, including stylish and comfortable printed and cotton boxer shorts suitable for different preferences."},{"question":"Can I find cool and trendy designs in boxer shorts on Bewakoof.com?","answer":"Yes, Bewakoof.com offers a selection of cool and trendy boxer shorts with various prints and designs that cater to the latest fashion trends."},{"question":"How do I choose the right size of men's boxers?","answer":"You can refer to the size guide available on the product pages. For example, the Bewakoof Men's Solid Regular Fit Poplin Boxers on Amazon include a detailed size chart to help you find the perfect fit."},{"question":"Is it easy to shop for boxers online on Bewakoof.com?","answer":"Yes, shopping for boxers for men online on Bewakoof.com is user-friendly and straightforward. You can browse through a variety of options and select your preferred styles with ease."},{"question":"How do I buy men's boxers online on Bewakoof?","answer":"To buy men's boxers, simply select the boxer shorts for men you like, choose your size, and add them to the cart. Then, proceed to checkout to complete your purchase."},{"question":"Are there any offers or discounts when buying boxers for men on Bewakoof.com?","answer":"Bewakoof.com often runs promotions and discounts. It's best to check the website regularly or sign up for their newsletter to stay updated on the latest deals for men's boxers."},{"question":"What is the return policy for boxer shorts purchased on Bewakoof?","answer":"For information on the return policy for boxer shorts, you can visit the Refund & Returns section on Bewakoof.com. Generally, items can be returned within a specified period if they are unworn, unwashed, and have the original tags intact, but it's important to check the specific terms for your purchase."},{"question":"How long does it take for men's boxer shorts to be delivered after placing an order?","answer":"Delivery times can vary based on your location and the availability of the product. We provide an estimated delivery date at checkout, and you can track your order through your account on the website."},{"question":"How can I get in touch with customer service if I have questions about my order of men's boxers?","answer":"For any inquiries regarding your order of men's boxers, you can contact Bewakoof.com's customer service through their Contact Us page or the customer support options provided on the website. You may also reach out via email or use the chat support feature for a quicker response."},{"question":"Can I find boxers for men in plus sizes on Bewakoof.com?","answer":"Yes, Bewakoof.com offers a range of sizes, including plus sizes for men. You can check the availability of larger sizes in the specific product details or use the size filter while browsing."}]},{"url":"drop-shoulder-t-shirts-for-men","faq":[{"question":"What is a drop shoulder t-shirt?","answer":"A drop shoulder t-shirt features seams that sit lower on the shoulder, giving it a relaxed and casual fit. Its perfect for a laid-back look and can be dressed up or down."},{"question":"How do I style a drop shoulder t-shirt for men?","answer":"You can pair a men's drop shoulder t-shirt with jeans or shorts for a casual look. For a more polished outfit, try it with chinos or layered under a blazer."},{"question":"How can I buy drop shoulder t-shirts online from Bewakoof?","answer":"Simply visit our website, browse through our collection, select your desired drop shoulder t-shirt for men, choose the size and color, and add it to your cart. Proceed to checkout and follow the instructions to complete your purchase."},{"question":"Are off shoulder t-shirts comfortable?","answer":"Yes, our men's off shoulder t-shirts are designed for comfort and style. They are made from soft, breathable fabrics that ensure you stay comfortable all day long."},{"question":"What sizes are available for men's drop shoulder t-shirts at Bewakoof.com?","answer":"Bewakoof.com offers a wide range of sizes for men's drop shoulder t-shirts. Please refer to our size chart to find the perfect fit for you."},{"question":"Can I return or exchange a drop shoulder t-shirt if it doesn't fit?","answer":"Yes, Bewakoof.com has a hassle-free return and exchange policy. If your t-shirt doesn't fit, simply follow our return and exchange procedures within the specified timeframe."},{"question":"Are there different color options available for men's drop shoulder t-shirts at Bewakoof.com?","answer":"Absolutely! We offer a variety of color options for our drop shoulder t-shirts, allowing you to choose the shades that best match your style."},{"question":"How often does Bewakoof update its online collection of drop shoulder t-shirts?","answer":"We regularly update our online collection with fresh styles and designs to ensure you have access to the latest fashion trends. Check back often to buy new arrivals and stay on top of the style game."},{"question":"How do I know which drop shoulder t-shirt design will suit me?","answer":"Consider your personal style preferences and the occasions for which you'll be wearing the t-shirt. Drop shoulder t-shirts for men are versatile, so whether you prefer bold prints or solid colors, you'll find something that suits you at Bewakoof.com."},{"question":"How should I wash my drop shoulder t-shirt for men to maintain its quality?","answer":"For best results, wash your men's drop shoulder t-shirt in cold water with similar colors and tumble dry on low. Avoid using bleach and iron on a low setting if needed. Always read the care label before washing."},{"question":"Is it safe to buy men's drop shoulder t-shirt online at Bewakoof.com?","answer":"Absolutely! Shopping online at Bewakoof.com is completely safe. We use trusted & secure payment gateways and ensure that your personal and financial information is protected at all times."}]},{"url":"summer-t-shirts","faq":[{"question":"What material is best for T-shirt in summer?","answer":"The best materials for summer t-shirts are those that are lightweight, breathable, and moisture-wicking. Cotton is a popular choice because it's soft and breathable. Linen is also a great option as it is very light and has a natural ability to keep you cool. Blends that include materials like rayon or bamboo can also be good for hot weather as they often wick moisture away from the body."},{"question":"What is the coolest shirt to wear in summer?","answer":"T-Shirts made from lightweight and breathable fabrics like cotton, linen, or performance blends designed for heat are the coolest options for summer wear. Look for loose-fitting styles that allow for air circulation to help keep your body cool."},{"question":"What t-shirts are best for hot weather?","answer":"T-shirts that are best for hot weather are typically made from light, breathable fabrics such as cotton, linen, or moisture-wicking synthetics that help to keep sweat away from your skin. Opt for lighter colors that reflect rather than absorb heat."},{"question":"Which fabric t-shirt is best for summer?","answer":"Similar to the best materials for summer t-shirts, the best fabric is one that is breathable and moisture-wicking. Cotton, linen, and certain synthetic blends are ideal for summer t-shirts as they help to keep you cool and dry. T-shirts with mesh panels or moisture-wicking technology are also a good choice for summer activities where you might sweat more."},{"question":"What sizes are available in your summer t-shirt collection?","answer":"Our summer t-shirts come in a variety of sizes ranging from small to extra-large to ensure a perfect fit for everyone."},{"question":"Can I find both casual and smart-casual styles in your collection?","answer":"Absolutely! Our collection includes both casual round neck and graphic tees as well as smart-casual polo t-shirts."},{"question":"Are there different color options available for summer t-shirts?","answer":"Yes, we offer a wide range of colors, including classic shades like black, white, and grey, as well as vibrant hues like blue, maroon, and beige."},{"question":"How do I choose the right summer t-shirt for me?","answer":"Consider the fit, fabric, and style that suit your personal preference and comfort. Our collection has a variety of options to cater to all your summer needs. Don't forget to check out our size chart and product descriptions for additional guidance."},{"question":"Are there any offers or discounts available when purchasing summer t-shirts?","answer":"We often have promotions and discounts available for our customers. Keep an eye on our website or sign up for our newsletter to stay informed about the latest deals."}]},{"url":"cargo-joggers-for-men","faq":[{"question":"What types of men's cargo joggers are available at Bewakoof.com?","answer":"Bewakoof.com offers a variety of cargo joggers that include different styles, colors, and fits to cater to diverse preferences. You can find options ranging from slim fit to oversized fit, in solid colors or with unique design elements."},{"question":"How do I choose the right size of cargo joggers for men online on Bewakoof.com?","answer":"On the product page, you will find a size chart that can help you select the correct size for your men's cargo joggers. It is recommended to measure yourself and compare it with the chart to ensure a good fit."},{"question":"Are there any styling tips available for how to wear men's cargo joggers?","answer":"Yes, Bewakoof.com provides a blog with outfit ideas for cargo joggers, helping you learn how to dress them up or down for any occasion."},{"question":"What is the price range for men's cargo joggers on Bewakoof.com?","answer":"The price for men's cargo joggers on Bewakoof.com varies depending on the style and design. You can find affordable options and the latest prices directly on their cargo joggers page."},{"question":"Does Bewakoof.com offer any deals or discounts on cargo joggers?","answer":"Bewakoof.com often has deals and discounts available. It's best to check the website regularly or sign up for their newsletter to stay updated on current offers on cargo joggers and other apparel."},{"question":"Can I return or exchange the men's cargo joggers online I bought from Bewakoof.com?","answer":"Yes, Bewakoof.com has a return and exchange policy for cargo joggers. If you're not satisfied with your purchase, you can return or exchange it within a specified period, provided it meets the return policy conditions. Details can be found on their [Returns and Exchanges page](https:\u002F\u002Fwww.bewakoof.com\u002Freturn-and-exchange)."},{"question":"Is it safe to buy cargo joggers online at Bewakoof.com?","answer":"Yes, shopping for cargo joggers for men on Bewakoof.com is safe. The website uses secure payment gateways to protect your personal and financial information."},{"question":"Does Bewakoof.com offer cargo joggers for men in plus sizes?","answer":"Yes, Bewakoof.com caters to a wide range of sizes, and you can find cargo joggers in plus sizes as well. Check the specific product details for size availability."}]},{"url":"grey-t-shirts-for-men","faq":[{"question":"What sizes are available for men's grey t-shirts at Bewakoof.com?","answer":"\u003Cp\u003EBewakoof.com offers a wide range of sizes for men's grey t-shirts, ensuring that you'll find the perfect fit for your body type.\u003C\u002Fp\u003E"},{"question":"Are there any special discounts available when shopping for grey t-shirts at Bewakoof.com?","answer":"\u003Cp\u003EYes, We run special promotions and discounts. Stay tuned for exclusive promotions and discounts at Bewakoof by regularly checking our website or subscribing to our newsletter. This way, you'll always be in the loop about the newest offers and can snag your favorite grey t-shirts at the best prices.\u003C\u002Fp\u003E"},{"question":"Can I find both plain and graphic grey t-shirts for men online on Bewakoof.com?","answer":"\u003Cp\u003EYes, our collection includes both plain and graphic grey t-shirts, giving you the freedom to choose based on your personal style preferences.\u003C\u002Fp\u003E"},{"question":"How do you take care of Bewakoof's grey tees for men?","answer":"\u003Cp\u003EWash your grey tee with mild detergent on a gentle cycle; avoid bleach. Tumble dry low and avoid dry cleaning.\u003C\u002Fp\u003E"},{"question":"Why choose Bewakoof for your Men's grey tshirt?","answer":"\u003Cp\u003EBewakoof offers a diverse range of men's grey t-shirts that are known for their quality, comfort, and affordability. Our collection features various styles, from plain to graphic tees, catering to different tastes and occasions. We recognized for our trendy designs and durable fabrics, making it a popular choice for those seeking both style and value.\u003C\u002Fp\u003E"}]},{"url":"baby-tees","faq":[{"question":"What sizes are available for baby tees at bewakoof?","answer":"We offer a range of sizes from extra small to 3xl for our baby tees to ensure a perfect fit for everyone. Please check our size guide for detailed measurements."},{"question":"Can I find different colors and designs in baby tees?","answer":"Absolutely! Our baby tees come in a variety of colors and designs to match your mood and style."},{"question":"How do I care for my baby tee to ensure it lasts long?","answer":"We recommend following the care instructions on the label. Generally, washing in cold water and air drying will help maintain the quality of fabric."},{"question":"Are the baby tees suitable for outdoor activities?","answer":"Yes, our baby tees are designed for both comfort and style, making them suitable for a range of activities, from a casual day out to a relaxing day at home."}]},{"url":"mens-denim","faq":[{"question":"What types of men's jeans can I find on Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, you can find a wide range of denim jeans for men, including skinny, slim, straight, and relaxed fits in various washes and colours.\u003C\u002Fp\u003E"},{"question":"Are there any styling tips available to help me pair my denim jeans?","answer":"\u003Cp\u003EAbsolutely! Our website features style tips and lookbooks to inspire your outfits. Check out our blog and social media channels for the latest styling advice for your new jeans for men.\u003C\u002Fp\u003E"},{"question":"What are the advantages of buying men jeans pants online from Bewakoof.com?","answer":"\u003Cp\u003EShopping jeans for men online from Bewakoof.com offers you the convenience of shopping from anywhere, anytime. You'll also benefit from a wider selection of styles, sizes, and colours, exclusive online deals, and customer reviews to help inform your purchase.\u003C\u002Fp\u003E"},{"question":"How do I know which size to order online?","answer":"\u003Cp\u003EWe provide a detailed size guide and product descriptions for each pair of mens jeans to help you find the right fit. Make sure to measure yourself and compare it with our size chart for the best fit.\u003C\u002Fp\u003E"},{"question":"Are there any special offers when I buy men's jeans online at Bewakoof.com?","answer":"\u003Cp\u003EYes, Bewakoof.com frequently runs special offers and discounts when you buy jean pants online. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals and promotions.\u003C\u002Fp\u003E"}]},{"url":"womens-denims","faq":[{"question":"How do I find the right size when ordering women's jeans online?","answer":"\u003Cp\u003ETo ensure a perfect fit when ordering online, consult the size chart provided on our product page. Measure your waist and hips and compare them to the sizing guide. Also, look out for any customer reviews that may give insights into the fit and sizing.\u003C\u002Fp\u003E"},{"question":"What are the benefits of buying ladies jeans online from Bewakoof.com?","answer":"\u003Cp\u003EShopping jeans for women online with us means you get to enjoy a vast selection of styles, competitive prices, exclusive online discounts, a user-friendly shopping experience, and the convenience of having your women jeans delivered right to your doorstep.\u003C\u002Fp\u003E"},{"question":"Are the jeans for women at Bewakoof.com sustainable?","answer":"\u003Cp\u003EYes, we have a range of sustainable denim jeans for women made with eco-friendly materials and processes, reflecting our commitment to responsible fashion.\u003C\u002Fp\u003E"},{"question":"Can I return or exchange jeans for women if they don't fit?","answer":"\u003Cp\u003EAbsolutely! We have a hassle-free return and exchange policy for online purchases. If your jeans pants dont fit, you can easily return or exchange them according to the terms and conditions listed on our website.\u003C\u002Fp\u003E"},{"question":"How often does Bewakoof.com update its online women's jeans collection?","answer":"\u003Cp\u003EWe regularly update our online jeans collection to ensure we're offering the latest trends and styles. Keep an eye on our New Arrivals section for the freshest additions.\u003C\u002Fp\u003E"},{"question":"How do I choose the right style of women's jeans for my body type when shopping online?","answer":"\u003Cp\u003EWhen shopping jeans for women online, consider your body shape and what you feel most comfortable and confident in. High-waisted jeans are great for hourglass figures, while boyfriend jeans for women might suit apple shapes. Skinny jeans are versatile for many body types. Read the product descriptions and style notes for guidance.\u003C\u002Fp\u003E"}]},{"url":"caps","faq":[{"question":"What types of caps for men & women are available at Bewakoof.com?","answer":"\u003Cp\u003EBewakoof.com offers a wide variety of caps for both men & women online, including snapbacks, beanies, baseball caps, and more, available in different colours, patterns, and designs.\u003C\u002Fp\u003E"},{"question":"Can I return a cap if it doesn't fit or if I change my mind?","answer":"\u003Cp\u003EYes, Bewakoof.com has an easy return and refund policy. If the cap doesn't fit or you change your mind, you can return it within a specified period for an exchange or refund.\u003C\u002Fp\u003E"},{"question":"Is there a size guide available to help choose the right cap?","answer":"\u003Cp\u003EYes, Bewakoof.com provides a detailed size guide for caps to help you choose the size that will fit you best. You can find the size guide on the product page of each cap.\u003C\u002Fp\u003E"},{"question":"How can I find out about the latest caps online and offers at Bewakoof.com?","answer":"\u003Cp\u003ETo stay updated on the latest caps and offers at Bewakoof.com, you can subscribe to our newsletter, follow us on social media, or regularly check our website. Tribe members also receive notifications about new launches and exclusive deals.\u003C\u002Fp\u003E"},{"question":"How should I clean my Bewakoof cap?","answer":"\u003Cp\u003ETo clean your Bewakoof cap, check the label for specific care instructions. Generally, it's recommended to hand wash caps using mild detergent and cold water to maintain their shape and colour. Let the cap air dry rather than using a dryer.\u003C\u002Fp\u003E"},{"question":"How do I choose the right cap for my face shape?","answer":"\u003Cp\u003ESelect a cap style that complements your face shape. For example, if you have a round face, a cap with a structured crown can help add angles, while those with a more angular face may benefit from a rounder, softer cap design.\u003C\u002Fp\u003E"}]},{"url":"green-t-shirts-for-women","faq":[{"question":"What sizes are available for green tshirts for women online at Bewakoof.com?","answer":"\u003Cp\u003EWe offer a wide range of sizes for our green t-shirts, ensuring that there is a perfect fit for everyone. Please check the size chart for each product for specific measurements.\u003C\u002Fp\u003E"},{"question":"How should I wash my green t-shirt to maintain its color?","answer":"\u003Cp\u003ETo maintain the vibrant color of your green t-shirt for women, we recommend washing it in cold water with similar colors and avoiding bleach. Tumble dry on low and iron if necessary, but avoid direct heat on the print or design.\u003C\u002Fp\u003E"},{"question":"Can I find a green t-shirt suitable for both office and casual wear online?","answer":"\u003Cp\u003EAbsolutely. Opt for a green t-shirt with a more conservative cut, such as a boat neck or a fitted but not tight silhouette. Solid colors typically transition well between different settings. Make sure to choose a t-shirt made of a higher-quality fabric to ensure it looks appropriate for the office.\u003C\u002Fp\u003E"},{"question":"Can I find graphic or plain green t-shirts for ladies at Bewakoof?","answer":"\u003Cp\u003EYes, our selection includes both graphic and plain green t shirts. You can choose from a range of designs to find the one that best expresses your personal style.\u003C\u002Fp\u003E"},{"question":"Can I return a women green t-shirt online if it doesn't fit?","answer":"\u003Cp\u003EYes, We have a hassle-free return policy. If your green tee doesn't fit, you can return it within the specified period as per our return policy.\u003C\u002Fp\u003E"}]},{"url":"mens-black-t-shirt","faq":[{"question":"What sizes are available for the black t-shirts?","answer":"We offer a perfect blend of style and comfort with our diverse collection, offering sizes from S to 6XL to accommodate every body type. Whether you prefer a classic regular fit or a trendy oversized look, we have the ideal match to elevate your fashion game."},{"question":"Can I return or exchange a t-shirt if it doesn't fit?","answer":"Yes, we have a hassle-free return and exchange policy to make sure you are completely satisfied with your purchase."},{"question":"Are there any special discounts available for shopping at bewakoof?","answer":"Yes, tribe members receive exclusive discounts on our products. Sign up to become a member and enjoy these benefits."},{"question":"What types of neck styles do you offer for black t-shirts?","answer":"We offer a variety of neck styles, including crew or round neck, polo neck, Henley t-shirt, and V-neck t-shirt options."},{"question":"What is the best way to style a black t-shirt?","answer":"Black t-shirts are versatile and can be styled in many ways. Pair your black tees for men with jeans and sneakers for a casual look, or layer it under a jacket with chinos for a more polished outfit. The key is to let the print stand out and be the focal point of your ensemble."},{"question":"Do you offer full-sleeve and half-sleeve black t-shirts?","answer":"Yes, we offer lot of sleeve options from full-sleeve, 3\u002F4 sleeve, half-sleeve and sleeveless that suit your style and the season."},{"question":"How should I wash my black t-shirt to maintain its color and fit?","answer":"For best results, wash your black t-shirt in cold water with similar colors and tumble dry on low. Avoid using bleach and ironing the print to keep it looking great."}]},{"url":"back-printed-t-shirts-for-men","faq":[{"question":"What types of back print T Shirts are available for men on Bewakoof.com?","answer":"We offer a variety of back printed T-shirts for men with different designs and styles that align with unique personal styles."},{"question":"How do I choose the right size for a back print T shirt on Bewakoof.com?","answer":"You can refer to the size chart available on the product page of each T-shirt. Make sure to measure yourself and compare it with the provided measurements to ensure a good fit."},{"question":"Can I find different color options for back print T-shirts on Bewakoof.com?","answer":"Yes, we provide back print T-shirts in various colors. You can browse our selection to find the color that best suits your style."},{"question":"Are there any styling tips for wearing back print T-shirts from Bewakoof.com?","answer":"Yes, Bewakoof.com offers styling tips for wearing men's printed T-shirts. Check out our blog post for stylish outfit ideas."},{"question":"Are the back print T-shirts on Bewakoof.com made of cotton?","answer":"We typically offer T-shirts made of various materials, including cotton. For specific fabric details, check the product description of the back print T-shirt you are interested in."},{"question":"Is there any discount for first-time buyers on back print T-shirts at Bewakoof.com?","answer":"We often run promotions and discounts. For information on current discounts for first-time buyers, please visit our offers page."},{"question":"How should I care for my back print T-shirt to ensure it lasts long?","answer":"For the best care of your back print Tshirt, follow the washing and care instructions provided on the label or the product page on Bewakoof.com."},{"question":"What payment methods are accepted for purchasing back print Tshirt on Bewakoof.com?","answer":"Bewakoof.com generally accepts various payment methods, including credit\u002Fdebit cards, net banking, and digital wallets. Check our website for a complete list of accepted payment options."},{"question":"How do I buy a back print T-shirt for men?","answer":"To buy a back print T-shirt, simply visit our website, choose the T-shirt you like, select your size, and follow the checkout process to complete your purchase."}]},{"url":"white-t-shirts-for-men","faq":[{"question":"How many different types of white t shirts for men available at Bewakoof?","answer":"At Bewakoof, you can find a diverse range of white t-shirts for men, including classic plain t-shirts, printed tees with various graphics and slogans, and different neckline options such as crew necks and V-necks. The collection also features a variety of fits to suit different preferences and body types."},{"question":"How often does Bewakoof update its collection of men's white t-shirts?","answer":"Our collections are frequently updated to ensure that we are always offering the latest trends and styles in men's fashion."},{"question":"Can I return a white t-shirt if it doesn't fit?","answer":"Yes, Bewakoof offers easy returns. If your white t-shirt doesn't fit, you can return it according to our return policy."},{"question":"What sizes are available for men's white t-shirts on Bewakoof?","answer":"We offer a vast range of sizes from small to extra-large that fit for every body size."},{"question":"Are the white t-shirts on Bewakoof made of pure cotton?","answer":"Most of our white t-shirts are made of high-quality cotton or cotton blends to ensure breathability and comfort. You can check the specific fabric details on the product page."},{"question":"Can I find oversized or longline white t-shirts on Bewakoof?","answer":"Yes, we offer a variety of cuts and fits, including oversized and longline white t-shirts for a more contemporary look."},{"question":"How should I wash my white t-shirt to keep it white?","answer":"Wash your white t-shirt in a separate load with a gentle detergent. Avoid bleach and consider using a whitening agent suitable for fabrics if necessary. It's best to air dry your white tee to maintain its shape and quality."}]},{"url":"iphone-15-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 cover?","answer":"The iPhone 15 cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 cases cost?","answer":"A good quality iPhone 15 phone cover costs between Rs. 490 to Rs. 1500. We offer a range of covers at different price points to suit your budget. With Bewakoof.com, you can find the perfect iPhone 15 cover thats both stylish and affordable."},{"question":"Will an iPhone 15 cover fit my phone?","answer":"Yes! All of our covers are designed to be compatible with the iPhone 15 model and will provide a snug fit. The covers are also designed for easy access to all ports and buttons, so you can enjoy the full use of your phone. So whether you're looking for a minimalist design or something more eye-catching to reflect your personality, our iPhone 15 covers will have you covered!"},{"question":"What are the benefits of using a iPhone 15 back cover?","answer":"Using an iPhone 15 back cover is a great way to protect your phone from any potential damage. It also adds an extra layer of grip and can make your phone look truly unique with its range of designs and colors."},{"question":"Where can i buy iPhone 15 mobile covers online?","answer":"At Bewakoof.com, we have a wide range of iPhone 15 covers that are sure to fit your phone perfectly, and you can choose from different styles and colors to suit your individual preferences. Plus, all our covers are made from high-quality materials that provide great protection for your device. With our free shipping and easy returns policy, buying a back cover for your iPhone 15 has never been easier!"},{"question":"Does Bewakoof Provide Returns & Exchange on Mobile Covers?","answer":"Yes, at Bewakoof.com, we provide a 15-day return and exchange policy for all our mobile covers. That means you can shop with confidence knowing that you have the option to return a cover that doesnt fit or no longer meets your needs. Plus, our easy returns process makes it simple and stress-free to get your money back or find an item that fits better!"}]},{"url":"cargos-for-men","faq":[{"question":"What type of prints and patterns can be found on cargo pants for men?","answer":"Bewakoof offers a diverse selection of prints and patterns for men's cargo pants, ensuring a style for every preference. From the classic and rugged appeal of camo cargo for the military look to the trendy and laid-back vibe of washed patterns, we also provide options for those who appreciate the bold statement of color-blocked designs and the timeless simplicity of solid colors."},{"question":"What types of fits are available for men's cargo pants on Bewakoof?","answer":"\u003Cp\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com'\u003EBewakoof.com\u003C\u002Fa\u003E offers a wide range of fits for men's cargo pants to suit every style and preference. From relaxed fit, slim fit, regular fit, straight fit to loose fit, we have got you covered. Our cargo pants are designed with the utmost comfort and style in mind, making them the perfect addition to your wardrobe.\u003C\u002Fp\u003E"},{"question":"Do I Get Military Style Cargo Pants on Bewakoof?","answer":"Yes, you can find military-style pants for men on Bewakoof.com. Our collection includes camouflage pattern cargo pants that give a rugged and stylish look, perfect for a military-inspired outfit."},{"question":"What's the return policy for cargo pants at Bewakoof.com?","answer":"At Bewakoof.com, we want you to love your purchase. If our multi-pocket pants for men don't meet your expectations, we offer a 15-day return policy. Simply reach out to our customer support team and we'll guide you through the process."}]},{"url":"jeggings-for-women","faq":[{"question":"What sizes are available for jeggings at Bewakoof?","answer":"We offer a wide range of sizes from 26 to 40 inches for our jeggings collection to ensure that every woman can find her perfect fit. Please refer to our size chart for detailed measurements."},{"question":"Can I return or exchange jeggings if they don't fit?","answer":"Yes, we have an easy return and exchange policy. If your jeggings don't fit, you can return or exchange them according to our policy guidelines."},{"question":"Are there different styles of jeggings available?","answer":"Absolutely! We have a variety of styles including printed jeggings, washed jeggings, and more to suit your fashion preferences."},{"question":"What types of tops can I pair with my jeggings?","answer":"\u003Cp\u003EJeggings are incredibly versatile and can be paired with a wide range of \u003Ca href= 'https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-tops'\u003E women's tops\u003C\u002Fa\u003E. Choose from casual women tees, stylish shirts for women, or even chic tunics for a complete look.\u003C\u002Fp\u003E"}]},{"url":"deadpool-merchandise","faq":[{"question":"What types of Deadpool merchandise are available on bewakoof.com?","answer":"We offers a wide range of Deadpool merchandise including tee shirts, mobile covers, bags, caps, and sliders. Each product features unique designs inspired by the iconic Marvel character."},{"question":"Are the Deadpool mobile covers compatible with my phone?","answer":"\u003Cp\u003EWe provides a selection of Deadpool \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'mobile covers\u003C\u002Fa\u003E for various phone models. Before making a purchase, kindly verify the product title and description to ensure compatibility with your particular mobile model.\u003C\u002Fp\u003E"},{"question":"How do I know which size to order for Deadpool t shirt?","answer":"We have included a detailed size guide on our. To ensure the best fit, measure yourself according to the guide and compare it to the available sizes before placing your order."},{"question":"Are there any price discounts or offers available on Deadpool merchandise?","answer":"We frequently runs promotions and discounts on their merchandise. Keep an eye on the website for current offers, such as the potential 70% off on select items."},{"question":"What is the quality of the Deadpool merchandise like?","answer":"Our Deadpool merchandise on is made from high-quality materials designed for comfort, durability, and long-lasting wear. Each product undergoes quality checks to ensure customer satisfaction."},{"question":"What is the return policy on Bewakoof?","answer":"\u003Cp\u003EWe has a customer-friendly return policy. If you're not satisfied with your purchase, you can return the merchandise within a specified period for a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-returnre'fund or exchange\u003C\u002Fa\u003E, subject to terms and conditions. Please refer to their return policy for detailed information.\u003C\u002Fp\u003E"},{"question":"How to Avail Discounts on Bewakoof?","answer":"\u003Cp\u003ETo make sure you never miss out on any offers or promotions, regularly check our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale'\u003Ediscount and coupon\u003C\u002Fa\u003E page. We also highly recommend joining our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003Etribe membership\u003C\u002Fa\u003E program to receive exclusive discounts and benefits that are not available to regular customers.\u003C\u002Fp\u003E"}]},{"url":"flannel-shirts","faq":[{"question":"What are flannel shirts?","answer":"Flannel shirts are a type of collar shirt made from a soft, woven fabric that is often brushed to create a fuzzy texture. They are typically known for their warmth and comfort, making them a popular choice for colder climates."},{"question":"What is the difference between plaid and flannel?","answer":"Plaid and flannel are not the same thing, although they are often used interchangeably. Plaid refers to a pattern of criss-crossed horizontal and vertical lines, while flannel refers to the fabric used to make the shirt. So, you can have a flannel shirt in plaid or any other pattern."},{"question":"Where to buy flannel shirts online?","answer":"If you are looking to add some flannel shirts to your wardrobe, look no further than Bewakoof.com. We have a wide range of flannel shirts for men, with various patterns and colors to choose from. Plus, you can shop conveniently from your own home."},{"question":"What size flannel shirts are available at bewakoof?","answer":"\u003Cp\u003EAt Bewakoof.com, we offer flannel shirts in sizes ranging from small to 5XL. We believe that everyone should be able to find their perfect fit and feel cozy in our brushed \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shirts'\u003Ecotton shirts\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Why should I choose flannel shirts over other types of shirts?","answer":"Flannel shirts are not only stylish, but they also offer superior warmth and relaxed. The fabric is soft and breathable, making it perfect for both cool and cold weather. Plus, the checkered pattern adds a touch of character to any outfit."},{"question":"Do you offer flannel shirts in a variety of colors and patterns?","answer":"Yes, we do! At Bewakoof.com, we understand that everyone has their own unique style and preferences. That's why we have a wide range of colours and patterns for our flannel shirts. From classic plaid to bold solid designs, there is something for everyone."}]},{"url":"polo-t-shirts-for-men","faq":[{"question":"What is a Polo T-shirt?","answer":"Polo collar t-shirts are a casual yet stylish type of shirt that has gained popularity in recent years. They have a collar with 2-3 buttons on the neckline, giving them a more sophisticated look compared to regular t-shirts. You may also hear them referred to as golf shirts or tennis shirts."},{"question":"Where to Buy Polo Collar T-Shirts?","answer":"Looking to add some stylish polo collar t-shirts to your wardrobe? Look no further than \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof.com\u003C\u002Fa\u003E, the ultimate destination for trendy and casual wear. Not only do they offer an extensive selection of stylish polo t-shirts in various styles and colours, but their superior quality, comfortable fit, and affordable pricing make them the ideal choice for savvy shoppers! Whether you're after a classic look or a more contemporary design Bewakoof.com has got you covered!"},{"question":"Do Polo T-Shirts Have Pockets?","answer":"Yes, some polo tshirts do come with pockets! Although not all designs feature this handy addition, you'll find that many collar t-shirts on Bewakoof.com come equipped with a stylish and functional pocket. Perfect for carrying small essentials, or simply adding a touch of flair to your outfit, t-shirts with pockets are a practical and fashionable choice. Whether you're looking for a Striped Polo T-shirt or a collar t-shirt, you'll find a variety of pocketed options to suit your style at Bewakoof.com!"},{"question":"What Size Should I Choose?","answer":"Choosing the right size for your polo t-shirt is crucial for comfort and style. At Bewakoof.com, we've made this process simple with a detailed size guide. Whether you're a fan of a snug fit or prefer you a little looser, we've got sizes ranging from Small to XXL to cater to all body types. Remember, a well-fitted Striped or collar t-shirt doesn't just look great, it feels great too! So, measure yourself accurately, check out our size guide, and make the perfect choice for your new stylish addition!"}]},{"url":"baggy-jeans-for-women","faq":[{"question":"What are baggy jeans for women?","answer":"Baggy jeans for women are a style of jeans that feature a relaxed and loose fit from the waist to the legs. They offer comfort and versatility, making them a popular choice in women's fashion."},{"question":"What makes Bewakoof's baggy jeans special?","answer":"Bewakoof offers a curated collection of baggy jeans for women that prioritize quality, style, and affordability. Our jeans come in various styles, colors, and sizes to suit different preferences."},{"question":"Are baggy jeans for women comfortable to wear all day long?","answer":"Yes, baggy jeans are designed for comfort. The loose fit provides freedom of movement, making them suitable for all-day wear without feeling restricted."},{"question":"Can baggy jeans be dressed up for formal occasions?","answer":"Absolutely! Baggy jeans can be dressed up for formal occasions with the right pairings, such as a tailored blazer and heeled boots. They are versatile and can adapt to various settings."},{"question":"What types of women baggy jeans are available at Bewakoof?","answer":"Bewakoof offers a range of baggy jeans, including Baggy Cargo Jeans, Oversized Baggy Jeans, Relaxed Baggy Jeans, Loose Fit Baggy Jeans, Solid Baggy Jeans, and Washed Baggy Jeans. Each type has its unique style and features."},{"question":"How do I choose the right size for my baggy jeans?","answer":"You can find a size guide on our website to help you select the right size for your baggy jeans. It's essential to measure your waist and hips for an accurate fit."},{"question":"What are the key features of Bewakoof's baggy jeans collection?","answer":"Our baggy jeans are known for their premium quality, trend-driven designs, comfortable fit, multiple size options, affordable prices, and easy maintenance."},{"question":"How can I style baggy jeans for different occasions?","answer":"Baggy jeans are versatile and can be styled in various ways. We provide style tips and guides on our website to help you create the perfect outfit for any occasion."},{"question":"What are the benefits of shopping for baggy jeans for women online from Bewakoof?","answer":"Shopping online at Bewakoof offers convenience, an extensive collection, secure payment options, quick delivery, easy returns, and access to the latest fashion trends and updates."},{"question":"Can I return or exchange women's baggy jeans if they don't fit correctly?","answer":"\u003Cp\u003EYes, we have a hassle-free return policy that allows you to return or exchange baggy jeans if they don't fit as expected. Please refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn policy\u003C\u002Fa\u003E for more details.\u003C\u002Fp\u003E"},{"question":"How do I stay updated with the latest baggy jeans trends and Bewakoof's offerings?","answer":"You can stay in the loop with the latest trends and updates by following our blog and social media channels. We regularly share fashion insights and updates."}]},{"url":"gym-t-shirts","faq":[{"question":"What types of gym t-shirts are available on Bewakoof?","answer":"Bewakoof offers a wide range of gym t-shirts for both men and women, including half sleeve t-shirts, full sleeve t-shirts, oversized t-shirts, boyfriend t-shirts, plain t-shirts, printed t-shirts, and tops for women."},{"question":"What sizes are available for gym tees on Bewakoof?","answer":"We offer workout t-shirts in multiple sizes to accommodate various body types. You can refer to our size chart on the product page to choose the size that fits you best."},{"question":"Do your gym t-shirts come in different colors and designs?","answer":"Yes, we have a diverse color palette and an extensive range of designs for our gym t-shirts. Whether you prefer plain, printed, or trendy designs, you'll find options to match your style."},{"question":"What is the return policy for gym t-shirts purchased from Bewakoof?","answer":"\u003Cp\u003EWe have a hassle-free return policy. If you receive a product that doesn't meet your expectations, you can initiate a return within the specified time frame. Please refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003EReturns and Refunds policy\u003C\u002Fa\u003E for more details.\u003C\u002Fp\u003E"},{"question":"Are your gym t-shirts available for both men and women?","answer":"Yes, Bewakoof's gym t-shirts are available for both men and women. We have a diverse collection designed to cater to the specific needs and preferences of each gender."},{"question":"How can I style my gym t-shirts from Bewakoof for the best look?","answer":"We offer styling tips on our website to help you make the most of your gym t-shirts. You can layer them, pair them with accessories, and choose the right footwear and bottoms to complete your gym look."},{"question":"Are there any discounts or promotions available for gym t-shirts on Bewakoof?","answer":"Yes, we often run promotions and discounts, allowing you to grab your favorite gym t-shirts at affordable prices. Keep an eye on our website and social media channels for the latest offers."},{"question":"What are the benefits of shopping for gym t-shirts online from Bewakoof?","answer":"When you shop for gym t-shirts on Bewakoof's website, you benefit from the convenience of online shopping, a wide variety of choices, a hassle-free return process, top-notch quality assurance, and regular discounts."}]},{"url":"baggy-jeans","faq":[{"question":"What are baggy jeans, and how are they different from regular jeans?","answer":"Baggy jeans are a style of jeans that feature a relaxed and roomy fit. They are designed to be loose-fitting throughout the legs and typically have a wider leg opening compared to regular jeans, offering more comfort and a distinct fashion statement."},{"question":"Are baggy jeans suitable for both men and women?","answer":"Yes, baggies are a unisex fashion trend and are available for both men and women. At Bewakoof, we offer a wide range of baggy jeans tailored to suit the preferences of all individuals."},{"question":"What makes baggy jeans comfortable to wear?","answer":"The comfort of baggy jeans is primarily due to their loose and relaxed fit. They provide extra room for movement and are often made from soft, breathable fabrics. This combination of factors ensures a comfortable and hassle-free wearing experience."},{"question":"How can I style baggy jeans for a trendy look?","answer":"Baggy jeans can be styled in various ways. You can pair them with fitted tops, tuck in your shirt, or experiment with layering. Adding accessories and selecting the right footwear can also help elevate your outfit and create a stylish look."},{"question":"Are baggy jeans suitable for formal occasions, or are they more for casual wear?","answer":"Baggies are traditionally considered more casual, but they can be styled for a semi-formal or smart-casual look. To achieve a formal appearance, opt for darker colors and pair them with a well-fitted blazer and formal shoes."},{"question":"Do baggy jeans come in different types and designs?","answer":"Yes, it comes in a variety of types and designs. You can find baggy cargo jeans, baggy oversized jeans, relaxed fit jeans, solid colors, and washed finishes, among others. Each style offers a unique look and fit."},{"question":"What sizes are available for baggy jeans at Bewakoof?","answer":"Our baggy jeans are available in a range of sizes to accommodate different body types. We offer a size chart to help you find the perfect fit. Make sure to refer to our size guide for accurate measurements."},{"question":"How do I care for my baggy jeans to ensure they last longer?","answer":"To extend the lifespan of your oversized denim, it's essential to follow the care instructions provided on the product label. Typically, washing them inside out, using cold water, and avoiding excessive heat in the dryer can help maintain the fabric quality and color."},{"question":"Why should I choose Bewakoof for purchasing baggy jeans?","answer":"Bewakoof offers a wide selection of baggy jeans with various styles and designs to choose from. We prioritize quality, affordability, and trendy designs, making us the perfect destination for all your oversized jeans needs."},{"question":"Are baggy jeans in style right now, or is it just a passing trend?","answer":"Baggy jeans have made a strong comeback and are currently a popular fashion trend. Their timeless appeal and comfort factor make them a versatile choice for many fashion enthusiasts, indicating that they are likely here to stay."}]},{"url":"naruto-t-shirts","faq":[{"question":"Are these Naruto T-Shirts officially licensed?","answer":"Yes, all the Naruto T-Shirts available on Bewakoof are officially licensed merchandise. You can shop with confidence, knowing that you're getting authentic products."},{"question":"What sizes are available for Naruto T-Shirts?","answer":"We offer a wide range of sizes to ensure that everyone can find the perfect fit. Sizes typically range from Small to 3XL, but specific availability may vary for each design."},{"question":"Can I return or exchange a Naruto T-Shirt if it doesn't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If the size doesn't fit, you can initiate a return or exchange within the specified time frame. Check our Returns & Exchanges page for more details."},{"question":"How do I care for my Naruto T-Shirt to ensure it lasts longer?","answer":"To maintain the quality and lifespan of your Naruto T-Shirt, we recommend following the care instructions on the product label. Generally, washing in cold water, turning the shirt inside out, and avoiding bleach and high heat when drying can help preserve the print and fabric."},{"question":"Can I find T-Shirts featuring specific characters like Naruto, Sasuke, or Sakura?","answer":"Yes, our collection includes Naruto T-Shirts featuring the main characters like Naruto, Sasuke, Sakura, and others. We also have T-Shirts dedicated to popular side characters and antagonists."},{"question":"Are there any promotions or discounts available for Naruto T-Shirts?","answer":"We regularly offer promotions and discounts on our products, including Naruto T-Shirts. Keep an eye on our website, newsletter, and social media channels to stay updated on the latest deals and offers."},{"question":"Do you have a customer support team to assist with inquiries or issues?","answer":"Yes, we have a dedicated customer support team ready to assist you. If you have any questions or encounter any issues while shopping for Naruto T-Shirts, please feel free to contact our support team. You can find our contact details on the website."}]},{"url":"high-top-sneakers","faq":[{"question":"What are high-top sneakers, and why are they popular?","answer":"High-top sneakers are a type of shoe with an extended design that covers the ankle. They are popular due to their versatile style, enhanced ankle support, and the ability to make a fashion statement."},{"question":"Are high-top sneakers suitable for both men and women?","answer":"Yes, Bewakoof offers high-top sneakers for both men and women, with a wide range of styles and designs to cater to everyone's preferences."},{"question":"What are the benefits of wearing high-top sneakers?","answer":"High-top sneakers offer enhanced ankle support, versatility in style, and can be weather-friendly. They are also known for their trendy designs."},{"question":"How do I choose the right high-top sneakers for my outfit?","answer":"Consider the occasion, match the colors with your attire, ensure a proper fit, and follow our style guide for inspiration on how to pair high-top sneakers with different outfits."},{"question":"What is the maintenance and cleaning process for high-top sneakers?","answer":"Regularly clean off dirt and dust, spot clean stains with a mild detergent, air dry them, use a water repellent spray for protection, and remember to rotate your shoes for longevity."},{"question":"Can high-top sneakers be worn during the summer season?","answer":"Yes, there are summer-friendly options such as canvas high-tops, pastel-colored designs, and slip-on high-tops that are suitable for warm weather while maintaining the style of high-top sneakers."},{"question":"Does Bewakoof offer deals and discounts on high-top sneakers?","answer":"Yes, Bewakoof often provides unbeatable deals and discounts on high-top sneakers and other footwear options. Check our website for the latest promotions and offers."},{"question":"Do high-top sneakers provide adequate ankle support for sports and physical activities?","answer":"Yes, high-top sneakers are known for their enhanced ankle support, making them a suitable choice for various physical activities, including sports and workouts."},{"question":"Are there size options available for high-top sneakers at Bewakoof?","answer":"Bewakoof offers a range of sizes to cater to all individuals, ensuring you can find the perfect fit for your high-top sneakers."},{"question":"What is the return and exchange policy for high-top sneakers at Bewakoof?","answer":"You can refer to our website for detailed information on our return and exchange policy, ensuring a hassle-free experience in case you need to make any adjustments to your purchase."},{"question":"Do you offer customer support for high-top sneaker inquiries?","answer":"Yes, we have a dedicated customer support team ready to assist you with any questions or concerns regarding high-top sneakers or any other products on our website. You can reach us at care@bewakoof.com with all queries. We do not have a Bewakoof customer care number."},{"question":"Can I find high-top sneakers in bold and printed styles at Bewakoof?","answer":"Absolutely, Bewakoof offers high-top sneakers with a variety of striking patterns and bold graphics, allowing you to express your unique style."},{"question":"What makes high-top sneakers a part of streetwear fashion?","answer":"High-top sneakers are a staple in streetwear fashion due to their urban and edgy style. They complement streetwear outfits, including baggy pants, hoodies, and statement accessories."}]},{"url":"iphone-15-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Plus cover?","answer":"At Bewakoof.com, you can find a wide range of covers for the iPhone 15 Plus. From hard cover cases to glass back cases, there's something for everyone. Hard cover cases are perfect for those who need extra protection against drops and impacts. They also come in a variety of designs and colors, so you can pick one that expresses your unique style. On the other hand, if you want a more luxurious look and feel, then glass back cases are the way to go. These cases provide an attractive finish while also offering superior scratch resistance."},{"question":"How much do iPhone 15 Plus cases cost?","answer":"iPhone 15 Plus cases at Bewakoof.com range from Rs. 490 to Rs. 530, depending on the type of case you select. Hard cover cases are slightly more affordable, while glass back cases cost a bit more. Regardless of your budget, you're sure to find a great option that meets your needs and expresses your style."},{"question":"What are the benefits of using an iPhone 15 Plus back cover?","answer":"A back cover for your iPhone 15 Plus can provide a range of benefits. First, it provides extra protection against scratches and other types of damage. In addition, many cases cme with raised edges, which can help protect your phone if it falls or is dropped. Finally, back covers come in a range of styles and colors, so you can choose one that expresses your own individual sense of style."},{"question":"Where can i buy iPhone 15 Plus mobile covers online?","answer":"You can buy iPhone 15 Plus mobile covers from Bewakoof.com. Bewakoof offers a wide range of stylish and affordable back covers that are made to fit your device perfectly. They also offer fast delivery and excellent customer service, so you can be sure that you'll get the best possible product at an unbeatable price. So if you're looking for a reliable source for your iPhone 15 Plus back cover needs, look no further than Bewakoof.com!"}]},{"url":"iphone-15-pro-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Pro cover?","answer":"The iPhone 15 Pro cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 Pro cases cost?","answer":"A good quality iPhone 15 phone Pro cover costs between Rs. 490 to Rs. 530. We offer a range of covers at different price points to suit your budget. With Bewakoof.com, you can find the perfect iPhone 15 Pro cover thats both stylish and affordable."},{"question":"Will an iPhone 15 Pro cover fit my phone?","answer":"Yes! All of our covers are designed to be compatible with the iPhone 15 Pro model and will provide a snug fit. The covers are also designed for easy access to all ports and buttons, so you can enjoy the full use of your phone. So whether you're looking for a minimalist design or something more eye-catching to reflect your personality, our iPhone 15 Pro covers will have you covered!"},{"question":"What are the benefits of using a iPhone 15 Pro back cover?","answer":"Using an iPhone 15 Pro back cover is a great way to protect your phone from any potential damage. It also adds an extra layer of grip and can make your phone look truly unique with its range of designs and colors."},{"question":"Where can i buy iPhone 15 Pro mobile covers online?","answer":"At Bewakoof.com, we have a wide range of iPhone 15 Pro covers that are sure to fit your phone perfectly, and you can choose from different styles and colors to suit your individual preferences. Plus, all our covers are made from high-quality materials that provide great protection for your device. With our free shipping and easy returns policy, buying a back cover for your iPhone 15 Pro has never been easier!"},{"question":"Does Bewakoof Provide Returns & Exchange on Mobile Covers?","answer":"Yes, at Bewakoof.com, we provide a 15-day return and exchange policy for all our mobile covers. That means you can shop with confidence knowing that you have the option to return a cover that doesnt fit or no longer meets your needs. Plus, our easy returns process makes it simple and stress-free to get your money back or find an item that fits better"}]},{"url":"iphone-15-pro-max-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Pro Max cover?","answer":"The iPhone 15 Pro cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 Pro Max cases cost?","answer":"iPhone 15 Pro Max at Bewakoof.com range from Rs. 490 to Rs. 530, depending on the type of case you select. Hard cover cases are slightly more affordable, while glass back cases cost a bit more. Regardless of your budget, you're sure to find a great option that meets your needs and expresses your style."},{"question":"What are the benefits of using an iPhone 15 Pro Maxback cover?","answer":"A back cover for your iPhone 15 Pro Max can provide a range of benefits. First, it provides extra protection against scratches and other types of damage. In addition, many cases cme with raised edges, which can help protect your phone if it falls or is dropped. Finally, back covers come in a range of styles and colors, so you can choose one that expresses your own individual sense of style."},{"question":"Where can i buy iPhone 15 Pro Max mobile covers online?","answer":"You can buy iPhone 15 Pro Max mobile covers from Bewakoof.com. Bewakoof offers a wide range of stylish and affordable back covers that are made to fit your device perfectly. They also offer fast delivery and excellent customer service, so you can be sure that you'll get the best possible product at an unbeatable price. So if you're looking for a reliable source for your iPhone 15 Pro Max back cover needs, look no further than Bewakoof.com!"}]},{"url":"women-jackets","faq":[{"question":"What types of women's jackets are available at Bewakoof?","answer":"At Bewakoof, we offer a diverse range of women's jackets to suit various styles and preferences. Our collection includes varsity jackets, denim jackets, puffer jackets, bomber jackets, windcheaters, printed jackets, color block jackets, oversized jackets, full sleeve jackets, and sleeveless jackets, catering to different occasions and weather conditions."},{"question":"How do I choose the right size for my women's jacket?","answer":"To ensure a perfect fit, we recommend referring to our size chart available on the product page. This chart provides detailed measurements and guidance on selecting the appropriate size. If you're still unsure, our customer service team is here to assist you with any sizing queries."},{"question":"Are these jackets suitable for both casual and formal occasions?","answer":"Absolutely! Our collection features a variety of jackets that are versatile enough to be worn for both casual and formal events. From laid-back denim jackets to more sophisticated options, you'll find jackets that suit various occasions in our selection."},{"question":"What are the available color options for women's jackets?","answer":"We offer an extensive range of colors to match your individual style. Choose from classic shades like black, blue, grey, and white, or make a statement with vibrant options such as green, pink, and orange. Our color variety ensures there's something for everyone."},{"question":"Are these jackets suitable for winter weather?","answer":"Yes, we offer a selection of jackets, including puffer jackets and oversized jackets, designed to keep you warm during the colder months. These jackets provide both style and functionality, ensuring you stay cozy while looking chic."},{"question":"How do I style these jackets with other clothing items?","answer":"Our jackets are designed to complement a wide range of outfits. You can easily pair them with T-shirts, oversized T-shirts, joggers, jeans, sliders, and various types of shoes. Mix and match to create trendy and stylish ensembles that reflect your personal style."},{"question":"What makes Bewakoof's collection of women's jackets unique?","answer":"Bewakoof's collection stands out for its trendsetting designs, exceptional quality, and affordable prices. Our ladies jackets are crafted with attention to detail, and we offer a variety of styles and sizes to cater to diverse preferences."},{"question":"Are there jackets made from sustainable materials in your collection?","answer":"Yes, we are committed to sustainability, and many of our jackets are crafted from eco-friendly materials. Look for the relevant information on the product pages to make environmentally conscious choices."},{"question":"Can I return or exchange a women's jacket if it doesn't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If the jacket doesn't fit or if you're not satisfied with your purchase, you can initiate a return or exchange within the specified timeframe. Please refer to our Returns and Exchanges page for detailed information."},{"question":"How can I contact customer support for assistance?","answer":"\u003Cp\u003EIf you have any questions or need assistance, our customer support team is here to help. You can reach out to us through our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Forder-delivery-payment'\u003E\u003Cstrong\u003EContact Us\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E page, where you'll find various ways to get in touch, including email and chat support. Please note that we do not have a Bewakoof customer care number.\u003C\u002Fp\u003E"},{"question":"Are the prices of these ladies jackets reasonable?","answer":"Absolutely! We believe that high-quality fashion shouldn't be overly expensive. Our collection offers affordable prices without compromising on style or quality."},{"question":"Do these jackets come in plus sizes?","answer":"Yes, we celebrate diversity and offer a range of sizes to accommodate different body types, including plus sizes. Be sure to check the size chart to find the perfect fit for you."},{"question":"Do you offer discounts or promotions on women's jackets?","answer":"Yes, we frequently offer discounts and promotions on our products, including women's jackets. Be sure to subscribe to our newsletter and follow us on social media to stay informed about our latest deals and offers."}]},{"url":"jumbo-prints-collection","faq":[{"question":"What is the Jumbo Prints Collection by Bewakoof?","answer":"The Jumbo Prints Collection is a unique assortment of oversized t-shirts that feature vibrant and innovative prints. These prints are larger than life, making a bold statement and adding a touch of quirkiness to your wardrobe."},{"question":"What sizes are available in the Jumbo Prints Collection?","answer":"We offer a variety of sizes in the Jumbo Prints Collection, ranging from extra small to 3XL. Whether you prefer a more fitted look or an oversized feel, you'll find the perfect size to suit your style."},{"question":"What kind of designs can I expect in the Jumbo Prints Collection?","answer":"The Jumbo Prints Collection is known for its innovative and vibrant designs. From eye-catching patterns to bold statements, our designs are meant to stand out and make you the center of attention."},{"question":"How do I order a Jumbo Prints t-shirt from Bewakoof?","answer":"Ordering a Jumbo Prints t-shirt is easy! Simply visit our website, browse through the collection, select the designs you love, and choose your preferred size. Add the items to your cart and proceed to the secure checkout process."},{"question":"What payment methods are accepted for Jumbo Prints t-shirts?","answer":"We offer a range of payment options to cater to your preferences. You can pay for your Jumbo Prints t-shirt using credit or debit cards, digital wallets, and even through cash on delivery (COD)."},{"question":"Is there a return or exchange policy for the Jumbo Prints Collection?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your Jumbo Prints t-shirt, you can initiate a return or exchange within the specified time frame. Please refer to our Returns & Exchanges page for more details."},{"question":"How soon will I receive my Jumbo Prints t-shirt after placing the order?","answer":"We strive to ensure prompt delivery of your order. The delivery time may vary based on your location, but we always aim to get your Jumbo Prints t-shirt to you as soon as possible."},{"question":"Can I track the status of my Jumbo Prints t-shirt order?","answer":"Absolutely! Once your order is shipped, you will receive a tracking number. You can use this number to track the status of your order and get real-time updates on its location."},{"question":"How do I take care of my Jumbo Prints t-shirt?","answer":"To ensure the longevity of your Jumbo Prints t-shirt, we recommend following the care instructions provided on the garment's label. Generally, washing your t-shirt inside out in cold water and avoiding harsh detergents will help maintain the print's vibrancy."},{"question":"What sets the Jumbo Prints Collection apart from other t-shirt collections?","answer":"The Jumbo Prints Collection stands out due to its larger-than-life prints, vibrant colors, and commitment to quality and affordability. It's a collection designed to help you express your individuality and make a statement with your fashion choices."}]},{"url":"rayon-shirts","faq":[{"question":"What are rayon shirts?","answer":"Rayon shirts are stylish clothing items made from rayon fabric, a versatile material known for its lightweight, breathable, and comfortable properties. These shirts are designed to offer a perfect blend of fashion and comfort for both men and women."},{"question":"Why should I choose rayon shirts from Bewakoof?","answer":"Bewakoof offers a curated collection of rayon shirts that combine trendy designs, comfort, and affordability. Our shirts are crafted with attention to detail and are perfect for casual wear, making them an ideal addition to your wardrobe."},{"question":"Are rayon shirts suitable for men and women?","answer":"Yes, our collection includes rayon shirts designed for both men and women. The range encompasses a variety of styles, colors, and sizes to cater to diverse preferences."},{"question":"What are the benefits of rayon fabric in shirts?","answer":"Rayon fabric is known for being lightweight, breathable, and comfortable. It drapes well, making it suitable for various styles. Its moisture-wicking properties keep you cool, making rayon shirts a great choice for warmer weather."},{"question":"How do I choose the right size?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. Measure yourself according to our guidelines to ensure you choose the right size for a comfortable and stylish fit."},{"question":"Do you offer different sleeve lengths in rayon shirts?","answer":"Yes, our collection includes rayon shirts with various sleeve lengths, including half-sleeve and full-sleeve options. You can choose based on your personal preference and the occasion."},{"question":"Are there plain and printed options available?","answer":" Absolutely! Our rayon shirts come in a variety of designs, including plain colors and printed patterns. Whether you're looking for a classic look or a vibrant style, we have options for you."},{"question":"Can I wear rayon shirts for formal occasions?","answer":"While rayon shirts are more commonly associated with casual wear, our collection offers a range of designs that can be dressed up for semi-formal events. Pair a solid-color rayon shirt with dress pants and accessories for a sophisticated look."},{"question":"How do I care for my rayon shirt?","answer":"To ensure the longevity of your rayon shirt, we recommend hand washing or using the delicate cycle on your washing machine with cold water. Hang it to dry and iron on a low setting to prevent wrinkles."},{"question":"Do you offer free shipping?","answer":"Yes, we offer free shipping on our rayon shirts and other products. Enjoy the convenience of having your chosen items delivered to your doorstep without any additional shipping fees."},{"question":"What payment methods do you accept?","answer":"We accept various payment methods, including credit cards, debit cards, net banking, and mobile wallets. We aim to provide a seamless shopping experience for our customers."},{"question":"Is cash on delivery (COD) available for rayon shirts?","answer":"Yes, we offer cash on delivery (COD) as a payment option for your rayon shirt purchases. This provides you with flexibility and ease of payment."},{"question":"Can I find rayon shirts in plus sizes?","answer":"Yes, our collection includes a range of sizes to accommodate various body types, including plus sizes. Refer to our size chart to find the perfect fit for you."}]},{"url":"naruto-merchandise","faq":[{"question":"Are the Naruto merchandise products at Bewakoof officially licensed?","answer":"Yes, absolutely! We take pride in offering officially licensed Naruto merchandise. This means that every product you find in our Naruto collection is authorized by the creators, ensuring authenticity and supporting the anime industry."},{"question":"What types of Naruto merchandise do you offer at Bewakoof?","answer":"We offer a diverse range of Naruto merchandise including half sleeve t-shirts, full sleeve t-shirts, vests, oversized t-shirts, hoodies, and sweaters. Each product features unique and eye-catching designs inspired by the Naruto series and its characters."},{"question":"Are the designs in your Naruto collection exclusive to Bewakoof?","answer":"Yes, our Naruto merchandise features exclusive designs crafted by our talented team of artists. You won't find these designs anywhere else, making your Naruto fandom truly one-of-a-kind."},{"question":"How is the quality of the Naruto merchandise at Bewakoof?","answer":"We prioritize quality craftsmanship. Our Naruto merchandise is made from high-quality materials to ensure comfort, durability, and long-lasting vibrant prints. We believe in providing you with merchandise that stands the test of time."},{"question":"Do you have sizes available for all body types?","answer":"Absolutely. We offer a wide range of sizes to cater to various body types. We aim to ensure every fan can enjoy our Naruto merchandise comfortably and confidently."},{"question":"Can I find merchandise featuring specific Naruto characters?","answer":"Yes, you can! Our Naruto merchandise collection includes t-shirts featuring characters like Itachi Uchiha, members of the Akatsuki, Naruto himself, Madara Uchiha, and more. Explore our selection to find your favorite character designs."},{"question":"Do you offer merchandise for both men and women?","answer":"Yes, our Naruto merchandise is designed for fans of all genders. We believe that everyone should have the chance to express their love for the series through our stylish and comfortable apparel."},{"question":"Do you frequently update your Naruto merchandise collection?","answer":"Yes, we are committed to bringing you the latest and most relevant Naruto merchandise. Our collection is updated periodically with new designs and products, so be sure to check back often to discover fresh additions."},{"question":"How can I style my Naruto merchandise to create fashionable looks?","answer":"We love to inspire our customers with creative styling tips! Check out our website's blog section for articles on how to style your Naruto t-shirts, hoodies, and more to create trendy and eye-catching outfits."},{"question":"What are the benefits of shopping Naruto merchandise from Bewakoof?","answer":"Shopping at Bewakoof offers you a range of advantages including affordable prices, exclusive designs, free shipping, and officially licensed products. We are dedicated to providing you with the best shopping experience possible."},{"question":"Can I return or exchange Naruto merchandise if it doesn't fit or I'm not satisfied?","answer":"Yes, we understand that finding the perfect fit is important. We have a hassle-free return and exchange policy to ensure your satisfaction. Please refer to our Returns & Exchanges page on the website for more details."}]},{"url":"rick-and-morty-merchandise","faq":[{"question":"Are the Rick and Morty products on Bewakoof officially licensed?","answer":"Yes, absolutely! We take pride in offering only officially licensed Rick and Morty merchandise. This means that every item you purchase from us is genuine, authentic, and endorsed by the creators of the show."},{"question":"What types of Rick and Morty merchandise do you offer?","answer":"Our Rick and Morty collection is diverse and extensive. We offer a variety of merchandise, including t-shirts (half sleeve, full sleeve, oversized), hoodies, sweaters, and accessoriesall featuring unique designs and iconic moments from the show."},{"question":"How do I choose the right size for my Rick and Morty t-shirt or hoodie?","answer":"To find the perfect fit, we recommend referring to our detailed size chart. This chart provides measurements for each size, ensuring that you choose the size that suits you best. If you're still unsure, our customer support team is here to assist you."},{"question":"Do you offer Rick and Morty merchandise for both men and women?","answer":"Absolutely! Our collection is designed to cater to fans of all genders. We offer a wide range of styles and sizes for both men and women, ensuring that everyone can find something that suits their preferences."},{"question":"Do you have exclusive deals or discounts on Rick and Morty merchandise?","answer":"Yes, we often have exclusive deals and discounts on our Rick and Morty merchandise. Keep an eye on our website for ongoing promotions and special offers that can help you get your favorite products at even better prices."},{"question":"How can I stay updated on new Rick and Morty merchandise arrivals?","answer":"To stay in the loop about new arrivals, promotions, and other exciting updates, we recommend subscribing to our newsletter. You'll receive timely notifications about all things Rick and Morty straight to your inbox."},{"question":"Can I return or exchange my Rick and Morty merchandise if it doesn't fit or if I'm not satisfied?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your purchase or if the size isn't right, you can initiate a return or exchange within the specified time frame. Please refer to our Returns and Exchanges page for detailed instructions."},{"question":"How long does it take for my Rick and Morty merchandise to be delivered?","answer":"The delivery time may vary based on your location and the shipping option you choose during checkout. Typically, we aim to deliver your merchandise within the estimated delivery window provided at the time of purchase."},{"question":"Can I gift Rick and Morty merchandise to someone?","answer":"Absolutely! Our Rick and Morty merchandise makes for fantastic gifts for fans of the show. Simply choose the items you'd like to gift, and during checkout, you can provide the recipient's shipping address."}]},{"url":"jackets","faq":[{"question":"What types of jackets are available at Bewakoof?","answer":"Bewakoof offers a diverse range of jackets to suit various styles and preferences. Our collection includes puffer jackets, bomber jackets, varsity jackets, windcheater jackets, denim jackets, coats, and more. Explore our selection to find the perfect jacket for any occasion."},{"question":"Are the jackets available for both men and women?","answer":"Yes, our jackets are designed to cater to both men and women. We believe in inclusivity and offer a wide range of styles that are suitable for all genders."},{"question":"How can I determine my jacket size?","answer":"To find your perfect fit, refer to our sizing chart available on the product page. Carefully measure yourself and compare the measurements to the chart. If you're still unsure, feel free to contact our customer support for assistance."},{"question":"Can I return or exchange a jacket if it doesn't fit properly?","answer":"Yes, we understand that sizing can sometimes be challenging when shopping online. We offer easy returns and exchanges within the specified time frame. Please refer to our Return Policy for more details on the process."},{"question":"What are the different types of designs available for jackets?","answer":"We offer a variety of design options for our jackets, including solid colors, color block patterns, typography designs, camouflage prints, AOP (All Over Print) designs, washed finishes, graphic prints, and self-design options. Choose a design that resonates with your personal style."},{"question":"Do you offer jackets for different seasons?","answer":"Yes, our collection includes jackets suitable for various seasons. From warm puffer jackets for winter to lightweight windcheater jackets for transitional months, you'll find options to match your needs."},{"question":"How can I take care of my jacket to ensure its longevity?","answer":"Proper care is essential to maintain the quality of your jacket. Always follow the care instructions on the product label. In general, avoid overwashing, spot clean minor stains, and air dry to preserve colors and fabric integrity."},{"question":"Can I wear my jacket with other outfit pieces?","answer":"Absolutely! Jackets are versatile pieces that can be paired with a wide range of clothing items. Consider matching your jacket with t-shirts, tops, joggers, jeans, and even dresses to create stylish ensembles."},{"question":"Are there jackets available in unisex styles?","answer":"Yes, we offer jackets in unisex styles that are designed to suit all genders. Unisex fit jackets provide a universal and inclusive option for everyone."},{"question":"How do I choose the right neck style for my jacket?","answer":"The neck style can greatly influence the overall look of your jacket. Consider the occasion and your personal style preferences. We offer options such as hooded jackets, stand collar jackets, high neck jackets, spread collar jackets, mandarin collar jackets, round neck jackets, and more."},{"question":"Do you offer jackets in plus sizes?","answer":"Yes, we offer a range of sizes to cater to different body types, including plus sizes. Please refer to our sizing chart to find the size that best fits you."},{"question":"How do I place an order for a jacket?","answer":"Placing an order is simple! Just browse our collection, select the jacket you like, choose your size, and add it to your cart. Follow the checkout process, provide your shipping details and payment information, and you're good to go."},{"question":"How can I contact customer support for further assistance?","answer":"For any questions, concerns, or assistance, our customer support team is here to help. You can reach out to us through our Contact Us page or email us at care@bewakoof.com, and we'll be happy to assist you."}]},{"url":"raksha-bandhan-gifts","faq":[{"question":"What types of Raksha Bandhan gifts does Bewakoof offer?","answer":"At Bewakoof, we offer a diverse range of Raksha Bandhan gifts that cater to various preferences and styles. Our collection includes custom T-shirts, oversized T-shirts, dresses, pants, shirts, jackets, and footwear for both men and women. You'll find options ranging from trendy and fashionable to classic and comfortable."},{"question":"Can I personalize Rakhi gifts at Bewakoof?","answer":"Absolutely! We offer the option to personalize your Rakhi gifts by creating custom T-shirts. You can add a special message, a memorable photo, or a unique design to make your gift truly one-of-a-kind and meaningful."},{"question":"Do you offer budget-friendly Rakhi gift options?","answer":"Yes, we believe that love shouldn't be restricted by budget limitations. Our collection includes a variety of budget-friendly Rakhi gift options that allow you to express your affection without overspending."},{"question":"How can I pay for my Rakhi gifts at Bewakoof?","answer":"We offer multiple easy payment options for your convenience. You can use debit\u002Fcredit cards, net banking, UPI, and mobile wallets to complete your purchase securely and effortlessly."},{"question":"Are there any special offers or discounts on Raksha Bandhan gifts?","answer":"Yes, we often have special offers and discounts on our Raksha Bandhan gifts. Keep an eye out for these deals to get great value for your money while selecting the perfect gift for your sibling."},{"question":"How do I track my Rakhi gift order?","answer":"Once your Rakhi gift order is placed, you'll receive a confirmation email with tracking details. You can use these details to track the status of your order and get real-time updates on its delivery."},{"question":"Can I send Rakhi gifts directly to my sibling's address?","answer":"Yes, you can choose to have your Rakhi gift delivered directly to your sibling's address. During the checkout process, you can provide the recipient's address for delivery, making it a convenient option if you're unable to personally deliver the gift."},{"question":"How can I contact Bewakoof's customer support for assistance?","answer":"For any questions or assistance regarding Raksha Bandhan gifts or any other inquiries, our customer support team is here to help. You can reach out to us through the contact information provided on our website, and we'll be happy to assist you."}]},{"url":"women-joggers-sweatpants","faq":[{"question":"What types of joggers for women are available at Bewakoof?","answer":"Bewakoof offers a diverse range of jogging bottoms for women, including those suitable for workouts, casual outings, and even stylish everyday wear. You can find them in various colours and sizes."},{"question":"How can these joggers be styled?","answer":"You can pair these joggers with a printed T-shirt, a denim jacket, and ballet flats for a weekend brunch, or wear them with a structured blazer and heels for a more refined look. They also work great with our women's T-shirt collection."},{"question":"What sizes are available for these joggers?","answer":"At Bewakoof, we understand the importance of perfect fit. Our joggers come in a range of sizes to ensure you find the right one for you."},{"question":"Are there different colours available for these joggers?","answer":"Yes, our joggers are available in various colours. You can choose the one that best suits your style and preference."},{"question":"Are these joggers comfortable for daily wear?","answer":"Absolutely! Our joggers are made of cotton, known for its comfort and flexibility. They are perfect for gym workouts, jogging, daily chores, or casual outings."},{"question":"Are these joggers affordable?","answer":"Yes, at Bewakoof, we believe style should not come with a hefty price tag. Our joggers are reasonably priced to fit all budgets. "},{"question":"How can I buy these joggers?","answer":"You can buy our women's joggers easily from our online store. Visit 'https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-joggers-sweatpants' to choose from our diverse range."}]},{"url":"men-joggers","faq":[{"question":"What are jogger pants for men?","answer":"Jogger pants for men are a versatile style of bottom wear that combines the comfort of sweatpants with a more tailored and stylish appearance. They are typically made from soft, stretchable, and durable fabrics, featuring an elastic waistband and ankle cuffs. These pants offer a relaxed fit that isn't too tight or baggy, making them suitable for various occasions."},{"question":"What jogger styles are available at Bewakoof?","answer":"We offer a wide range of styles, including denim joggers, sweatpants, and joggers with side panels. We also feature joggers with superhero logos for Batman and Superman fans."},{"question":"How can I style my men's joggers?","answer":"There are numerous ways to style our joggers for men. They can be paired with sweaters, t-shirts or shirts for a casual or smart casual look. For a more playful style, try our joggers featuring superhero logos."},{"question":"What sizes do the joggers for men come in?","answer":"Our joggers for men are designed to fit all customers. Please refer to our size guide for specific measurements."},{"question":"What is the fabric quality of the joggers?","answer":"Our joggers for gents are made from soft, stretchable, and sturdy fabric for maximum comfort whether you're relaxing at home or at the gym."},{"question":"Can I return or exchange mens joggers if they don't fit?","answer":"Yes, we have a return and exchange policy in place. Please refer to our Return Policy section for more details."},{"question":"How often do you update your men's joggers collection?","answer":"We frequently update our collection to keep up with the latest trends and customer demands. Please visit our website regularly to check out our new arrivals."},{"question":"What payment methods do you accept?","answer":"We accept payments through debit and credit cards, net banking, Paytm, and BHIM UPI. You can also pay using wallets like Mobikwik and Freecharge. We also have Cash on Delivery (COD) available for select locations."},{"question":"Are jogger pants for men suitable for athletic activities?","answer":"Yes, our men's jogger pants are designed for comfort and movement, making them suitable for various athletic activities. Their flexible and breathable fabric makes them a popular choice for activities like light workouts, jogging, or yoga."},{"question":"Can I wear jogger pants to a casual hangout with friends?","answer":"Absolutely! Men Jogger pants are perfect for casual hangouts with friends. You can pair them with a simple t-shirt or an oversized t-shirt for a laid-back yet stylish look. Complete the outfit with sneakers or casual shoes."},{"question":"How do I care for my men's jogger pants?","answer":"To maintain the quality of your jogger pants, it's recommended to follow the care instructions provided on the garment's label. Generally, machine wash them in cold water with similar colors, and avoid using harsh detergents or bleach. Hang them to dry or use a low heat setting in the dryer to prevent shrinking."},{"question":"Can I wear jogger pants for men to the office?","answer":"While some workplaces have relaxed dress codes, traditional office settings might not consider jogger pants appropriate. However, if your workplace allows smart-casual attire, you can pair well-fitted men's jogger pants with a button-down shirt and dress shoes to create a more polished look."}]},{"url":"minions-merchandise","faq":[{"question":"What is the Bewakoof Minions Collection?","answer":"The Bewakoof Minions Collection is a curated assortment of trendy apparel and accessories inspired by the beloved Minion characters. From t-shirts and joggers to mobile covers, our collection features unique and playful designs that capture the essence of these mischievous characters."},{"question":"What types of Minions merchandise are available?","answer":"Our Minions Collection offers a variety of merchandise, including Minions t-shirts, joggers, oversized t-shirts, printed t-shirts, and mobile covers. Each item is designed to showcase your love for Minions in a fun and stylish way."},{"question":"Are the Minions t-shirts available for both men and women?","answer":"Absolutely! Our Minions t-shirts are designed to cater to both men and women. We believe that Minion love knows no boundaries, so you'll find a diverse range of sizes and styles to choose from."},{"question":"4. Can I expect high-quality products from the Minions Collection?","answer":"Definitely! At Bewakoof, quality is our priority. All our Minions merchandise is crafted using premium materials to ensure both comfort and durability. Plus, our products are backed by a 100% quality assurance guarantee, so you can shop with confidence."},{"question":"5. Do you offer Cash on Delivery (COD) payment options for Minions merchandise?","answer":"Yes, we do! We understand that convenience matters, which is why we offer Cash on Delivery as a payment option for your Minions merchandise purchases. Choose the payment method that works best for you."},{"question":"6. Is there a Free Shipping option available for Minions merchandise?","answer":"Absolutely! We offer Free Shipping on our Minions merchandise, making your shopping experience even more delightful. Sit back, relax, and let us deliver your favorite Minion goodies right to your doorstep without any extra shipping charges."},{"question":"7. Can I find unique designs in the Minions Collection?","answer":"Certainly! Our Minions Collection features a wide array of unique and fun designs that are sure to stand out from the crowd. Whether you prefer quirky illustrations, iconic quotes, or artistic prints, you'll find something that resonates with your style."},{"question":"Are the Minions joggers comfortable for everyday wear?","answer":"Yes, our Minions joggers are designed with both style and comfort in mind. They're perfect for lounging at home or stepping out for a casual outing. With their playful Minion designs, you'll add a touch of charm to your everyday look."},{"question":"Can I expect a variety of colors in the Minions Collection?","answer":"Absolutely! We understand that personal style varies, so our Minions Collection offers a variety of colors to suit your preferences. Whether you're into vibrant hues or more subtle shades, you'll find options that match your taste."},{"question":"10. How can I contact customer support for further assistance?","answer":"If you have any more questions or need assistance, our friendly customer support team is here to help. You can reach us at care@bewakoof.com with all queries. We do not have a Bewakoof customer care number."}]},{"url":"cargos","faq":[{"question":"1. What types of cargos are available in your collection?","answer":"At Bewakoof, we offer a diverse range of cargos for both men and women. Our collection includes cargo pants, cargo joggers, and cargo shorts, designed to cater to different preferences and occasions."},{"question":"2. Are your cargos available for both men and women?","answer":"Absolutely! We have a dedicated selection of cargos for both men and women. Our designs are tailored to suit the unique styles and needs of each gender."},{"question":"3. How can I choose the right size for my cargos?","answer":"To choose the perfect size, please refer to our detailed size guide provided on the product page. This guide offers measurements and tips to help you find the right fit for your body type."},{"question":"4. Can I return or exchange the cargos if they don't fit well?","answer":"es, we understand that finding the right fit is crucial. We offer a hassle-free return and exchange policy. Please review our Return & Exchange policy on our website for more information on the process."},{"question":"5. What fabrics are used in your cargos?","answer":"Our cargos are crafted using high-quality materials that prioritize both comfort and durability. The specific fabric composition may vary depending on the design. Details about the fabric can be found on each product page."},{"question":"6. Do you offer cargo pants with various pocket styles?","answer":"Yes, our cargo pants come in a variety of pocket styles. From classic cargo pockets to modern variations, our collection offers a range of designs to suit your preferences."},{"question":"7. Are your cargos suitable for different occasions?","answer":"Absolutely! Our cargos are designed to be versatile, making them suitable for various occasions. Whether you're heading to a casual outing, a day of exploration, or a semi-formal event, our collection has options that can be dressed up or down accordingly."},{"question":"8. Can I pair cargos with other items from Bewakoof's collection?","answer":"Definitely! Our cargos can be easily paired with a wide range of tops, t-shirts, shirts, hoodies, and jackets from our collection. Explore the possibilities and create stylish ensembles that reflect your personal style."},{"question":"9. What benefits do I get from shopping at Bewakoof?","answer":"Shopping at Bewakoof comes with several benefits, including affordable prices, free shipping options on eligible orders, and convenient cash on delivery options. Our focus is on providing a seamless shopping experience for our customers."},{"question":"10. How often do you update your cargos collection?","answer":"We strive to keep our collection fresh and up-to-date with the latest trends. We regularly introduce new designs and styles, so be sure to check our website frequently for the latest additions."},{"question":"11. Are the colors of the cargos true to the images displayed on the website?","answer":"While we make every effort to display accurate colors, there may be slight variations due to factors such as screen settings and lighting conditions. We recommend referring to the product images and descriptions for the most accurate representation."},{"question":"12. How can I track my order after purchasing cargos?","answer":"Once your order is confirmed, you will receive a tracking number via email. You can use this tracking number to monitor the progress of your shipment through our logistics partners."}]},{"url":"cargo-pants-for-women","faq":[{"question":"What are cargo pants for women, and why are they popular?","answer":"Cargo pants for women are stylish and functional trousers with multiple pockets on the sides, inspired by military apparel. They have become popular due to their versatile design, which combines fashion with utility. Cargo pants offer ample storage space while providing a chic and casual look suitable for various occasions."},{"question":"What sizes are available in Bewakoof's collection of women's cargo pants?","answer":"Bewakoof offers a wide range of sizes to cater to different body types. Our collection of women's cargo pants typically includes sizes ranging from XS to 3XL. To find your perfect fit, refer to our size chart available on the product page."},{"question":"What fabrics are used in Bewakoof's cargo pants for women?","answer":"At Bewakoof, we prioritize quality and comfort. Our cargo pants for women are crafted from premium fabrics, such as cotton, which provides durability, breathability, and a soft feel against the skin."},{"question":"How do I style cargo pants for different occasions?","answer":"Cargo pants can be styled in various ways depending on the occasion. For a casual look, pair them with a t-shirt or a tank top. To elevate the outfit for a more formal setting, team them up with a blouse or a tucked-in shirt. Accessorize with the right shoes and jewelry to complete your look."},{"question":"Do cargo pants suit all body types?","answer":"Yes, cargo pants for women can flatter different body types when chosen wisely. High-waisted cargo pants work well for hourglass figures, while straight-cut or tapered styles are generally versatile and complement most body shapes. It's essential to find the right fit and silhouette that suits your body type."},{"question":"Are Bewakoof's cargo pants for women suitable for outdoor activities?","answer":"Absolutely! Our cargo pants are designed to be both stylish and functional, making them perfect for outdoor activities, travel, and adventures. The multiple pockets offer convenient storage for your essentials, and the durable fabric ensures they can withstand various outdoor conditions."},{"question":"How do I care for my women cargo pants to maintain their quality?","answer":"To ensure the longevity of your cargo pants, follow the care instructions provided on the product label. Machine wash them in cold water with similar colors, avoid using bleach or harsh detergents, and hang them to dry. Iron on a low-temperature setting if necessary."},{"question":"Can I return or exchange cargo pants if they don't fit well?","answer":"Yes, at Bewakoof, we offer easy returns and exchanges. If your cargo pants don't fit as expected or you are not satisfied with your purchase, you can initiate a return or exchange within the specified time frame. Please refer to our return policy for more details."},{"question":"How can I stay updated with Bewakoof's latest collection of cargo pants for women?","answer":"To stay informed about our latest arrivals, promotions, and offers, subscribe to our newsletter. You can also follow us on social media platforms like Instagram, Facebook, and Twitter for updates on new releases and fashion trends."},{"question":"Does Bewakoof offer any discounts on women's cargo pants?","answer":"Yes, Bewakoof regularly offers discounts and promotions on its products, including women's cargo pants. Keep an eye on our website and social media channels for ongoing sales and special offers to get the best deals on your favorite styles"}]},{"url":"cargo-shorts-for-men","faq":[{"question":"What are cargo shorts for men?","answer":"Cargo shorts for men are a type of shorts characterized by their multiple pockets and relaxed fit. Originally designed for outdoor and utility purposes, cargo shorts have evolved into a fashionable wardrobe staple that offers both style and functionality."},{"question":"What sizes are available for cargo shorts?","answer":"We offer a wide range of sizes to accommodate different body types. Our cargo shorts for men typically come in sizes ranging from XS to XXXL. For accurate sizing information, refer to the size chart on the product page."},{"question":"How do I choose the right size for me?","answer":"To choose the right size, refer to our size chart that provides detailed measurements for each size. Measure your waist and inseam accurately and match them with the corresponding size on the chart to ensure the best fit."},{"question":"What are the different styles of cargo shorts available?","answer":"Our collection includes various styles of cargo shorts for men, including classic cargo shorts, slim-fit cargo shorts, camouflage cargo shorts, printed cargo shorts, and denim cargo shorts. Each style offers a unique look to suit your personal taste."},{"question":"Are the cargo shorts made from high-quality fabric?","answer":"Yes, our cargo shorts for men are crafted from high-quality fabrics to ensure both comfort and durability. We prioritize using materials that are comfortable to wear and can withstand regular use."},{"question":"Can I wear cargo shorts for different occasions?","answer":"Absolutely! Cargo shorts are versatile and can be styled for various occasions. Pair them with casual t-shirts or tank tops for a relaxed look, or dress them up with button-up shirts and loafers for a more polished appearance."},{"question":"Can I return or exchange cargo shorts if they don't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your cargo shorts don't fit as expected, you can initiate a return or exchange within the specified time frame. Please refer to our Returns & Exchanges page for detailed information."},{"question":"How do I place an order for cargo shorts?","answer":"Placing an order for cargo shorts is simple. Visit our website, navigate to the 'Cargo Shorts for Men' section, choose your preferred style and size, and add the item to your cart. Follow the prompts to complete your order, and you're all set!"},{"question":"Can I find cargo shorts for men on sale or at discounted prices?","answer":"Yes, we often offer promotions and discounts on our products, including cargo shorts for men. Keep an eye out for special offers and sales events to get the best deals on our trendy cargo shorts."}]},{"url":"cargo-joggers","faq":[{"question":"What are Cargo Joggers?","answer":"Cargo joggers are a stylish and comfortable type of pants that combine the relaxed fit of joggers with the utilitarian design of cargo pants. They feature multiple pockets, an elastic waistband, and a tapered leg, making them a versatile and trendy choice for casual wear."},{"question":"Why should I choose Cargo Joggers from Bewakoof.com?","answer":"Bewakoof.com offers a wide range of high-quality cargo joggers that blend fashion and functionality. Our joggers are designed for comfort, durability, and style, making them a perfect addition to your wardrobe. With various colors and designs available, you can find the perfect pair to match your personal style."},{"question":"What sizes are available for Cargo Joggers?","answer":"We offer cargo joggers in a range of sizes to accommodate different body types. Our size chart provides detailed measurements to help you find the right fit. Sizes typically range from small to XXL, but availability may vary depending on the specific design."},{"question":"How do I choose the right size for Cargo Joggers?","answer":"To choose the right size, refer to our size chart available on the product page. Measure your waist, hips, and inseam according to the provided guidelines. If you're uncertain about your size, you can also contact our customer support for assistance."},{"question":"Are Cargo Joggers suitable for both men and women?","answer":"Yes, cargo joggers are designed to be unisex and can be worn by both men and women. Bewakoof.com offers a diverse selection of cargo joggers that cater to various tastes and preferences."},{"question":"What materials are Cargo Joggers made from?","answer":"Our cargo joggers are crafted from high-quality materials that ensure both comfort and durability. The specific fabric composition may vary depending on the design, but common materials include cotton blends, twill, and stretchy fabrics for ease of movement."},{"question":"How do I care for my Cargo Joggers?","answer":"Caring for your cargo joggers is easy. Most of our joggers are machine washable. Always check the care instructions on the product label to ensure proper maintenance and longevity. Avoid using harsh detergents or bleach that may damage the fabric or color."},{"question":"Can I wear Cargo Joggers for workouts or outdoor activities?","answer":"Absolutely! Cargo joggers offer both style and functionality, making them suitable for various activities, including light workouts, outdoor adventures, or casual outings. Their comfortable fit and multiple pockets make them a convenient choice for staying active or carrying essentials."},{"question":"Can I return or exchange Cargo Joggers if they don't fit?","answer":"Yes, Bewakoof.com offers a hassle-free return and exchange policy. If the cargo joggers don't fit or meet your expectations, you can initiate a return or exchange within the specified timeframe. Be sure to review our return policy on the website for detailed instructions and terms."}]},{"url":"cargo-shorts","faq":[{"question":"What are cargo shorts?","answer":"Cargo shorts are a style of shorts that typically feature multiple spacious pockets on the sides. These pockets not only add a fashionable touch but also provide practical storage space for your essentials."},{"question":"Are cargo shorts only for men?","answer":"No, cargo shorts are not limited to men's fashion. At Bewakoof, we offer a diverse Cargo Shorts Collection for both men and women, ensuring that everyone can enjoy this stylish and functional trend."},{"question":"How can I style cargo shorts?","answer":"Cargo shorts offer versatile styling options. You can pair them with t-shirts, tank tops, or oversized shirts for a casual look. Combine them with sneakers or flip-flops, and you're ready for various occasions."},{"question":"Are cargo shorts suitable for outdoor activities?","answer":"Absolutely! Cargo shorts were initially designed for outdoor activities due to their functional pockets and comfortable fit. They are perfect for light hikes, casual outdoor outings, and even beach trips."},{"question":"What sizes are available in your Cargo Shorts Collection?","answer":"Our Cargo Shorts Collection includes a range of sizes to cater to different body types. We offer sizes from XS to 3XL, ensuring that you find the perfect fit."},{"question":"How do I choose the right size for cargo shorts?","answer":"To choose the right size, refer to our size chart available on the product page. Measure your waist and hips, and compare them to the measurements provided to find your ideal size."},{"question":"What materials are your cargo shorts made of?","answer":"Our cargo shorts are crafted from lightweight and breathable materials, such as cotton, that ensure comfort even on warm days."},{"question":"Can I wear cargo shorts for a night out?","answer":"Absolutely! Cargo shorts can be dressed up with the right accessories and a stylish top, making them suitable for a casual night out with friends."},{"question":"Do cargo shorts come in different colors?","answer":"Yes, our Cargo Shorts Collection features a variety of colors, from classic neutrals like black and khaki to vibrant shades. Choose the color that best suits your style."},{"question":"How do I care for my cargo shorts?","answer":"To ensure the longevity of your cargo shorts, follow the care instructions on the product's label. Typically, machine wash them with similar colors in cold water, and avoid using bleach or harsh detergents."},{"question":"Can I return or exchange cargo shorts if they don't fit?","answer":"Yes, we offer hassle-free returns and exchanges. If the cargo shorts don't fit or meet your expectations, you can initiate a return or exchange within the specified period. Refer to our Return Policy for more details."},{"question":"Are cargo shorts appropriate for formal occasions?","answer":"Cargo shorts are more suitable for casual and relaxed settings. While they may not be the best choice for formal occasions, they're perfect for casual events and outings."},{"question":"Are cargo shorts a trend or a classic style?","answer":"Cargo shorts have transitioned from a purely utilitarian style to a trendy and versatile fashion statement. They continue to remain popular due to their comfort and functional design."},{"question":"How do I place an order for cargo shorts?","answer":"Placing an order for cargo shorts is easy. Visit our website, select the cargo shorts you like, choose the size and color, and add them to your cart. Proceed to checkout, provide your shipping details, and complete the payment process."},{"question":"Can I find matching tops for cargo shorts on Bewakoof?","answer":"Yes, we offer a wide range of tops, including t-shirts, tank tops, and oversized shirts, that can be paired perfectly with cargo shorts to create stylish and coordinated outfits."},{"question":"Are cargo shorts available in plus sizes?","answer":"Yes, our Cargo Shorts Collection includes a variety of sizes, including plus sizes, to ensure that everyone can enjoy this fashionable trend."},{"question":"How often do you update your cargo shorts collection?","answer":"We regularly update our collections to keep up with the latest trends. Visit our website frequently to explore new arrivals and stay on top of the fashion game."},{"question":"Are cargo shorts suitable for travel?","answer":"Absolutely! Cargo shorts' functional pockets make them great for carrying travel essentials. Their comfort and versatility also make them an ideal choice for exploring new destinations."},{"question":"Can I find oversized t-shirts to pair with cargo shorts on Bewakoof?","answer":"Yes, we offer a range of oversized t-shirts that can be paired with cargo shorts for a trendy and comfortable outfit."},{"question":"Why should I choose Bewakoof for cargo shorts?","answer":"Bewakoof is committed to offering high-quality, stylish, and affordable clothing. Our Cargo Shorts Collection reflects these values, ensuring you get the best value for your money."}]},{"url":"short-tops-for-women","faq":[{"question":"What types of short tops are available at Bewakoof?","answer":"Bewakoof offers a diverse range of short tops for women, including crop tops, tank tops, printed short tops, plain short tops, oversized tops, tie-dye tops, half sleeve tops, full sleeve tops, and puff sleeve tops. Each style caters to different preferences and occasions, ensuring you find the perfect fit for your wardrobe."},{"question":"How do I choose the right size for my short top?","answer":"To select the right size for your short top, refer to our detailed size chart available on the product page. The chart provides measurements for bust, waist, and hip, helping you choose the size that fits you best. If you have any further questions, feel free to contact our customer support team."},{"question":"Can I find short tops suitable for both casual and formal occasions?","answer":"Absolutely! Bewakoof's collection of short tops is designed to offer versatility, allowing you to find options suitable for various occasions. You can choose from casual styles for everyday wear or opt for more elegant designs to dress up for formal events."},{"question":"How do I care for my new short top?","answer":"Caring for your new short top is easy. Follow the care instructions provided on the garment's label. In general, it's advisable to wash your short tops in cold water with mild detergent. Avoid using bleach or harsh chemicals. To maintain the fabric's quality, consider air drying your short tops instead of using a dryer."},{"question":"Are the short tops made from comfortable materials?","answer":"Yes, at Bewakoof, we prioritize both style and comfort. Our short tops are crafted from high-quality materials that are soft, breathable, and comfortable to wear. You can enjoy a stylish look without compromising on comfort."},{"question":"Can I find matching bottom wear to pair with my short tops?","answer":"Absolutely! Bewakoof offers a wide range of bottom wear options, including jeans, joggers, cargo pants, and more, to perfectly complement your short tops. You can mix and match to create stylish and coordinated outfits."},{"question":"Do you offer plus sizes for short tops?","answer":"Yes, we believe in inclusive fashion, and our collection includes a variety of sizes to cater to different body types. You can find short tops in plus sizes that are just as stylish and trendy as our regular sizes."},{"question":"How can I track my order?","answer":"Once your order is placed, you will receive a confirmation email with a tracking number. You can use this tracking number to monitor the status of your order and get real-time updates on its delivery progress."},{"question":"Can I find other women's clothing items on Bewakoof?","answer":"Yes, Bewakoof offers a wide range of women's clothing beyond short tops. You can explore our collection of T-shirts, dresses, bottoms, activewear, and accessories to enhance your wardrobe and express your unique style."}]},{"url":"parachute-pants","faq":[{"question":"What are parachute pants?","answer":"Parachute pants are a style of pants characterized by their comfortable fit, elasticized cuffs, and distinctive pocket placements. Originally designed for skydivers, these pants have made their mark in the fashion world, offering a blend of utility and style."},{"question":"Why should I choose parachute pants from Bewakoof?","answer":"Bewakoof offers a diverse collection of stylish parachute pants that cater to both men and women. Our range includes various styles, colors, and fits, ensuring there's something for every fashion preference. Plus, our commitment to quality and trendsetting designs sets us apart."},{"question":"Can I find parachute pants for both men and women at Bewakoof?","answer":"Absolutely! Our collection includes parachute pants for both men and women, ensuring that everyone can enjoy the comfort and style these pants offer."},{"question":"What styles of parachute pants are available at Bewakoof?","answer":"We offer a range of styles, including camouflage parachute pants for an adventurous look, baggy parachute pants for a relaxed vibe, basic parachute pants for minimalist chic, and cargo parachute pants for a blend of style and functionality."},{"question":"How do I choose the right size of parachute pants?","answer":"To find the perfect fit, refer to our size charts provided on each product page. Measure your waist, hips, and inseam accurately and compare them with the size chart to select the size that best matches your measurements."},{"question":"Can I return or exchange parachute pants if they don't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your parachute pants don't fit as expected, you can initiate a return or exchange within the specified timeframe. Please refer to our Returns and Exchanges policy for more details."},{"question":"How do I care for my parachute pants?","answer":"Caring for your parachute pants is simple. We recommend checking the care instructions provided on the product label. In general, machine wash them in cold water and avoid using bleach. Tumble dry on low heat or air dry to maintain the fabric's quality."},{"question":"How do I place an order for parachute pants?","answer":"Placing an order for parachute pants is easy. Simply browse our collection on the website, select the style and size you prefer, add the item to your cart, and proceed to checkout. Follow the prompts to complete your order."}]},{"url":"cargo-pants","faq":[{"question":"What are cargo pants?","answer":"Cargo pants are a style of pants characterized by their multiple pockets and utilitarian design. They are versatile and comfortable, making them a popular choice for various casual occasions."},{"question":"Do you offer cargo pants for both men and women?","answer":"Absolutely! We offer a wide range of cargo pants for both men and women, designed to cater to different preferences and styles."},{"question":"What types of cargo pants do you have?","answer":"Our collection includes various types of cargo pants, such as Slim Fit Cargo Pants, Oversized Cargo Pants, Loose Fit Cargo Pants, and Relax Fit Cargo Pants. Each type is designed to offer a unique blend of style and comfort."},{"question":"How do I style cargo pants with other garments?","answer":"Cargo pants are incredibly versatile and can be styled with T-Shirts, Oversized T-Shirts, Shirts, Hoodies, jackets, and Casual Shoes. Experiment with different combinations to create your own unique look."},{"question":"Are cargo pants suitable for formal occasions?","answer":"Cargo pants are generally more suited for casual or streetwear looks. However, depending on the specific style and occasion, you might be able to incorporate them into a semi-formal outfit."},{"question":"How do I choose the right size of cargo pants?","answer":"We provide a detailed size guide to help you choose the perfect fit. Measure your waist, hips, and inseam, and then refer to the guide to find the size that matches your measurements."},{"question":"Can I return or exchange cargo pants if they don't fit well?","answer":"Yes, we have a hassle-free return and exchange policy. If your cargo pants don't fit as expected, you can initiate a return or exchange within the specified timeframe."},{"question":"What materials are your cargo pants made of?","answer":"Our cargo pants are crafted from high-quality materials to ensure both comfort and durability. The specific material composition might vary depending on the style and design."},{"question":"How do I care for my cargo pants?","answer":"Caring for your cargo pants is easy. Most of our cargo pants are machine washable. Check the care instructions on the product label for specific details."},{"question":"Do you offer free shipping for cargo pants?","answer":"Yes, we offer free shipping on eligible orders. Make sure to check our shipping policy for more details and any applicable terms."},{"question":"Can I track my cargo pants order?","answer":"Absolutely. Once your order is shipped, you'll receive a tracking number that you can use to monitor the delivery status of your cargo pants."}]},{"url":"parachute-pants-for-women","faq":[{"question":"What are parachute pants for women?","answer":"Parachute pants for women are stylish and functional bottoms made from lightweight and breathable fabric. They are known for their comfortable fit and versatile design, suitable for various occasions and styles."},{"question":"What styles of parachute pants do you offer?","answer":"We offer a diverse range of parachute pants styles for women, including cargo, camouflage, baggy, and basic varieties. Each style caters to different fashion preferences, allowing you to choose the one that best suits your taste."},{"question":"How do I choose the right size?","answer":"To find your perfect fit, refer to our size chart available on the product page. Measure your waist, hips, and inseam, and match the measurements to the chart. If you're still unsure, our customer support team is here to assist you."},{"question":"Can parachute pants be worn in hot weather?","answer":"Absolutely! Our parachute pants are made from lightweight and breathable fabric, making them an excellent choice for hot weather. The fabric allows for optimal air circulation, keeping you cool and comfortable."},{"question":"Are these parachute pants suitable for different occasions?","answer":"Yes, our parachute pants are highly versatile. You can style them for various occasions, from casual streetwear with sneakers to a night out with heels or ankle boots. They adapt well to different settings, giving you the freedom to express your style."},{"question":"How do I care for my parachute pants?","answer":"To care for your parachute pants and ensure their longevity, follow these tips:\u003Cbr\u003E- Machine wash on a gentle cycle using cold water. \u003Cbr\u003E- Avoid overloading pockets with heavy items to prevent stretching. \u003Cbr\u003E- Air-dry your pants instead of using high heat in the dryer. \u003Cbr\u003E- Read and follow the care label instructions for specific guidance."},{"question":"Can I return or exchange parachute pants if they don't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If your parachute pants don't fit as expected, you can initiate a return or exchange within the specified time frame. Please review our Returns & Exchanges policy on our website for more details."},{"question":"Do you offer international shipping?","answer":"Yes, we offer international shipping to several countries. During the checkout process, you can select your country to view the available shipping options and associated costs."},{"question":" Are there any discounts or promotions available for parachute pants?","answer":"We often have special promotions, discounts, and offers on our products, including parachute pants. Keep an eye on our website or subscribe to our newsletter to stay updated on the latest deals."},{"question":"How do I style parachute pants for a trendy look?","answer":"Styling parachute pants is fun and versatile. For a trendy look, you can pair them with a graphic tee and sneakers for a casual vibe. To elevate your style, consider adding accessories like a statement belt, layered necklaces, or a stylish jacket."}]},{"url":"coca-cola-merchandise","faq":[{"question":"What types of Coca Cola merchandise do you offer?","answer":"We offer a wide range of Coca Cola merchandise, with a focus on t-shirts. Our collection includes Coca Cola t-shirts for both men and women, featuring various designs, colors, and styles. From classic red t-shirts to printed options, we have something to suit every taste."},{"question":"Are the Coca Cola t-shirts available in different sizes?","answer":"Yes, we understand that one size doesn't fit all. Our Coca Cola t-shirts are available in a range of sizes to cater to different body types. You can find size options in the product description on each t-shirt page."},{"question":"What materials are used for the Coca Cola t-shirts?","answer":"We use premium-quality fabrics to craft our Coca Cola t-shirts. The materials vary depending on the design, but we ensure that all our t-shirts are comfortable and durable, so you can enjoy them for a long time."},{"question":"Can I find Coca Cola t-shirts for women and men in different designs?","answer":"Absolutely! Our collection includes Coca Cola t-shirts for both women and men, with distinct designs tailored to each gender. You'll find a wide variety of graphics, logos, and prints, making it easy to find a t-shirt that suits your style."},{"question":"Do you offer full-sleeve Coca Cola t-shirts?","answer":"Yes, we offer both half-sleeve and full-sleeve Coca Cola t-shirts. Whether you prefer the casual look of half-sleeves or the added coverage of full-sleeves, we have options to meet your preferences."},{"question":"Can I buy oversized Coca Cola t-shirts?","answer":"Yes, we have a selection of oversized Coca Cola t-shirts for those who love a relaxed and comfortable fit. Our oversized t-shirts are perfect for creating trendy and laid-back outfits."},{"question":"How do I choose the right size for my Coca Cola t-shirt?","answer":"To find the perfect size, we recommend referring to our size chart available on each t-shirt page. It provides measurements for chest, length, and shoulder, allowing you to choose the size that fits you best."},{"question":"Can I return or exchange my Coca Cola t-shirt if it doesn't fit or if I change my mind?","answer":"Yes, we offer a hassle-free return and exchange policy. If the t-shirt doesn't fit or if you change your mind, you can return or exchange it within the specified timeframe. Please refer to our Returns & Exchanges page for more details."},{"question":"How can I stay updated on the latest Coca Cola merchandise and promotions?","answer":"To stay updated on the latest Coca Cola merchandise, promotions, and exclusive offers, you can subscribe to our newsletter. You can also follow us on our social media channels for regular updates and exciting announcements."},{"question":"How secure are my payments when shopping on Bewakoof?","answer":"Your security is our priority. We use secure payment gateways to ensure that your payment information is protected and encrypted during the transaction process. You can shop with confidence on our platform."},{"question":"Do you offer international shipping for Coca Cola merchandise?","answer":"Currently, we only offer shipping in selected countries. However, we are continuously expanding our reach to provide our merchandise to more customers worldwide."},{"question":"Can I track my Coca Cola merchandise order?","answer":"Yes, once your order is processed and shipped, you will receive a tracking number via email. You can use this tracking number to monitor the status and location of your order until it reaches your doorstep."}]},{"url":"bewakoof-supima","faq":[{"question":"What is Supima Cotton?","answer":"Supima Cotton, short for 'Superior Pima,' is a premium variety of cotton known for its extraordinary softness, durability, and superior quality. It is exclusively grown in the southwestern United States and represents only a fraction of the world's cotton production. With its extended fiber length, Supima cotton creates garments that are incredibly soft to the touch and boast exceptional strength."},{"question":"What makes Supima cotton special?","answer":"Supima cotton, short for 'Superior Pima,' is a premium cotton variety grown exclusively in the United States. It constitutes just 1% of the world's cotton supply. Supima cotton's longer, finer fibers make it softer, more breathable, and stronger than regular cotton, providing an unparalleled level of comfort and luxury."},{"question":"What types of t-shirts are available in the Bewakoof® American Pima collection?","answer":"\u003Cp\u003EThe Bewakoof® American Pima collection includes a diverse range of t-shirts for both men and women. For men, there are classic solid colors, trendy prints, and various styles to suit different preferences. Women can explore a selection of chic and stylish \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-printed-t-shirts'\u003Egraphic tees\u003C\u002Fa\u003E and pastel shades, offering something for every fashion taste.\u003C\u002Fp\u003E"},{"question":"How is Bewakoof® American Pima different from regular t-shirts?","answer":"Bewakoof® American Pima t-shirts stand out from regular t-shirts due to the use of premium Supima cotton. Unlike regular cotton, Supima cotton offers enhanced softness, breathability, and durability. It provides a luxurious feel, superior comfort, and lasting quality that sets it apart from conventional t-shirts."},{"question":"Are Bewakoof® American Pima t-shirts suitable for all-day wear?","answer":"Absolutely! The comfort and breathability of Supima cotton make Bewakoof® American Pima t-shirts ideal for all-day wear. Whether you're running errands, going to work, or simply relaxing at home, these t-shirts will keep you feeling fresh and comfortable throughout the day."},{"question":"Can I find Supima t-shirts for both casual and dressier occasions?","answer":"Yes, Bewakoof® American Pima offers a versatile collection that caters to both casual and dressier occasions. The range includes t-shirts with trendy designs suitable for everyday wear, as well as more sophisticated options that can be dressed up for special events."},{"question":"Are the prices of Bewakoof® American Pima t-shirts affordable?","answer":"Absolutely! Bewakoof.com is committed to providing premium quality products at unbeatable prices. By eliminating middlemen and selling directly to customers, they ensure that Supima t-shirts remain affordable and accessible to all fashion enthusiasts."},{"question":"What are the benefits of Supima cotton's breathability?","answer":"Supima cotton's long and fine fibers create a highly breathable fabric that allows air to circulate freely. This feature keeps you cool and comfortable, making Bewakoof® American Pima t-shirts an excellent choice for warm weather or active lifestyles."},{"question":"How durable are Bewakoof® American Pima t-shirts?","answer":"Supima cotton's inherent strength contributes to the exceptional durability of Bewakoof® American Pima t-shirts. The fibers are resilient, allowing the t-shirts to maintain their shape and color even after multiple washes, ensuring that they stand the test of time."},{"question":"Is there free shipping available for Bewakoof® American Pima products?","answer":"Yes, Bewakoof.com offers free shipping on all orders, making it even more convenient to get your hands on your favorite Supima t-shirts without any additional shipping costs."},{"question":"Can I opt for Cash on Delivery (COD) for Bewakoof® American Pima orders?","answer":"Yes, for your convenience and peace of mind, Bewakoof.com provides Cash on Delivery (COD) as a payment option. With COD, you can pay for your order only when it arrives at your doorstep, ensuring a secure and risk-free transaction."},{"question":"How can I shop the Bewakoof® American Pima collection?","answer":"Shopping the Bewakoof® American Pima collection is easy! Simply visit the website and explore the premium range of Supima cotton t-shirts for men and women. Add your favorite picks to the cart and follow the checkout process to place your order."}]},{"url":"bewakoof-air","faq":[{"question":"What is the Bewakoof® AIR Series?","answer":"The Bewakoof® AIR Series is a collection of clothing designed to meet your new season needs. It features garments made from breathable fabric, providing high ventilation and keeping you cool and fresh throughout the day. The AIR Series offers lightweight and skin-friendly clothing that is soft to the touch, ensuring maximum comfort. With its multi-seasonal versatility, the AIR Series is perfect for all-year-round fashion."},{"question":"What are the key features of the AIR Series?","answer":"\u003Cp\u003EThe AIR Series stands out with its key features:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Breathable Fabric: The garments in the AIR Series are made from breathable materials that allow air circulation, keeping you cool and comfortable.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Lightweight: The AIR Series offers featherlight clothing that allows for easy movement and a relaxed fit.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Skin-Friendly: The fabric used in the AIR Series is gentle on the skin, providing a soft and comfortable feel.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- High Ventilation: The garments in the AIR Series ensure optimal airflow, keeping you fresh and sweat-free.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Multi-Seasonal: The AIR Series is designed to be versatile, suitable for various seasons and weather conditions.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Coziness of the Fabric: Despite being lightweight, the AIR Series provides warmth and comfort.\u003C\u002Fp\u003E"},{"question":"What categories are available in the AIR Series?","answer":"\u003Cp\u003EThe AIR Series offers the following categories of clothing:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- T-Shirts: Stylish and comfortable, perfect for everyday wear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Oversized T-Shirts: Relaxed and trendy, offering a modern twist to your wardrobe.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Joggers: Functional and stylish, ideal for workouts or casual outings.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Shorts: Cool and chic, great for warm weather and outdoor activities.\u003C\u002Fp\u003E\u003Cbr\u003E"},{"question":"Can I find different designs and styles in the AIR Series?","answer":"Yes, the AIR Series offers a variety of designs and styles to suit different preferences. From solid colors to patterns and prints, you'll find options that match your personal style. Whether you prefer minimalist designs or bold statements, the AIR Series has something for everyone."},{"question":"How can I have a convenient online shopping experience with Bewakoof®?","answer":"Bewakoof® strives to provide a convenient and user-friendly online shopping experience. Simply visit our website, browse the AIR Series collection, and select the items you like. Add them to your cart and proceed to the secure checkout. Our website is designed to make the shopping process smooth and hassle-free, ensuring that you have a pleasant experience from start to finish."},{"question":"Are there any offers or discounts available on the AIR Series?","answer":"Yes, Bewakoof® frequently offers great deals and discounts on the AIR Series and other collections. Keep an eye out for our promotions and special offers, allowing you to enjoy fashionable finds at budget-friendly prices. Visit our website regularly or subscribe to our newsletter to stay updated on the latest offers and discounts."},{"question":"Are the prices of the AIR Series budget-friendly?","answer":"Absolutely! At Bewakoof®, we believe that fashion should be accessible to all. The AIR Series is priced competitively, providing you with quality clothing at affordable rates. We strive to offer budget-friendly prices without compromising on style or comfort."},{"question":"How do I take care of my AIR Series garments?","answer":"To ensure the longevity of your AIR Series garments, we recommend following these care instructions. Machine wash your clothes with similar colors, using a gentle detergent. Avoid using bleach or harsh chemicals. For best results, tumble dry on low or hang to dry. By following these instructions, you can maintain the exceptional quality and comfort of your AIR Series items."}]},{"url":"teenage-mutant-ninja-turtles-merchandise","faq":[{"question":"What kind of TMNT merchandise do you offer?","answer":"At Bewakoof®, we offer a wide range of TMNT merchandise, including TMNT T-shirts, clothing, and accessories. Our collection includes oversized T-shirts for men and women, hoodies, dresses, tie-dye T-shirts, boyfriend T-shirts, shorts, vests, and more. We have something for every TMNT fan!"},{"question":"Are your TMNT products of good quality?","answer":"Yes, we prioritize quality in our TMNT merchandise. Our products are crafted using high-quality materials to ensure durability and comfort. We strive to provide you with TMNT apparel that you can enjoy for a long time while proudly displaying your love for the turtles."},{"question":"How can I choose the right size for my TMNT merchandise?","answer":"To select the correct size, we recommend referring to our size guide. It provides detailed measurements and guidance on how to measure yourself accurately. By following the size guide, you can choose the perfect fit for your TMNT apparel and ensure maximum comfort."},{"question":"Can I return or exchange TMNT merchandise if it doesn't fit or if I change my mind?","answer":"Yes, we offer easy returns and exchanges. If your TMNT merchandise doesn't fit properly or if you change your mind, you can initiate a return or exchange within the specified time frame. Please refer to our returns and exchanges policy for more information on the process and any applicable conditions."},{"question":"Do you offer any discounts or special offers on TMNT merchandise?","answer":"Yes, we often provide great offers and discounts on our TMNT merchandise. Stay updated with our website and social media channels to be the first to know about any ongoing promotions, seasonal sales, or exclusive deals. Take advantage of these opportunities to grab your favorite TMNT apparel at discounted prices."},{"question":"How long does shipping take for TMNT merchandise?","answer":"We strive to process and dispatch your TMNT merchandise as quickly as possible. The shipping time may vary depending on your location and the shipping method chosen. Once your order is placed, you will receive a confirmation email with the estimated delivery time. For more specific information, please refer to our shipping policy."},{"question":"Do you ship TMNT merchandise internationally?","answer":"Yes, we offer international shipping for our TMNT merchandise. Wherever you are in the world, you can proudly wear your TMNT apparel and showcase your turtle power. Please note that international shipping times and fees may vary based on your location."},{"question":"Can I find exclusive TMNT designs at Bewakoof®?","answer":"Yes, we offer you exclusive TMNT designs that you won't find anywhere else. Our aim is to offer a diverse range of designs that cater to different styles and preferences. Browse through our collection to discover unique TMNT merchandise that reflects your personal taste."},{"question":"Are the prices of TMNT merchandise budget-friendly?","answer":"Absolutely! We believe that everyone should have the opportunity to express their TMNT fandom without breaking the bank. That's why we offer budget-friendly prices on our TMNT merchandise, ensuring that you can find something within your desired price range. Check out our collection and find affordable TMNT apparel that suits your budget."},{"question":"Can I contact customer support if I have any further questions or concerns?","answer":"Certainly! If you have any additional questions, concerns, or require further assistance regarding our TMNT merchandise, our friendly customer support team is ready to help. You can reach out to us through our contact page, and we'll be more than happy to assist you."}]},{"url":"harem-pants-for-men","faq":[{"question":"What styles of harem pants are available at Bewakoof?","answer":"Bewakoof offers a variety of harem pant styles for men, including solid colors, patterns, with unique designs."},{"question":"Are the harem pants at Bewakoof true to size?","answer":"Bewakoof provides a size chart to help you choose the right size for men's harem pants. It is recommended to refer to the size chart and measurements to ensure an accurate fit."},{"question":"What sizes are available for men's harem pants at Bewakoof?","answer":"Bewakoof offers harem pants in multiple sizes, ranging from small to extra-large. The specific available sizes may vary depending on the product."},{"question":"Is there a return or exchange policy for harem pants purchased from Bewakoof?","answer":" Bewakoof has a return and exchange policy. You can refer to our website for detailed information regarding our policy and any specific conditions for returning or exchanging harem pants."},{"question":"Are the harem pants for men at Bewakoof made of good quality material?","answer":"Bewakoof is known for its commitment to quality. The harem pants for men available at Bewakoof are generally made of good quality materials that ensure durability and comfort."},{"question":"Can I find discounts or promotions on men's harem pants at Bewakoof?","answer":"Bewakoof occasionally offers discounts, promotions, or special offers on its products, including men's harem pants. It's recommended to check our website or subscribe to their newsletter for updates on discounts and offers."},{"question":"How can I place an order for men's harem pants at Bewakoof?","answer":"To place an order for men's harem pants at Bewakoof, you can visit our website, browse the collection, select the desired style and size, add it to your cart, and proceed to checkout."},{"question":"What payment methods are accepted by Bewakoof?","answer":"Bewakoof accepts various payment methods, including debit cards, credit cards, net banking, UPI, and mobile wallets, making it convenient for customers to complete their purchases."},{"question":"How long does it take to receive men's harem pants after placing an order from Bewakoof?","answer":"The delivery time for men's harem pants from Bewakoof may vary depending on your location and the specific product availability. Bewakoof typically provides an estimated delivery time during the checkout process."}]},{"url":"harem-pants","faq":[{"question":"What are harem pants?","answer":"Harem pants are loose-fitting pants that are gathered at the waist and ankles, creating a voluminous and relaxed silhouette."},{"question":"Are harem pants available for both men and women?","answer":"Yes, harem pants are available for both men and women at Bewakoof."},{"question":"What sizes are available for harem pants at Bewakoof?","answer":"Bewakoof offers harem pants in various sizes, ranging from small to extra-large."},{"question":"Are the harem pants at Bewakoof made of good quality material?","answer":"Bewakoof is known for its high-quality products, and our harem pants are made of good quality materials."},{"question":"Can I return or exchange harem pants purchased from Bewakoof?","answer":"Bewakoof has a return and exchange policy. You can check our website for specific details regarding returns and exchanges."},{"question":"Are there different styles and colors available for harem pants at Bewakoof?","answer":"Yes, Bewakoof offers a wide range of styles and colors for harem pants, allowing you to choose according to your preference."},{"question":"How can I place an order for harem pants at Bewakoof?","answer":"To place an order for harem pants at Bewakoof, you can visit our website, select the desired style and size, add it to your cart, and proceed to checkout."},{"question":"What payment methods are accepted by Bewakoof?","answer":"Bewakoof accepts various payment methods, including debit cards, credit cards, net banking, UPI, and mobile wallets."},{"question":"Does Bewakoof offer any discounts or promotions on harem pants?","answer":"Bewakoof occasionally offers discounts and promotions on its products. You can check their website or subscribe to their newsletter for updates on discounts and offers."},{"question":"How long does it take to receive the harem pants after placing the order?","answer":"The delivery time may vary depending on your location. Bewakoof generally provides an estimated delivery time during the checkout process."},{"question":" How are harem pants different from regular pants?","answer":"Harem pants have a distinctive style characterized by their baggy and tapered shape, with a drop crotch and gathered ankles, unlike regular pants that have a more traditional fit."},{"question":"Can harem pants be worn by both men and women?","answer":"Yes, harem pants can be worn by both men and women. They are a versatile style that suits various body types."},{"question":"Are harem pants suitable for all occasions?","answer":"Harem pants are versatile and can be styled for different occasions. They can be dressed up or down, depending on the fabric, pattern, and accessories you choose."},{"question":"What body types do harem pants flatter?","answer":"Harem pants can be flattering for various body types. They tend to suit individuals with a slim or medium build, but it ultimately depends on personal preference and how they are styled."},{"question":"What should I wear with harem pants?","answer":"Harem pants can be paired with a variety of tops, such as fitted t-shirts, tank tops, crop tops, or blouses. It's best to choose a top that balances the loose silhouette of the pants."},{"question":"Are harem pants comfortable to wear?","answer":"Yes, harem pants are generally comfortable to wear due to their loose fit and breathable fabrics. They provide ease of movement and are often favored for casual and relaxed settings."},{"question":"Can harem pants be worn in hot weather?","answer":"Yes, harem pants are suitable for hot weather as they are often made from lightweight and breathable fabrics like cotton or linen, allowing air circulation and keeping you cool."},{"question":"Are harem pants appropriate for formal occasions?","answer":"While harem pants are more commonly associated with casual or bohemian styles, there are dressier versions available that can be suitable for certain formal occasions. It depends on the specific event and how you style them."},{"question":"How do I care for harem pants?","answer":"The care instructions for harem pants may vary depending on the fabric. It's best to check the label or follow the specific care instructions provided by the manufacturer. In general, most harem pants can be machine washed on a gentle cycle or hand washed and air-dried to maintain their quality."}]},{"url":"women-boxer-shorts","faq":[{"question":"What are the benefits of wearing boxer shorts for women?","answer":"Boxer shorts are becoming increasingly popular among women for their comfort and convenience. Wearing boxer shorts for women can provide a range of benefits, such as greater freedom of movement, improved breathability, and enhanced temperature regulation. Additionally, boxer shorts can help to reduce the risk of skin irritation and chafing due to their loose fit. Moreover, boxer shorts are available in a wide variety of styles and colors, allowing women to express their personal style while enjoying the benefits that come with wearing them."},{"question":"Are there any differences between men's and women's boxer shorts?","answer":"\u003Cp\u003EMen's and women's boxer shorts are both comfortable and practical undergarments. However, there are some subtle differences between the two that make them suitable for different body types. \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-boxer-shorts'\u003E\u003Cstrong\u003EMen's boxer shorts\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E tend to be slightly longer than women's boxer shorts, and they also typically have a more relaxed fit. Women’s boxer shorts often feature a higher waistline and may contain additional features such as elastic waistbands or drawstrings. Additionally, men's boxers usually have a fly opening at the front while women’s boxers do not.\u003C\u002Fp\u003E"},{"question":"How should women's boxer shorts fit?","answer":"Women's boxer shorts are a comfortable and stylish option for everyday wear. They should be snug enough to stay in place, but not so tight that they pinch or cause discomfort. The waistband should sit securely on the waist, while the legs of the shorts should fit loosely around the thighs and hips. The length of the shorts should be long enough to avoid riding up or bunching when sitting or moving around. When shopping for boxer shorts, it is important to select a size that fits properly and allows for unrestricted movement."},{"question":"Is it possible to return or exchange women's boxers at Bewakoof?","answer":"\u003Cp\u003EYes, it is possible to return or exchange women's boxers at Bewakoof. We offer a 15-day return and exchange period from the date of purchase for all our products. You can refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Eexchange & return policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for more details on how to proceed with the returns\u002Fexchanges. If you have any other queries, please feel free to contact us!\u003C\u002Fp\u003E"}]},{"url":"teens","faq":[{"question":"What type of clothing do Bewakoof offer for teens?","answer":"We provide a wide selection of the latest trends in teen clothing including t-shirts, shirts, jeans, shorts, Joggers and trousers."},{"question":"Does Bewakoof offer any discounts on kids wear?","answer":"Yes! We have special offers and discounts available for our customers on kidswear purchases from time to time. Check out our website or social media pages to stay updated about such offers!"},{"question":"Are there different sizes available for kid's clothes?","answer":"Yes, we provide multiple size options in all kinds of kids wear including t-shirts, shirts, jeans and more so that your child can find their perfect fit at Bewakoof! "},{"question":"Is free shipping available when I order kids clothing at Bewakoof?","answer":"Yes, we currently offer free shipping on orders above Rs 499 in India!"}]},{"url":"spider-man-phone-covers","faq":[{"question":"What material are Spiderman phone covers made of?","answer":"Spiderman phone covers are made of various materials such as silicone, plastic, rubber, and leather. Each material offers different levels of protection and durability."},{"question":"Where can i buy spiderman mobile covers online?","answer":"You can shop for the best quality spiderman cases from Bewakoof.com."},{"question":"Are Spiderman phone covers affordable?","answer":"Spiderman phone covers are available in a wide range of prices depending on the material, design, and brand. Some are more affordable than others, while some may be more expensive due to their quality and durability. However, overall, Spiderman phone covers are relatively affordable and can be a great way to protect your phone while showcasing your love for the superhero. "},{"question":"Does Bewakoof provide free shipping on Spiderman covers?","answer":"Bewakoof.com provide free shipping on all the orders above Rs.499."}]},{"url":"batman-phone-covers","faq":[{"question":"What type of phone covers does Bewakoof offer?","answer":"At Bewakoof, we offer a variety of Batman-themed phone cases and covers. Our covers are designed to fit snugly on your device and provide superior protection with precision cutouts to ensure full access to all the buttons, ports, and features of the device. "},{"question":"Are Bewakoof's Batman phone covers durable?","answer":"Yes! Our Batman phone covers are made with premium quality materials to ensure maximum protection for your device. Plus, they are designed for durability and long-lasting use so you can be sure that your device is safe and secure wherever you go."},{"question":"Does Bewakoof offer free shipping on orders?","answer":"Yes! Get free shipping on all orders above Rs. 499 at Bewakoof today. Shop our collection of Batman phone covers now and enjoy free shipping on all your orders."},{"question":"What types of designs does Bewakoof offer?","answer":"At Bewakoof, we have a wide range of Batman-themed phone cases and covers. Our designs range from the classic comic book covers to modern illustrations so you can find the perfect cover to suit your style."}]},{"url":"marvel-phone-covers","faq":[{"question":"Where can I buy Marvel Phone Covers?","answer":"You can shop for Marvel phone covers online at Bewakoof's website."},{"question":"What type of designs do the Marvel phone covers feature?","answer":"Our range of superhero designs includes Iron Man, Captain America, Spider-Man and other cool and stylish characters from the Marvel universe."},{"question":"Are your phone cases designed to provide protection?","answer":"Yes! Our cases are designed to withstand impact and keep your device safe from scratches and scuffs while also looking great in style!"},{"question":"How long does shipping take?","answer":"Enjoy fast shipping when you order with Bewakoof - our orders usually arrive within 6-7 days of purchase!"}]},{"url":"couple-phone-covers","faq":[{"question":"What styles of couple phone covers are available at Bewakoof®?","answer":"At Bewakoof®, we offer a wide variety of couple mobile cases and covers that come in various styles from classic designs to creative graphics."},{"question":"Are the couple phone cases made with quality materials?","answer":"Yes, all our couple cases are made with high-quality materials that will keep your devices safe from scratches and dents."},{"question":"What colors and designs do the couple covers come in?","answer":"Our collection of couple covers includes everything from classic designs to bold graphics and bright colors, so you're sure to find the perfect set for you and your partner!"},{"question":"How can I find the perfect combination of phone covers for me and my partner?","answer":"We have a wide variety of couples' phone cover options so you can choose the perfect combination for you both! From subtle and elegant designs to creative graphics, there's something for everyone!"},{"question":"Does Bewakoof® offer free shipping on orders of couple phone cases?","answer":"Yes, we offer free shipping on orders over 499 within India."}]},{"url":"round-neck-t-shirts","faq":[{"question":"Is Bewakoof offering free delivery on orders above 499?","answer":"Yes, Bewakoof is offering free delivery across India on all orders above 499. Enjoy hassle-free shopping from the comfort of your home with Bewakoof."},{"question":"What is the variety of fits available for round neck t-shirts at Bewakoof?","answer":"At Bewakoof, you can choose from a variety of fits for round neck t-shirts, including relaxed fit, regular fit, slim fit, and oversized fit. With so many fits to choose from, you're sure to find something that perfectly fits your body type."},{"question":"Are there any special offers or discounts available on purchasing round neck t shirts from Bewakoof?","answer":"Yes, Bewakoof offers unbeatable prices on round neck t-shirts. Shop now and get ready to look and feel great with our quality t-shirts at a great price. You can also take advantage of additional offers and discounts available on the website. So make sure to check back periodically to grab even better deals!"},{"question":"What fabrics are used for making round neck t-shirts?","answer":"At Bewakoof, we only use high quality fabrics for our round neck t-shirts to ensure lasting wear and maximum comfort. Our t-shirts are crafted with breathable and lightweight fabrics like cotton, polyester, soft terry cotton, and more. With these fabrics you can be sure to stay cool and comfortable all day long!"},{"question":"Does Bewakoof offer international shipping for their products?","answer":"Yes, Bewakoof offers international shipping for their products. You can enjoy hassle-free shopping and get your t-shirts delivered to your doorstep, no matter where you are in the world. So go ahead and stock up on round neck t-shirts today!"}]},{"url":"cotton-t-shirts","faq":[{"question":"What types of cotton t-shirts does Bewakoof offer?","answer":"\u003Cp\u003EBewakoof offers a wide selection of cotton t-shirts for men and women. Our t-shirts come in a variety of colors, sizes, and designs so you can find the perfect one for you. Choose from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-plain-t-shirts'\u003Eplain tees\u003C\u002Fa\u003E, graphic tees, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-printed-tshirts'\u003Eprinted tees\u003C\u002Fa\u003E, and more! Shop now at Bewakoof.com to find your perfect fit!\u003C\u002Fp\u003E"},{"question":"How do I choose the perfect size for my cotton t-shirt?","answer":"At Bewakoof we make it easy to find the perfect size for your t-shirt. We offer a wide range of sizes, from extra small to 3XL, so you can find the perfect fit for you. Our sizing chart makes it easy to choose the right size for your body type and style preference."},{"question":"How do I care for my cotton tee?","answer":"Caring for your cotton t-shirt is simple and easy. To ensure that your shirt stays in great condition, simply follow these tips: Wash in cold water with like colors and tumble dry on low or air dry. Avoid using fabric softener as this may reduce the soft feel of your cotton t-shirt. Additionally, you should avoid using bleach or harsh detergents as this may cause discoloration or fading. With proper care and maintenance, your cotton t-shirts will stay looking new for a long time!"},{"question":"Are Bewakoofs cotton shirts durable and comfortable?","answer":"At Bewakoof, we take pride in providing our customers with the highest quality cotton t-shirts. Our shirts are designed to provide maximum comfort and long lasting durability. The fabric is soft and lightweight, making them perfect for any season or occasion."},{"question":"Do you have a wide selection of colors and designs in your t-shirts?","answer":"Yes, we offer a wide selection of colors and designs in our t-shirts. From plain tees to graphic tees, printed tees and more, youre sure to find the perfect one for you."},{"question":"Is it possible to style a plain white tee for different occasions?","answer":"Yes, it is possible to style a plain white tee for different occasions. For a casual look, you can pair your white t-shirt with joggers or shorts and sneakers. You can also dress it up by pairing it with jeans and loafers for a more formal look. With the right accessories, you can take your white tee from day to night!"},{"question":"What is the best way to shop for premium quality cotton tees online at Bewakoof?","answer":"At Bewakoof, we make it easy to shop for the best quality cotton tees online. You can browse our selection of t-shirts by size, color, and design to find the perfect one for you. Our website also offers detailed product descriptions and sizing guides so you can be sure that your t-shirt fits perfectly."}]},{"url":"vivo-y20-back-covers-cases","faq":[{"question":"What Vivo Y20 covers are available at Bewakoof?","answer":"At Bewakoof, youll find a variety of Vivo Y20 covers and back covers. Choose from vibrant prints to classic colors that are sure to make a statement. We also provide durable cases for extra protection without sacrificing functionality."},{"question":"What is the quality of Vivo Y20 covers?","answer":"At Bewakoof, we take great pride in providing high-quality phone covers and cases that are designed to last. Our Vivo Y20 covers and back covers feature precise cutouts for easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our durable phone covers and cases."},{"question":"Are the Vivo Y20 back covers at Bewakoof affordable?","answer":"At Bewakoof, we understand that youre looking for great deals on Vivo Y20 back covers. Thats why we provide a wide selection of phone covers and cases at the best prices in India. Enjoy great deals on our products and fast delivery right to your doorstep!"},{"question":"What type of designs are available for Vivo Y20 back covers?","answer":"At Bewakoof, we have all the accessories you need to make sure your Vivo Y20 looks amazing. We provide a wide selection of vivo y20 phone covers and cases with designs ranging from classic colors to vibrant prints. Explore our collection now and find what youre looking for!"},{"question":"Does Bewakoof have any special offers for Vivo Y20 cases?","answer":"At Bewakoof, we understand that youre looking for great deals on Vivo Y20 cases. Thats why we offer a wide selection of phone covers and cases at the best prices in India. Enjoy fast delivery right to your doorstep when you shop with us!"},{"question":"Is there a range of colors and designs to choose from?","answer":"Yes, Bewakoof offers a wide selection of Vivo Y20 covers and back covers with designs ranging from classic colors to vibrant prints. With our products, you can rest assured that your device is kept safe from any damage or scratches while looking trendy and fashionable."},{"question":"Are Vivo Y20 Covers made with durable material?","answer":"Yes, all Vivo Y20 covers and cases at Bewakoof are made with durable material. Our products feature precise cutouts to give you easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our phone covers and cases."},{"question":"Can I access ports and buttons easily when using Vivo Y20 back covers?","answer":"Yes, our Vivo Y20 back covers feature precise cutouts to give you easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our durable phone covers and cases."},{"question":"Does Bewakoof provide free shipping for the ordered product?","answer":"Yes, Bewakoof provides free shipping on all orders above Rs. 500. Shop now at the best prices in India for guaranteed quality products delivered straight to your doorstep."},{"question":"How can I make sure that the quality of my Vivo Y20 cover is guaranteed by Bewakoof?","answer":"At Bewakoof, we take great pride in providing high-quality phone covers and cases that are designed to last. All our Vivo Y20 covers and back covers are tested for quality assurance before being dispatched to the customers."}]},{"url":"oppo-a54-back-covers-cases","faq":[{"question":"Where can I buy Oppo A54 covers and back covers?","answer":"We've got you covered! Bewakoof offers a wide selection of Oppo A54 covers and back covers online. Choose from an array of styles, designs, textures and colours to find the perfect look for your device."},{"question":"What kind of material is used for Oppo A54 Covers?","answer":"Our Oppo A54 covers are made of durable polycarbonate, designed to provide extra protection for your device while also making it look sleek and stylish. They are lightweight, slim and anti-slip so you can carry your phone with ease."},{"question":"What features do the Oppo A54 Covers have?","answer":"Our Oppo A54 covers come with anti-slip rubberized edges for extra grip and protection. The precision cutouts ensure you have easy access to all ports, buttons and camera so you can use your phone without any hassle."},{"question":"Are Oppo A54 Covers from Bewakoof resistant to scratches?","answer":"Yes, all of our Oppo A54 covers from Bewakoof are scratch resistant and will keep your phone looking new no matter how much you use it."},{"question":"How do I know which design of Oppo A54 Cover fits my phone?","answer":"We have designed our Oppo A54 covers to fit all versions of the phone, so you can be sure that your cover will fit perfectly. Our website also has detailed product descriptions and images to help you choose the right one for your device."},{"question":"What are the payment options for buying Oppo A54 Covers at Bewakoof?","answer":"We offer several payment options so you can choose the one that best suits your needs. We accept all major debit and credit cards, as well as net banking, UPI and wallet payments for a hassle-free shopping experience. Enjoy our cash on delivery option too!"},{"question":"Does Bewakoof offer free shipping when purchasing an Oppo A54 Cover or Back Cover?","answer":"Yes, we offer free shipping on all orders over Rs. 499 for Oppo A54 Covers and Back Covers. Shop now and enjoy this great deal!"}]},{"url":"one-piece-dresses","faq":[{"question":"What styles of one piece dresses does Bewakoof offer?","answer":"Bewakoof offers a variety of one piece dresses for women in different styles, including t-shirts, midi and sleeved designs. We also have mini dresses that are perfect for casual occasions."},{"question":"What materials are used to make Bewakoofs one piece dresses?","answer":"Our one piece dresses are made with breathable, lightweight fabrics such as cotton and polyester. We use the best quality materials to ensure that you have a dress that is comfortable and long-lasting."},{"question":"Are one piece dresses appropriate for any occasion?","answer":"One piece dresses are perfect for any occasion, from formal events to casual outings. With our wide selection of styles, you can find a dress that is perfect for any occasion."},{"question":"Does Bewakoof offer affordable prices?","answer":"Yes, we offer the best prices for one piece dresses online. We understand that finding an affordable yet fashionable dress can be difficult, which is why we strive to provide you with the best quality dresses at an affordable price."},{"question":"Are Bewakoof's one piece dresses comfortable?","answer":"Yes, our one piece dresses are crafted with breathable fabrics that will keep you feeling cool and fresh all day. We make sure to use the best quality materials to ensure that you have a dress that is durable and will last you a long time. "},{"question":"What accessories can I wear with one piece dresses?","answer":"One piece dresses can be accessorized with a variety of items, including statement jewelry, strappy sandals, ankle boots, and blazers. No matter what the occasion, one piece dresses from Bewakoof will help you look and feel your best. Shop for one piece dresses today and get ready to make a statement with your style!"},{"question":"Is it easy to maintain a one piece dress?","answer":"Yes, one piece dresses are easy to maintain. Most of our one piece dresses can be machine-washed in cold water and hung to dry. We recommend following the care instructions on the label for best results. With proper care, your dress will look as good as new!"},{"question":"Where can I find Bewakoofs one piece dresses?","answer":"You can find our selection of one piece dresses for women online. We have a range of styles and colors to choose from, so youre sure to find the perfect dress for any occasion. Shop now and get ready to make a statement with your style!"}]},{"url":"holi-collection","faq":[{"question":"What styles of Holi T-Shirts are available?","answer":"At Bewakoof®, we offer a variety of styles for Holi T-Shirts. Our collection includes classic designs, playful prints, and bold colors. Whether youre looking for something simple or something eye-catching, we have it all at the best prices online in India."},{"question":"Where can I find Holi clothing?","answer":"At Bewakoof®, you can find an amazing range of Holi Clothing for men and women. With our collection of stylish and comfortable outfits, youll be sure to find the perfect outfit for this Holi season."},{"question":"What fabrics are used to make Holi Dresses?","answer":"At Bewakoof®, we use high-quality fabrics to make our Holi Dresses. Our collection includes a wide range of fabrics, from cotton and linen to twill and Polyester. With our selection of classic and modern designs, youll be sure to find the perfect dress for your Holi celebrations."},{"question":"Are there any discounts available on the Holi Clothing collection?","answer":"Yes, at Bewakoof® we offer amazing discounts on our Holi Clothing collections. Shop now and get the best prices online in India. With our wide range of styles, sizes, and colors, youre sure to find something perfect for your Holi celebrations. Shop now and save big on your favorite items!"},{"question":"What colors can I choose from for Holi Dresses?","answer":"At Bewakoof®, we have an amazing selection of colors for our Holi Dresses. Our collection includes bright and vibrant hues such as yellows, pinks, blues and purples to classic shades like black, white and red. With our range of styles and colors, youll be sure to find the perfect dress for your Holi celebrations."},{"question":"What size should I order for my Holi Dress?","answer":"At Bewakoof®, we offer a wide range of sizes for our Holi Dresses. Our collection includes regular and plus sizes to make sure that you can find the perfect fit. With our wide range of sizes, youll be sure to find something that fits comfortably and looks stylish."},{"question":"Are the Holi clothing items made with high quality materials?","answer":"Yes, all our Holi clothing items are made with high-quality materials. We use only the best fabrics to ensure that your outfit is comfortable and stylish. Our collection includes a wide range of fabrics, so you can find something perfect for your Holi celebrations."},{"question":"Does Bewakoof® have any couple t shirt designs for Holi?","answer":"Yes, we have a great selection of couple t shirt designs for Holi. Our collection includes playful prints, classic designs, and modern styles. With our range of sizes and materials, youll be sure to find something perfect for your special someone."},{"question":"How can I find the best prices online in India for my Holi outfit?","answer":"At Bewakoof®, we offer amazing prices online in India for our Holi clothing collection. With our range of styles and designs, youll be sure to find something perfect at the best prices. Shop now and get the best deals on your favorite items!"}]},{"url":"oppo-f21s-pro-back-covers-cases","faq":[{"question":"What type of Oppo F21s Pro covers does Bewakoof® offer?","answer":"At Bewakoof®, we offer a wide range of Oppo F21s Pro covers and cases for you to choose from. We have glass covers, back covers, hard covers, ,3D covers and more. All our Oppo F21s Pro covers come in various styles, colors, and designs, so you can pick the perfect one for your device. With our great offers, you can get the best protection for your Oppo F21s Pro without spending a lot of money."},{"question":"Are the Oppo F21s Pro Covers offered by Bewakoof® durable?","answer":"Yes, all the Oppo F21s Pro covers we offer are designed with quality and durability in mind. Our covers are made with high-quality materials, so you can be sure that your device is always protected. With Bewakoof®, you can get the perfect protection for your device without sacrificing quality."},{"question":"What is the delivery time for Oppo Covers?","answer":"At Bewakoof®, we offer fast delivery on all our Oppo covers and cases. You can get your order delivered to your doorstep in no time, so you don't have to wait long for your cover or case."},{"question":"Does Bewakoof® provide glass covers for the Oppo F21s Pro?","answer":"Yes, we do offer glass covers for the Oppo F21s Pro. Our glass covers are designed to provide superior protection while giving your device a unique look. Shop now and get the perfect solution to keep your Oppo F21s Pro safe and secure!"},{"question":"Is there a wide selection of colors and designs for the Oppo F21s Pro Covers at Bewakoof®?","answer":"Yes, we offer a wide selection of colors and designs for Oppo F21s Pro covers at Bewakoof®. Whether you're looking for something subtle or something bold and eye-catching, we have a cover that is perfect for your device."},{"question":"Are there any special offers or discounts available on buying Oppo F21s Pro Covers at Bewakoof®?","answer":"Yes, there are special offers and discounts available on Oppo F21s Pro covers at Bewakoof®. We keep our prices competitive and offer deals throughout the year, so you can get the perfect cover for your device without burning a hole in your pocket."},{"question":"Are Oppo F21s Pro Covers easy to install?","answer":"Yes, Oppo F21s Pro covers are easy to install. The edges of the cover fit snugly onto your device and they come with a simple fitting guide that helps you easily understand how to install them correctly."}]},{"url":"oneplus-nord-n20-se-back-covers-cases","faq":[{"question":"What materials are OnePlus Nord N20 SE Covers made of?","answer":"Our OnePlus Nord N20 SE Covers are made from premium materials such as polycarbonate, TPU, and tempered glass. They provide maximum protection with minimal bulk for your device. The covers come with an anti-slip grip to make sure your phone is secure in your hands. Plus, they are lightweight and comfortable to hold."},{"question":"Are OnePlus Nord N20 SE Covers scratch resistant?","answer":"Yes, our OnePlus Nord N20 SE Covers are scratch resistant. They come with a high-quality, scratch-resistant surface to protect your device from everyday wear and tear. Plus, the covers have an anti-slip grip to ensure your phone stays secure in your hands. So you can rest assured knowing that your device will be safe and protected."},{"question":"How can I choose the best cover for my OnePlus Nord N20 SE?","answer":"At Bewakoof®, you can find a wide selection of OnePlus Nord N20 SE Covers to choose from. Browse through our collection and pick the perfect cover that complements your style. We have cases with intricate designs, bold colors, and more! So go ahead and choose the perfect case or cover that reflects your style and protects your device."},{"question":"Are there any exclusive designer covers available for the OnePlus Nord N20 SE?","answer":"Yes, at Bewakoof®, we have a wide selection of exclusive designer covers for your OnePlus Nord N20 SE. These trendy and fashionable cases come in a variety of designs and colors, so you can find the perfect cover to show off your style. Plus, our covers are made from durable materials that offer maximum protection with minimal bulk. So go ahead and choose the perfect case for your device today!"},{"question":"What type of glass covers are available for my OnePlus Nord N20 SE?","answer":"At Bewakoof®, we offer high-quality glass covers to give your OnePlus Nord N20 SE an extra layer of protection. These glass covers have a scratch-resistant surface to keep your device safe and secure. Plus, they are lightweight and sleek, making them comfortable to hold. So go ahead and choose the perfect glass cover for your device today!"},{"question":"Will a cover add bulk to my phone or make it uncomfortable to hold?","answer":"No, our OnePlus Nord N20 SE covers are designed to be lightweight and slim. They will not add any bulk or make your device uncomfortable to hold. Plus, they have an anti-slip grip to ensure your phone stays secure in your hands. So you can rest assured knowing that your device is safe and protected with a stylish cover."},{"question":"Does Bewakoof® offer fast and reliable shipping for its cases, covers and glass covers for the OnePlus Nord N20 SE?","answer":"Yes, Bewakoof® offers fast and reliable shipping. We understand the importance of protecting your device and want to make sure that you get the product you need quickly and safely."},{"question":"Where can I find the best prices online for cases and covers for my OnePlus Nord N20SE?","answer":"At Bewakoof®, you can find the best prices online for OnePlus Nord N20 SE cases and covers."}]},{"url":"nothing-phone-1-back-covers-cases","faq":[{"question":"What materials are Nothing Phone 1 covers made from?","answer":"Nothing Phone 1 covers are made from strong polycarbonate material that is highly resistant to scratches, bumps, dust, and daily wear and tear. They also come with a snug fit for easy installation on your device. Moreover, the nothing phone 1 back covers are designed to provide an ergonomic grip and easy access to all ports, buttons, and controls. They are lightweight and comfortable to hold."},{"question":"What colors are Nothing Phone 1 covers available in?","answer":"Nothing Phone 1 cases and covers at Bewakoof® come in a variety of colors, styles, and textures. Our collection includes an array of options from full-body covers to back-only covers, including classic black, sleek silver, vibrant blue or pink, and quirky prints. Find the perfect case for your device with our selection of nothing phone 1 cases and covers!"},{"question":"What is the price range for Nothing Phone 1 covers?","answer":"At Bewakoof®, we offer our cases and covers at the best prices in India. We strive to provide the best prices available so that everyone can access quality products at affordable prices. Shop now and enjoy secure payment options for your convenience!"},{"question":"Are Nothing Phone 1 cases durable?","answer":"Yes, our nothing phone 1 cases are designed and constructed from high-quality materials to ensure durability and long-lasting protection for your device. The tough polycarbonate material resists scratches, dust, and daily wear and tear for maximum protection."},{"question":"What is the return\u002Frefund policy for Nothing Phone 1 cases?","answer":"\u003Cp\u003EAt Bewakoof®, we offer a 15 Days Return & Exchange Policy on all our products. If you’re not satisfied with your purchase for any reason, you can exchange or return it within 15 days of receiving the order. For more details about our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn and refund policy\u003C\u002Fa\u003E, please refer to our Terms & Conditions.\u003C\u002Fp\u003E"},{"question":"Where can I buy high quality Nothing Phone 1 covers?","answer":"At Bewakoof®, we offer the best selection of trendy and stylish Nothing Phone (1) cases, back covers, glass covers and covers online in India. Our collection of stylish cases and covers offers the perfect protection for your device while also adding a touch of style and personality. Shop now for nothing phone 1 cases and make sure your device is protected in style!"},{"question":"Does Bewakoof® offer a variety of designs for Nothing Phone 1 covers?","answer":"Yes, our collection of nothing phone 1 cases and covers offers a variety of designs, colors, and textures to choose from. Whether youre looking for something subtle and minimalist or something bold and vibrant, we have the perfect case for you."},{"question":"What type of protection do Nothing Phone Cases provide?","answer":"Nothing phone cases provide ultimate protection against scratches, bumps, dust and daily wear and tear. The tough polycarbonate material ensures maximum durability, while the ergonomic design offers a comfortable grip for easy access to all ports, buttons, and controls."},{"question":"Is it easy to install a cover on my nothing phone 1 device?","answer":"Yes, our nothing phone 1 cases and covers come with a snug fit for easy installation on your device. Simply align the edges of the case to the edges of your device and press firmly to ensure a secure fit."},{"question":"Do nothing phone 1 cases come with ergonomic grips and access to ports, buttons and controls?","answer":"Yes, nothing phone 1 cases at Bewakoof® come with ergonomic grips for a comfortable hold and easy access to all ports, buttons, and controls. Our selection of nothing phone 1 covers also includes back-only options that provide extra grip for easier handling."}]},{"url":"women-shorts","faq":[{"question":"What are the benefits of buying shorts for women online from Bewakoof?","answer":"\u003Cp\u003EWhen you buy Shorts for women online at Bewakoof, youll be able to enjoy a number of great benefits. Firstly, our Shorts are designed with comfort and style in mind so you can look fashionable and feel comfortable all summer long. Secondly, we offer Shorts in a wide range of sizes and styles, so you can find Shorts that are just right for your body type and fashion sense. Plus, our Shorts are made from quality materials and fabrics, making them durable and long-lasting.\u003C\u002Fp\u003E"},{"question":"How do I choose the right size of shorts for women online?","answer":"\u003Cp\u003EWhen shopping for Shorts online at Bewakoof, it is important to choose the right size Shorts that fit you perfectly. To make sure you get the perfect Shorts size, we recommend using our easy-to-follow size guide to determine your exact measurements. Our Shorts come in a variety of sizes, ranging from XS to XXXL, so you’re sure to find Shorts that fit your body type. Additionally, we offer Shorts in Regular and Tall lengths, so you can choose Shorts that are the right length for your body. With our Shorts size guide, finding Shorts that fit you perfectly has never been easier! So don't wait any longer - shop Shorts for women online at Bewakoof today!\u003C\u002Fp\u003E"},{"question":"What is the return policy for shorts for women online?","answer":"\u003Cp\u003EAt Bewakoof, we offer easy and hassle-free returns on all Shorts for women. You can return your purchase within 15 days of delivery, provided the product is unused and in its original packaging.\u003C\u002Fp\u003E"},{"question":"How can I contact customer service for shorts for women online?","answer":"\u003Cp\u003EAt Bewakoof, we are always available to answer any questions you may have regarding Shorts for women. You can reach out to us via our website or email us at care@bewakoof.com and our customer service team will be happy to help.\u003C\u002Fp\u003E"},{"question":"What sizes are available in shorts for women?","answer":"\u003Cp\u003EAt Bewakoof, we offer women's shorts in a variety of sizes. Our size guide helps you find the perfect fit for your body type, and our range includes sizes XS to XXXL.\u003C\u002Fp\u003E"},{"question":"Do you offer discounts on womens shorts?","answer":"\u003Cp\u003EAt Bewakoof, we offer a range of discounts and offers on ladies shorts. We regularly update our online store with new deals and promotions so be sure to check back often for the latest special offers.\u003C\u002Fp\u003E"},{"question":"How do I care for my Bewakoof shorts?","answer":"\u003Cp\u003EAt Bewakoof, we recommend that Shorts are always washed with cold water and mild detergents. We also suggest not to iron or bleach the Shorts as this can cause discolouration.\u003C\u002Fp\u003E"}]},{"url":"men-shorts","faq":[{"question":"What types of men's shorts can I buy at Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, we've got a fantastic range of shorts for men that are perfect for every occasion! Whether you're looking for cotton shorts, denim shorts, gym shorts, or something for a casual day out, we've got you covered.\u003C\u002Fp\u003E"},{"question":"How do I know which size to choose when buying shorts online?","answer":"\u003Cp\u003EWe understand that finding the perfect fit is crucial. That's why we provide a detailed size guide to help you make the best choice for your body type. Just match your measurements with our chart, and you'll be good to go!\u003C\u002Fp\u003E"},{"question":"Can I find the latest trends in men's shorts at Bewakoof.com?","answer":"\u003Cp\u003EAbsolutely! We're all about keeping up with the latest fashion. You'll find all the trendy shirt and shorts outfits right here. Our collection is updated regularly, so you can stay stylish without any hassle.\u003C\u002Fp\u003E"},{"question":"Is it easy to style shorts for men from Bewakoof.com?","answer":"\u003Cp\u003EOh, yes! Styling our men shorts is a breeze. Whether you're pairing them with a hoodie for an athletic look or a casual tee for a day out, we've got style guides to help you look your best. And with a variety of colors and designs, you'll find something that fits your style effortlessly.\u003C\u002Fp\u003E"},{"question":"How can I buy shorts for men online from Bewakoof.com?","answer":"\u003Cp\u003EShopping with us is as easy as pie! Just visit our men's shorts page, choose the shorts that catch your eye, select your size, and add them to the cart. Then, proceed to checkout, and voil, you're all set!\u003C\u002Fp\u003E"}]},{"url":"women-printed-t-shirts","faq":[{"question":"How can I buy a printed T-shirt for women online?","answer":"\u003Cp\u003EAt Bewakoof, you can shop for Printed T-Shirts for Women online. With a wide range of graphic and text prints in eye-catching colors and styles, there's something to suit every style and occasion. Whether you're looking for a statement piece or an everyday basic, our Printed T Shirts provide the perfect fit for your wardrobe. Shop for Ladies Printed T Shirts to add a fresh and modern touch to your look, or opt for classic designs for timeless appeal. With styles and sizes ranging from XS-5XL, you're sure to find the perfect Printed T Shirt to fit your shape and style. Browse our collection today and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"What materials are Printed T-shirts made from?","answer":"\u003Cp\u003EPrinted T Shirts for Women at Bewakoof are crafted using high-quality cotton fabric that is lightweight yet durable. Printed graphics and text on Printed T Shirts are printed with eco-friendly inks, which ensures long lasting wear. Printed T Shirts for Women also feature a comfortable fit that allows you to move freely and stay comfortable all day long. With Printed T Shirts that look great and feel even better, you can make a stylish statement with Printed T Shirts for Women. Shop our collection now!\u003C\u002Fp\u003E"},{"question":"How should I care for Printed T-shirts?","answer":"\u003Cp\u003EWomen's Printed T Shirts require special care in order to keep them looking their best. To ensure Printed T Shirts for Women last longer, we recommend washing them inside out in cold water and avoiding the use of harsh detergents or bleach. Additionally, Printed T Shirts should be air-dried instead of tumble dried to prevent fading and shrinking. Following these simple steps will help Printed T Shirts for Women stay looking good and feeling comfortable for longer. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"What is the return policy for printed T-shirts for women?","answer":"\u003Cp\u003EAt Bewakoof, Women Printed T Shirts are crafted with quality and care. We offer easy returns and an exchange policy that allows you to return Printed T Shirts for Women if they do not meet your expectations. In order to qualify for a return or exchange, Printed T Shirts must be unused and in their original packaging. Printed T Shirts must be returned within 15 days of delivery, and we will provide you with a full refund or exchange the Printed T Shirt for a different size or color. Our goal is to ensure that Printed T Shirts for Women meet your expectations and provide you with a comfortable fit and stylish look. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"How can I contact customer service if I have a question about printed T-shirts for women?","answer":"\u003Cp\u003EAt Bewakoof, we are always available to help. If you have any questions about Printed T Shirts for Women or our services, please do not hesitate to contact us. Our customer service team is available seven days a week and can be reached by email at care@bewakoof.com. Alternatively, you can visit us online at Bewakoof.com and chat with a customer service representative in real time. We look forward to hearing from you! Shop Printed T Shirts for Women now!\u003C\u002Fp\u003E"},{"question":"How often does Bewakoof update its Printed T-shirts for women collection?","answer":"\u003Cp\u003EAt Bewakoof, Printed T Shirts for Women are updated regularly with new styles and designs. Our Women's Printed T Shirts collection is always growing, so you can find Printed T Shirts that perfectly match your style and personality. Additionally, our Printed T Shirts for Women feature bold graphics and vibrant colors, giving you the freedom to make a fashion statement that is unique to you. Shop Printed T Shirts for Women now and stay up-to-date with the latest trends!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof offer discounts on Printed T-shirts for women?","answer":"\u003Cp\u003EYes! At Bewakoof, Printed T Shirts for Women are available at great prices without compromising on quality. Additionally, we offer discounts and promotions throughout the year, so you can shop Women's Printed T Shirts with peace of mind. Whether it's a special occasion or just because, Printed T Shirts for Women are a great choice to make a stylish statement. Shop Printed T Shirts for Women now and don't miss out on our amazing discounts!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof offer Printed T-shirts for women in plus sizes?","answer":"\u003Cp\u003EYes! At Bewakoof, Printed T Shirts for Women are available in a range of sizes from XS to 5XL to ensure Printed T Shirts fit every body shape. Ladies Printed T Shirts feature a size guide that gives you an accurate measurement of the Printed T Shirt's dimensions, so you can be sure Printed T Shirts will fit comfortably. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"}]},{"url":"flats","faq":[{"question":"What types of Flats for Women are available at Bewakoof?","answer":"At Bewakoof, you can find a wide range of Flats for Women to suit your style. Our collection includes classic flat shoes, embellished flat shoes, casual Flats, and more. Also available are flat slippers, with both open and closed-toe designs. We have Flats in an array of colors and prints, so that you can take your pick as per your mood. Bewakoof Flats for Women are designed to keep you comfortable throughout the day, without compromising on style. Get Flats at unbeatable prices and create amazing looks with ease. Head over to Bewakoof now to find the best Flats for Women and step out in style!"},{"question":"Are flat shoes from Bewakoof comfortable to wear?","answer":"Yes, Flats from Bewakoof are designed to ensure maximum comfort and breathability. Our Flats come with a cushioned insole and slip-resistant sole to keep your feet comfortable throughout the day. Flats from Bewakoof are lightweight, stylish, and durable too. So, if youre looking for Flats that will keep your feet feeling great all day long Bewakoof Flats are the perfect choice!"},{"question":"What are flat slippers?","answer":"Flat slippers are a type of footwear that provides you with an easy, comfortable experience. Flat slippers come in a variety of designs and styles. At Bewakoof, you can find flat slippers with both closed-toe and open-toe designs. Flat slippers are perfect for days when you want to be comfortable and stylish at the same time."},{"question":"Are Flat Slippers from Bewakoof suitable for all occasions?","answer":"Yes, Flats Slippers from Bewakoof can be worn for both casual and formal occasions. If youre looking for a comfortable and stylish option for work, you can opt for closed-toe Flats Slippers. If youre looking for something to wear for a night out or a casual gathering, you can choose open-toe Flats Slippers. So make sure to check out our collection of Flats Slippers today and find the perfect pair for your needs!"},{"question":"What are some Flats for Women trends at Bewakoof?","answer":"At Bewakoof, Flats for Women are available in a wide range of colors and prints. From classic black Flats to multi-colored Flats and floral prints, you can find Flats to match any outfit. We also have Flats in metallic shades and various other trendy prints that are sure to enhance your look. Flats from Bewakoof offer both comfort and style, so make sure to check out our Flats collection and find the perfect Flats for Women!"},{"question":"How much does a pair of Flats for Women cost on Bewakoof?","answer":"At Bewakoof, Flats for Women are available at unbeatable prices. Our Flats range from INR 749\u002F- to INR 999\u002F-, so you can get Flats without breaking the bank. Make sure to check out our Flats collection and get amazing Flats for Women at amazing prices!"},{"question":"Where can I find the size guide for Flats for Women at Bewakoof?","answer":"At Bewakoof, Flats for Women are available in sizes ranging from UK size 3 to UK size 8. To find the Flats that fits you perfectly, make sure to check out our Flats size guide. With the Flats size guide, you can find Flats in the perfect fit for your feet. So, head over to Bewakoof now and find Flats for Women in the best size!"},{"question":"Does Bewakoof offer discounts on Flats for Women purchases?","answer":"Yes, Bewakoof offers discounts on Flats for Women purchases. Make sure to keep an eye out for our promotional offers and discounts to get Flats for Women at great prices. You can also follow us on social media to stay updated about our upcoming offers and discounts. So, head over to Bewakoof now and get Flats for Women at amazing prices!"},{"question":"Where can I find Flats for Women reviews at Bewakoof?","answer":"At Bewakoof, Flats for Women reviews are available on our website. You can read real customer Flats for Women reviews to help you make the best decision. Flats for Women reviews can also provide valuable insights into the quality, comfort, and fit of Flats for Women. So, make sure to check out Flats for Women reviews before you purchase Flats from Bewakoof!"}]},{"url":"men-printed-tshirts","faq":[{"question":"How can I buy a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we offer a wide range of printed T-shirts for men in various designs and styles. Our collection includes graphic T-shirts with unique and stylish prints that are sure to make you stand out from the crowd. To buy one of our printed T-shirts, simply browse through our selection and select the one that best suits your style. Once you have selected the shirt, complete the checkout process and your order will be shipped to your doorstep in no time! We also offer free shipping for orders above Rs 399\u002F- and easy returns for our customers. So, go ahead and browse through our selection of printed T-shirts for men at Bewakoof today!\u003C\u002Fp\u003E"},{"question":"What is the price of a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EThe price of printed T-shirts for men at Bewakoof ranges from Rs 299\u002F- to Rs 1,399\u002F- depending on the design and style. So, you can choose one that best suits your budget while still looking stylish! We also have regular discounts and offers that you can take advantage of, so don't forget to check them out! With Bewakoof, you can find the perfect printed T-shirt for men without breaking the bank. So, go ahead and shop with us today!\u003C\u002Fp\u003E"},{"question":"How can I pay for a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we offer various payment options such as credit\u002Fdebit cards, net banking and wallets like Paytm, Google Pay and PhonePe. We also accept UPI payments to make the checkout process easier for our customers. All these payment options are secure and encrypted so you can be sure that your data is safe while making a purchase. So, go ahead and choose your favourite printed T-shirt for men at Bewakoof with the payment option of your choice! We are sure you'll love our selection and find something that suits your style and budget.\u003C\u002Fp\u003E"},{"question":"How will I know if my order for a printed T-shirt for men at Bewakoof has been confirmed?","answer":"\u003Cp\u003EOnce you have completed your order, you will receive a confirmation email with all the necessary details such as the order number and estimated delivery date. We also suggest that you keep track of your order by visiting our website or downloading our \u003Ca href='https:\u002F\u002Fplay.google.com\u002Fstore\u002Fapps\u002Fdetails?id=com.bewakoof.bewakoof&hl=en'\u003Emobile shopping app\u003C\u002Fa\u003E for regular updates. In case of any queries, our customer service team is always available to help you out. So, you can rest assured that your order is in safe hands with us at Bewakoof!\u003C\u002Fp\u003E"},{"question":"When will I receive my order for a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EFor orders within India, we usually take 7-8 working days to process and deliver the order. Once your order is shipped, you will receive an email update with a tracking ID which can be used to track your package on our website or mobile app.\u003C\u002Fp\u003E"},{"question":"What is the quality of a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we understand that quality matters when it comes to clothing. That is why we take great care in selecting the best materials for our products and use high-quality printing techniques to ensure that our printed T-shirts for men are of superior quality. Our products are also manufactured with eco-friendly processes and adhere to stringent quality standards. So, you can be sure that when you buy a printed T-shirt for men at Bewakoof, you are getting nothing but the best!\u003C\u002Fp\u003E"},{"question":"What is the return policy for a printed T-shirt at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we believe that customer satisfaction is of utmost importance. That is why we offer an easy returns policy for our customers. If you are not satisfied with the product or it doesn't match your expectations, you can return it within 15 days from the date of delivery and get a full refund or exchange. For more information on our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Forder-delivery-payment'\u003Ereturns policy\u003C\u002Fa\u003E, you can visit our website. So go ahead and shop with us today! We are sure you'll love our selection of printed T-shirts for men.\u003C\u002Fp\u003E"},{"question":"How should I care for my printed t-shirt?","answer":"\u003Cp\u003ETo ensure that your printed t-shirt stays looking good for a long time, we recommend following these simple instructions:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Always wash the t-shirt inside out in cold water.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Avoid using strong detergents or fabric softeners as they can damage the print.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Air dry the t-shirt to avoid shrinkage.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Do not iron directly on the print.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EFollowing these instructions will help you keep your printed t-shirt looking great for a long time! So, go ahead and show off your style with Bewakoof's stylish collection of printed t-shirts for men today!\u003C\u002Fp\u003E"},{"question":"How can I find a printed t-shirt that fits me well?","answer":"\u003Cp\u003EAt Bewakoof, we understand that finding the right fit is important when it comes to clothing. That is why we offer detailed size guides for all our products so you can make sure that you order the right size. We also suggest measuring yourself with a tape and comparing it with the measurements mentioned on our website before placing an order. If you still have any doubts, our customer service team is always available to help. So, go ahead and order your perfect fit printed t-shirt for men at Bewakoof with confidence!\u003C\u002Fp\u003E"}]},{"url":"men-full-sleeve-t-shirts","faq":[{"question":"What is the best way to buy full sleeve t-shirts for men online?","answer":"\u003Cp\u003EBewakoof is the answer! Our selection of Full Sleeve T shirts for Men will provide you with a wide range of options to choose from. Whether you are looking for a stylish slim fit, classic casual look or something unique and quirky, you can find it all at Bewakoof.\u003C\u002Fp\u003E"},{"question":"How can I find the best deals on full sleeve t-shirts for men online?","answer":"\u003Cp\u003EAt Bewakoof, we are committed to providing you with the best deals on Full Sleeve T-Shirts for Men. All our products come with free shipping, easy returns and cash on delivery options. Plus, we have a wide range of offers and discounts that can help you save even more money while shopping online.\u003C\u002Fp\u003E"},{"question":"How can I find the right size long sleeve t-shirt for men online?","answer":"\u003Cp\u003EFinding the right Full Sleeve Tees for Men online with us is easy. We have a detailed size guide on our website to help you select the perfect Full Sleeve T-Shirt that fits your body perfectly. Simply measure yourself accurately and then refer to our size chart to pick out the Full Sleeve Shirt thats right for you.\u003C\u002Fp\u003E"},{"question":"What is the best way to wash and care for full sleeve t-shirts for men?","answer":"\u003Cp\u003ETo keep Full Sleeve T shirts for Men in their best condition, we recommend following the wash care instructions provided on our website. Long Sleeve T-Shirts for Men should be washed separately and turned inside out before being put in a washing machine. To make sure Full Sleeve T-Shirts maintain their shape and colour, we suggest using a mild detergent and washing them on a light cycle. Full T-Shirts should also be hanged to dry flat in order to keep their shape and prevent stretching or shrinking. By following these simple steps, Full Sleeve T-Shirts for Men can last longer and stay looking good as new!\u003C\u002Fp\u003E"},{"question":"What kind of materials are Long Sleeve T-Shirts for Men made from?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men are made from high quality materials that keep you comfortable all day long. Long Sleeve T-Shirts for Men are crafted using breathable and lightweight fabrics like cotton and polyester that keep you cool in hot weather and warm in cooler weather. Full Sleeve T-Shirts for Men are designed to fit perfectly and last longer, so you can have Full Sleeve T Shirts that look great and last long. Shop Full Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"},{"question":"What is the price range for full sleeve t-shirts for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men come in a variety of prices. Full Sleeve T-Shirts for Men start at just Rs. 399 and go up to Rs. 1499, depending on your budget and style preferences. No matter what you are looking for, Full Sleeve T-Shirts for Men at Bewakoof are sure to fit your budget and style. So go ahead, shop Full Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"},{"question":"Do you offer any discounts on full sleeve tees for men?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men come with exciting discounts and offers. Whether you are shopping Full Sleeve T-Shirts for Men or any other product, we have something for everybody. Sign up at Bewakoof today to get exclusive offers on Full Sleeve T-Shirts for Men and other products!\u003C\u002Fp\u003E"},{"question":"What is the payment method available?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men can be purchased using multiple payment methods like Credit\u002FDebit Card, Net Banking, and Cash on Delivery (COD). We also offer UPI payments and wallets like Paytm and Phonepe to make the shopping experience convenient for you. So go ahead and shop Long Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"}]},{"url":"women-full-sleeves-t-shirts","faq":[{"question":"What is the best way to buy full sleeve t-shirts for women online?","answer":"\u003Cp\u003EThe best way to buy full sleeve t shirts for women online is by shopping at Bewakoof. Our collection of Full Sleeve T-Shirts for Women is filled with stylish designs and vibrant colors, perfect for those looking to make a fashion statement.\u003C\u002Fp\u003E"},{"question":"How can I find the right size and fit for full sleeve t-shirts for women?","answer":"\u003Cp\u003EAt Bewakoof, we make it easy to find the right size and fit for Long Sleeve T-Shirts for Women. Each product page includes a detailed size chart so you can find the right fit for your body type. We also offer easy returns and exchanges, so if the Full Sleeve T-Shirt doesn’t fit, you can get a new one that does\u003C\u002Fp\u003E"},{"question":"How can I find the best deals on full sleeve t-shirts for women online?","answer":"\u003Cp\u003EAt Bewakoof, we offer great deals on Full Sleeve T Shirts for Women all year round. We regularly run promotional offers and discounts on Full Sleeve T-Shirts for Women so you can get the best possible deals. We also offer free shipping on orders over a certain amount, so you can save even more when you buy Female Full Sleeve T-Shirts from Bewakoof.\u003C\u002Fp\u003E"},{"question":"What are the different types of full sleeve t-shirts for ladies available on Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we offer Full Sleeve T-Shirts for Women in a variety of designs and styles. From classic Full Sleeve T-Shirts to edgy Full Sleeve Tops, we have Full Sleeve T-Shirts for Women in every style. We also have Full Sleeve T-Shirts for Girls in a variety of colors and sizes so you can find Long Sleeve T-Shirts that look great on you. So whatever Full Sleeve T-Shirt style you’re looking for, you can find it at Bewakoof! Shop Full Sleeve T-Shirts for Women from Bewakoof today.\u003C\u002Fp\u003E"},{"question":"What are the care instructions for full sleeve t-shirts?","answer":"\u003Cp\u003EFull Sleeve T-Shirts from Bewakoof are made with high quality fabrics and materials, so it’s important to take proper care of them to ensure they last. Women Full Sleeve T-Shirts should be washed separately in cool or warm water and on a gentle cycle with like colors. Full Sleeve Tshirts should not be bleached, tumble dried or ironed. To maintain the quality of Full Sleeve T-Shirts, it is best to hang dry Long Sleeve T-Shirts and avoid direct exposure to sunlight. Following these care instructions will help Full Sleeve T-Shirts from Bewakoof last for many wears to come!\u003C\u002Fp\u003E"},{"question":"How can I stay updated about new arrivals of full sleeve t-shirts?","answer":"\u003Cp\u003EAt Bewakoof, we always have new Long Sleeve T-Shirts for Women arriving. To stay up to date on the latest Full Sleeve T-Shirt designs from Bewakoof, you can follow us on social media or signup for our email newsletter. That way, you’ll never miss out on the newest Full Sleeve T Shirts for Women from Bewakoof!\u003C\u002Fp\u003E"},{"question":"How can I contact the team at Bewakoof for further queries?","answer":"\u003Cp\u003EIf you have any other questions about Women's Full Sleeve T-Shirts from Bewakoof, you can contact our team directly by email at care@bewakoof.com or through live chat on the website. We’d be happy to help you with any Full Sleeve T-Shirt queries or troubleshooting problems. You can also check out our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Forder-delivery-payment'\u003EFAQs\u003C\u002Fa\u003E page for more information\u003C\u002Fp\u003E"}]},{"url":"women-hoodies-sweatshirts","faq":[{"question":"What are the different types of women's Hoodies and sweatshirts?","answer":"Hoodies and Sweatshirts come in a variety of different styles and designs. You can find Hoodies and Sweatshirts with prints, graphics, slogans and logos. There are also a number of different colors and materials to choose from."},{"question":"What is the difference between a Hoodie and a Sweatshirt?","answer":"A Hoodie is a type of Sweatshirt that has a hood attached to it. Hoodies are usually made from thicker materials, such as cotton or fleece, and are designed to keep you warm. Sweatshirts are usually made from thinner materials, such as polyester, and are designed to be more breathable."},{"question":"How do I know what size Women's Hoodie or Sweatshirt to order?","answer":"When ordering a Hoodie or Sweatshirt, it is important to consider the fit. Make sure to choose a Hoodie or Sweatshirt that is comfortable and fits well. It is also important to refer to the size chart before placing your order."},{"question":"What are some tips on how to style a women's Hoodie or Sweatshirt?","answer":"Hoodies and Sweatshirts can be styled in a number of different ways. Try pairing Hoodies with T-shirts, jeans, sweaters, joggers or leggings for a stylish and comfortable outfit. You can also dress up your Hoodie or Sweatshirt with heels and a blazer for a more formal look."},{"question":"How do I care for my Women's Hoodie or Sweatshirt?","answer":"It is important to care for your Hoodie or Sweatshirt so that it lasts longer. Wash your Hoodie or Sweatshirt in cold water and gentle detergent. Do not bleach or dry clean your Hoodie or Sweatshirt. Hang or lay flat to dry. Do not iron your Hoodie or Sweatshirt. Store your Hoodie or Sweatshirt in a cool, dry place."},{"question":"What are the best materials for women's Hoodies and sweatshirts?","answer":"Hoodies and Sweatshirts are usually made from cotton, polyester or fleece. Choose a Hoodie or Sweatshirt in a material that is comfortable for you and that suits the occasion."},{"question":"Where can I buy women's Hoodies and sweatshirts?","answer":"Women's Hoodies and Sweatshirts can be purchased online at Bewakoof.com."},{"question":"How do I get a sweatshirt for women?","answer":"You can purchase a Hoodie or Sweatshirt online at Bewakoof.com. Choose from a variety of different styles, designs and colors. Select the size and fit that is right for you and place your order. Your Hoodie or Sweatshirt will be delivered to you within 7-8 working days."},{"question":"What are the prices of the ladies sweatshirts on Bewakoof.com?","answer":"The prices of the ladies Hoodies and Sweatshirts on Bewakoof.com vary depending on the style, design, and material."},{"question":"What is the shipping time for orders placed on Bewakoof.com?","answer":"Your order will be delivered to you within 7-8 working days."},{"question":"What is the return policy for items purchased on Bewakoof.com?","answer":"You can return your Women's Hoodie or Sweatshirt within 15 days of receiving it. Please refer to our Return Policy for more information."},{"question":"How can I contact customer care in case I have any queries?","answer":"You can reach out to our customer care team at care@bewakoof.com."},{"question":"How can I get a discount on my purchase from Bwakoof.com?","answer":"\u003Cp\u003EYou can use coupons and avail of discounts on your purchase from Bewakoof.com. Visit our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale'\u003E\u003Cstrong\u003Eoffer page\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E to know more.\u003C\u002Fp\u003E"}]},{"url":"women-co-ord-sets","faq":[{"question":"What is a co-ord set?","answer":"\u003Cp\u003EA co-ord set is a matching two or three piece outfit comprising of a top and bottom, or a top, bottom and jacket. It is designed for women to provide the perfect look for any occasion. Co-ords for women come in various designs, colours and sizes to suit individual tastes. They are also easy to style as they can be accessorised and layered for a more sophisticated look. Whether you are going to work, attending an event or just enjoying a night out, a co-ord set is the perfect way to complete your look\u003C\u002Fp\u003E"},{"question":"Why should women wear co-ord sets?","answer":"\u003Cp\u003ECo-ords for women offer an easy solution for creating a stylish outfit. They are comfortable, flattering and can be easily accessorised or layered to suit your individual style. A co-ord set is also great for creating an impression as they are designed to make you look put together and polished. Wearing co-ords for women is perfect for any occasion from the office to a night out with friends. They are sure to make you stand out and look great!\u003C\u002Fp\u003E"},{"question":"What are the benefits of wearing co-ord sets?","answer":"\u003Cp\u003EThe benefits of wearing co-ord sets for women include convenience, comfort, style and versatility. Co-ords are easy to put together because they already come as a matching set - all you need to do is add your own accessories and shoes. They are also comfortable, fashionable and suitable for all occasions. With women’s co-ord sets you can create a variety of looks with just one item of clothing. You can dress them up for an evening or dress down for a day at the office - whatever the occasion, co-ords give you the perfect lookOverall, co-ord sets are a great way to create stylish and put together looks with minimal effort. They offer women the convenience of having an outfit that is perfect for any occasion and can be accessorised to suit their individual style. Women’s co-ord sets will ensure you always look your best!\u003C\u002Fp\u003E"},{"question":"What is the difference between a co-ord set and a women's tracksuit?","answer":"\u003Cp\u003EThe main difference between a co-ord set and a women's tracksuit is the design. Co-ord sets are usually more tailored and put together, while tracksuits are designed to be comfortable and relaxed. Co-ords for women come in various designs, colours and sizes to suit individual tastes while tracksuits are usually limited to one or two colours and styles. Co-ord sets are also more suitable for a variety of occasions, from the office to a night out, while tracksuits are more appropriate for casual wear. Overall, co-ords provide women with the perfect combination of style and comfort.\u003C\u002Fp\u003E"},{"question":"How do you accessorise a co-ord set?","answer":"\u003Cp\u003EAccessorising a co-ord set is simple and can be done in many different ways. You can add a belt to your outfit for an extra layer of styling, or wear statement jewellery to draw attention. Wearing a scarf or wrap can also add interest to your look, while wearing a hat and sunglasses will help you stand out. You can also layer your co-ord set, by wearing a blazer over the top or pairing with a cardigan for extra warmth. Whatever you choose to do, accessorising will take your co-ord set from simple to stylish in no time!\u003C\u002Fp\u003E"},{"question":"What type of shoes should I wear with a co-ord set?","answer":"\u003Cp\u003EThe type of footwear you choose to go with your co-ord set will depend on the occasion and your personal style preference. Heels are a great way to dress up an outfit, while flats are perfect for a more casual look. Sneakers are also great for adding a sporty touch, while ankle boots are the perfect accompaniment to an edgier ensemble. Ultimately, the type of shoes you choose should complement your co-ord set and reflect your own personal style!\u003C\u002Fp\u003E"},{"question":"How do I style a co-ord set?","answer":"\u003Cp\u003EStyling a co-ord set is easy, as you simply need to add your own accessories and shoes. You can choose to dress it up for a night out by adding statement jewellery or go for a more casual look with sneakers or flats. Layering your co-ords is also an option - you could wear a blazer over the top or pair them with a cardigan for added warmth. You can also choose to accessorise your co-ord set with a scarf or wrap to add interest to your look. Whatever you decide, styling your co-ord set should be fun and effortless!\u003C\u002Fp\u003E"},{"question":"What other items of clothing can I wear with a co-ord set?","answer":"\u003Cp\u003EThere are many items of clothing that you can wear with a co-ord set. Depending on the style and occasion, you could opt for a blazer or cardigan to layer over your top, or add a belt to define your waist. A scarf or wrap is also an easy way to accessorise your look. If you’re looking for comfort, a pair of leggings will go perfectly with your co-ord set. You could also add a hat and sunglasses to complete the outfit. Whatever you choose, wearing other items of clothing with your co-ord set is sure to help you create a stylish and unique look!\u003C\u002Fp\u003E"},{"question":"What colour co-ord sets should I choose?","answer":"\u003Cp\u003EThe colour of your co-ord set will depend on the occasion and your personal style preference. If you’re looking for a more tailored look, neutrals such as black, white or grey are great options. These colours will also be suitable for the office. For a more casual look, you could opt for brighter and bolder colours such as pink, green or yellow. Floral prints are also perfect for adding some fun to your wardrobe. Ultimately, the colour of your co-ord set should reflect your own personal style!\u003C\u002Fp\u003E"},{"question":"What fabrics should I look for when buying a co-ord set?","answer":"\u003Cp\u003EThe type of fabric you should look for when buying a co-ord set depends on the occasion and your lifestyle. If you’re looking for an outfit that will last, opt for fabrics such as cotton or linen which are both durable and long-lasting. If comfort is important to you, choose lightweight fabrics such as silk or viscose, or if you’re looking for a more glamorous look opt for velvet or satin. Ultimately, the choice of fabric should reflect your own style and preference!\u003C\u002Fp\u003E"},{"question":"What other accessories can I use to style my co-ord set?","answer":"\u003Cp\u003EAccessorising your co-ord set is a great way to add a personal touch to your look. Statement jewellery such as necklaces, bracelets and earrings can instantly dress up an outfit, while sunglasses and hats are perfect for adding glamour. You could also opt for a bag or clutch to complete the look. Whatever accessories you choose, they should match your co-ord set and reflect your own personal style\u003C\u002Fp\u003E"},{"question":"What should I consider when purchasing a co-ord set?","answer":"\u003Cp\u003EWhen purchasing a co-ord set, there are a few things you should consider. Firstly, think about the fit of your co-ords. If you’re looking for a more formal look, fitted pieces such as trousers and skirts will be perfect; whereas if you’re after something more relaxed, looser fitting co-ords such as shorts and jumpsuits will be better suited. Secondly, consider what other items you could wear with your co-ord set to create a complete look. A jacket or blazer can help to dress up an outfit, whilst a t-shirt could add a more relaxed feel to the ensemble. Finally, think about what colours and patterns you prefer for your co-ord set; neutrals are great for more formal occasions, whilst colourful prints can add a fun and vibrant touch. Ultimately the decision should reflect your own style and personal preference!\u003C\u002Fp\u003E"},{"question":"How do I know if a co-ord set will look good on me?","answer":"\u003Cp\u003EThe best way to know if a co-ord set will look good on you is to try it on and step in front of the mirror. Consider whether the fit of the co-ords is comfortable and flattering, and think about what colours and patterns suit your complexion. If you’re looking for something eye-catching, bright colours and bold prints can be great for making a statement. However, if you’re after something more subtle, opt for softer tones or neutral shades such as black and white. Ultimately, the choice should reflect your own personal style and preference!\u003C\u002Fp\u003E"},{"question":"What is the return policy for co-ord sets at Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, we strive to ensure that all customers are satisfied with their purchases and provide a full refund for any items returned within 15 days of delivery. Products must be unused and in the original packaging to be eligible for return. For co-ord sets, all pieces from the set must be returned together in order to receive a full refund. If you have any further queries regarding our return policy, please contact us directly via the website or email us at care@bewakoof.com. We are always happy to help!\u003C\u002Fp\u003E"},{"question":"How can I contact Bewakoof.com if I have questions about my co-ord set?","answer":"\u003Cp\u003EIf you have any queries about your co-ord set or the products available at Bewakoof.com, please do not hesitate to get in touch with us. You can reach out directly via the website, or send us an email at care@bewakoof.com and one of our friendly customer service representatives will be happy to assist you. We look forward to hearing from you!\u003C\u002Fp\u003E"}]},{"url":"men-co-ord-sets","faq":[{"question":"What is a co-ord set?","answer":"A co-ord set is a two-piece outfit consisting of a top and bottom that are designed to match, usually in the same fabric. Co-ords are versatile items as they can be worn together or styled separately for multiple looks."},{"question":"What types of co-ords for men are available?","answer":"\u003Cp\u003EMen's co-ords come in a variety of styles, from casual looks like sweatpants and a hoodie to smarter options such as blazers and chinos. Denim co-ord sets are popular for men, while shirt and trouser combinations are ideal for workwear. Co-ords can also be found in other fabrics such as linen or corduroy.\u003C\u002Fp\u003E"},{"question":"Where can men buy co-ord sets?","answer":"\u003Cp\u003EMen's co-ord sets are widely available both online and in stores. Bewakoof offers co-ords in a variety of styles and fabrics, making it easy to find a set that suits your taste and budget. Online shopping is also a great option as many websites feature a wide selection of co-ords for men. It's worth checking out the reviews before you buy to make sure the quality is up to standard and that the sizing is accurate. With so much choice available, finding the perfect co-ord set for men should be easy.\u003C\u002Fp\u003E"},{"question":"What is the difference between a co-ord set and a suit?","answer":"\u003Cp\u003EA co-ord set is a two-piece outfit consisting of a top and bottom that are designed to match, usually in the same fabric. A suit, on the other hand, is typically comprised of a jacket and trousers that are tailored to fit the body perfectly. Co-ords tend to be more casual than suits, with styles ranging from everyday wear like sweatpants and hoodies to smarter options such as blazers and chinos. Suits, meanwhile, are typically reserved for more formal occasions such as weddings or work events. Co-ords or men can be styled up or down depending on the occasion whereas suits are generally considered more formal attire. Additionally, co-ord sets tend to be more affordable than suits, making them a great option for those looking to save money.\u003C\u002Fp\u003E"},{"question":"How do I wear a co-ord set for men?","answer":"\u003Cp\u003ECo ord set for men can be dressed up or down depending on the occasion. A sweatshirt and jogger co-ord set could easily be paired with trainers for a relaxed look, while switching to a smart pair of shoes would make it suitable for the office. Alternatively, a shirt and trouser co-ord can be styled with a blazer for a dressier ensemble or left open with a plain T-shirt underneath for a more casual vibe. Ultimately, the beauty of co-ords is that they offer an easy way to create multiple looks without too much effort. With the right accessories and shoes, men's co-ords can be styled to suit any occasion.\u003C\u002Fp\u003E"},{"question":"How do I care for my co-ord set?","answer":"\u003Cp\u003ECaring for your co-ord set is easy and will help keep it looking its best. Always read the care label before washing, as different fabrics require different treatments. If the fabric allows, machine washing on a gentle cycle is usually fine. Avoid using too much detergent as this can cause colours to fade or run, and air dry the co-ord set rather than putting it in the dryer. Additionally, ironing is recommended to keep your co-ord set looking neat and tidy. Following these simple steps will ensure your co-ord set stays looking great for longer.\u003C\u002Fp\u003E"},{"question":"What are some of the most popular co-ord sets for men?","answer":"\u003Cp\u003EMen's co-ord sets come in a variety of styles and colours, so there is something for everyone. Popular options include plain T-shirt and jogger sets, buttoned shirt and chino combos and smart blazer and trouser ensembles. For those who are looking to make statement, printed shirts or trousers can be a great way to bring a bit of personality to your look. Ultimately, the right co-ord set for you will depend on your own style and what you feel comfortable in. With so much choice available, it's easy to find the perfect co-ord set that fits your aesthetic and budget.\u003C\u002Fp\u003E"},{"question":"What are some of the latest trends in men's co-ord sets?","answer":"\u003Cp\u003EThis season there are lots of exciting trends when it comes to men's co-ord sets. Oversized shirts and trousers, for example, are back in style and look great with trainers for a dressed down streetwear vibe. Color-blocking is also popular, with statement colors like pink, yellow and blue being combined to create bold, eye-catching looks. Additionally, co-ords with vintage and retro patterns such as plaid or polka dots are also gaining traction this season. With so many options available, it's easy to find the perfect coord set for men that expresses your personal style.\u003C\u002Fp\u003E"}]},{"url":"men-sweaters","faq":[{"question":"What are sweaters for men?","answer":"Sweaters for men are a type of clothing that is typically worn over a shirt or other top. They are often made from wool, cotton, or synthetic materials. Sweaters can be either pullovers or cardigans."},{"question":"Where can I buy sweaters for men online in India?","answer":"Sweaters for men are available online at Bewakoof. We offer a great selection of sweaters for men in India in different colors, designs, and styles, so you can find the perfect one for your style and budget. With free shipping and returns, there's no reason not to shop for sweaters at Bewakoof!"},{"question":"How should I care for my sweaters?","answer":"Caring for your sweaters properly will help them last longer. When washing sweaters, always use the delicate cycle on your washing machine and avoid using bleach or fabric softener. To dry sweaters, lay them flat on a towel or drying rack. Avoid hanging sweaters to dry as this can cause them to stretch out of shape."},{"question":"What are the colors of sweaters for men?","answer":"There is a wide range of colors available for sweaters for men. Some of the most popular colors include black, white, grey, blue, and brown. You can also find sweaters in other colors such as green, red, purple, and others."},{"question":"What are the sizes of sweaters available for men online at Bewakoof?","answer":"The sizes of sweaters available for men online at Bewakoof are small, medium, large, and extra-large, 2XL, 3XL."},{"question":"What is the price range of sweaters available for men online at Bewakoof?","answer":"The price range of sweaters available for men online at Bewakoof is Rs. 799 to Rs. 1599."},{"question":"What are the shipping charges for sweaters ordered online at Bewakoof?","answer":"The shipping charges for sweaters ordered online at Bewakoof are Rs. 30 for orders below Rs. 399 and free for orders above Rs. 399."},{"question":"What is the return policy for sweaters purchased online at Bewakoof?","answer":"The return policy for sweaters purchased online at Bewakoof is that they can be returned within 15 days of delivery for a full refund."},{"question":"What are the payment methods accepted for sweaters ordered online at Bewakoof?","answer":"The payment methods accepted for sweaters ordered online at Bewakoof are credit card, debit card, net banking, and cash on delivery."},{"question":"What is the delivery time for sweaters ordered online at Bewakoof?","answer":"The delivery time for sweaters ordered online at Bewakoof is 7 to 8 working days."}]},{"url":"men-hoodies-sweatshirts","faq":[{"question":"What are the different types of hoodies and sweatshirts for men?","answer":"There are many different types of hoodies and sweatshirts for men on the market today. Some common styles include pullover hoodies, full-zip hoodies, and quarter-zip hoodies. There are also a variety of materials used to make hoodies and sweatshirts, including cotton, polyester, and blends of both materials."},{"question":"What are the benefits of wearing a hoodie or sweatshirt?","answer":"Hoodies and sweatshirts offer a number of benefits for those who wear them. They can provide warmth on cooler days, and protection from the sun, and can be stylish and comfortable at the same time. Hoodies and sweatshirts are also often used as layering pieces, which can help to create a variety of different looks."},{"question":"How do I choose the right hoodie or sweatshirt for me?","answer":"When choosing a hoodie or sweatshirt, it is important to consider a few factors. First, think about the climate you live in and what time of year you will be wearing the garment. If you live in a warm climate, you may want to choose a lighter-weight hoodie or sweatshirt made from a breathable material. If you plan on wearing your hoodie or sweatshirt in colder weather, a heavier-weight garment made from a warm material like wool or fleece will be a better option. It is also important to consider the fit of the hoodie or sweatshirt. A fitted hoodie or sweatshirt will provide a more streamlined look, while a loose-fitting one will be more relaxed. Finally, think about the style of the hoodie or sweatshirt and choose one that fits your personal taste."},{"question":"How do I care for my hoodie or sweatshirt?","answer":"Most hoodies and sweatshirts can be machine washed, but it is always best to check the care label before laundering. If you are washing a hoodie or sweatshirt made from a delicate material, it is best to hand wash it or have it professionally cleaned. When storing a hoodie or sweatshirt, be sure to fold it rather than hanging it to prevent stretching out the fabric."},{"question":"What are some common hoodie and sweatshirt styles?","answer":"There are many different styles of hoodies and sweatshirts available on the market. Some common styles include pullover hoodies, full-zip hoodies, and quarter-zip hoodies. There are also a variety of materials used to make hoodies and sweatshirts, including cotton, polyester, and blends of both materials."},{"question":"What sizes are available in Mens Hoodies at Bewakoof?","answer":"At Bewakoof, we offer a wide range of sizes for our mens sweatshirts so that you can find the perfect fit for your body. Our sizes start at Extra Small and go up to 6XL, so whatever your size, we've got you covered. We know that finding the right size can sometimes be tricky, so we've put together a few blog posts to help you out. To find out more, just head over to our Size Guide page.Still not sure what size to choose? No problem! We offer free returns on all of our products, so if you order the wrong size, you can simply return it for a refund or exchange."},{"question":"What is the difference between a hoodie and a sweatshirt?","answer":"Sweatshirts are typically made from thicker, heavier fabric than hoodies. They often have a fleece lining for added warmth and may even be quilted. Sweatshirts also tend to have a loose, relaxed fit compared to hoodies. Hoodies, on the other hand, are usually made from thinner material and have a more fitted look. Hoodies also typically have a hood, of course, which sweatshirts lack. Finally, hoodies often have cool embellishments like drawstrings and kangaroo pockets, while sweatshirts usually dont. So, when trying to decide between a hoodie and a sweater, it really comes down to what style youre going for and what kind of weather youre dressing for. If you need something warm and relaxed, go for a sweatshirt. But if you want something trendy and fitted, go for a hoodie."},{"question":"What are the different types of fabrics used to make a hoodie?","answer":"There are a few different types of fabrics that are commonly used to make hoodies, including cotton, polyester, and fleece. Cotton is a natural fiber that is soft and breathable, making it a good choice for those who want a comfortable hoodie that they can wear in any season. Polyester is a synthetic fiber that is often used in athletic wear because it is lightweight and quick-drying. Fleece is a type of fabric that is made from recycled plastic bottles and is often used in winter apparel because it is warm and insulating."},{"question":"What size do I need to wear for a hoodie or sweatshirt?","answer":"If you're looking for a stylish hoodie or sweatshirt that will keep you comfortable, you'll need to know what size to wear. Men's hoodies and sweatshirts come in a variety of sizes, so it's important to choose the right one for your body type. If you're unsure of what size to purchase, take your measurements and compare them to the size chart of the product you're interested in. Once you've found the right size, you'll be able to enjoy your new hoodie or sweatshirt with confidence."},{"question":"What are the best brands of hoodies and sweatshirts for men?","answer":"The best brands of hoodies and sweatshirts for men are those that offer a variety of colors and designs. Bewakoof.com is one of the best brands that offer a wide range of hoodies and sweatshirts in various styles and designs online at best prices in India."}]},{"url":"men-jackets","faq":[{"question":"What types of jackets for men are available at Bewakoof?","answer":"Bewakoof offers a wide range of jackets for men, including winter coats, bombers, puffers and trendy styles to keep you looking fashionable all year round."},{"question":"Do you have winter jackets for men?","answer":"Yes, we have a wide selection of winter jackets for men that are not only warm but also stylish. They're perfect for keeping you cozy during the colder months."},{"question":"What makes Bewakoof's jackets for men stand out?","answer":"Bewakoof's winter jackets stand out for their quality, style, and affordability. We offer a wide range of options to suit every style and budget, helping you stay warm and look cool."},{"question":"How can I find the right jacket for me on Bewakoof?","answer":"To find the right jacket for you on Bewakoof, you can browse by category, style, color, or price. You can also use our sizing guide to ensure a perfect fit."},{"question":"Can I return or exchange jackets I purchase from Bewakoof?","answer":"Yes, Bewakoof offers easy returns or exchanges for items that are unworn and in their original condition. Please see our return and exchange policy for more details."},{"question":"What are the payment options on Bewakoof for purchasing men's jackets?","answer":"Bewakoof offers multiple payment options including credit\u002Fdebit cards, net banking, UPI, and cash on delivery(cod)."},{"question":"Are there any special care instructions for winter jackets for men?","answer":"Yes, each product comes with its care instructions. Generally, we recommend washing in cold water, avoiding bleach, and line drying where possible."},{"question":"Does Bewakoof offer international shipping for men's jackets?","answer":"Yes, Bewakoof ships internationally in selected countries. Additional shipping charges may apply based on your location."},{"question":"Does Bewakoof offer men's jackets in plus sizes?","answer":"Yes, Bewakoof offers a variety of sizes, including plus sizes. Be sure to check the size guide for each jacket to ensure the correct fit."},{"question":"Are there different materials available for men's jackets at Bewakoof?","answer":"Yes, Bewakoof offers men's jackets in a variety of materials, including cotton, nylon, fleece and more."},{"question":"Can I customise the jackets I buy from Bewakoof?","answer":"Currently, Bewakoof does not offer customization options. However, there is a wide range of styles and colors available to suit different tastes."},{"question":"Are there seasonal sales on jackets for men at Bewakoof?","answer":"Yes, Bewakoof has periodic sales and promotional events. Keep an eye on our website or subscribe to our newsletter for updates."},{"question":"Can I track the delivery of my Bewakoof jacket?","answer":"Yes, once you've placed your order, you'll receive a tracking number that you can use to follow your shipment."}]},{"url":"streetwear-collection","faq":[{"question":"What is streetwear?","answer":"Streetwear refers to a style of clothing and accessories that is casual, comfortable, and often includes bold graphics or other creative designs. It is typically associated with youth culture and hip-hop fashion and can be found at a variety of retailers both online and offline."},{"question":"Why should I shop for streetwear online at Bewakoof?","answer":"At Bewakoof, you'll find a huge selection of high-quality streetwear styles and accessories, all at unbeatable prices. With fast and free shipping options, easy returns and exchanges, and great customer service, Bewakoof is the best place to shop for streetwear online in India. Plus, with exclusive discounts and promotions, you'll always get the best deals on your favorite streetwear styles. So why wait? Start shopping for men's and women's streetwear at Bewakoof today!"},{"question":"What are the different payment options available?","answer":"We accept all major credit cards, as well as PayPal and other secure payment methods. To learn more about our available payment options, visit the Bewakoof website today."},{"question":"How long will it take for my order to arrive?","answer":"Your order will typically arrive within 7-8 business days, depending on the shipping option you choose. For more accurate delivery times, please visit the Bewakoof website and enter your zip code at checkout."},{"question":"Do you offer free shipping?","answer":"Yes, we offer fast and free shipping options for all orders over Rs. 500. To learn more about our available shipping methods and costs, visit the Bewakoof website today."},{"question":"What is the sizing chart for your products?","answer":"We offer a wide range of sizes, including XS to 4XL for women's styles and XS to 4XL for men's styles. To view our sizing chart and find the perfect fit, visit the Bewakoof website today."},{"question":"What type of materials are your products made from?","answer":"At Bewakoof, we use high-quality materials in all our products, including cotton. To learn more about the materials and fabrics we use in our streetwear styles and find the perfect pieces for your wardrobe, visit the Bewakoof website today."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"samsung-galaxy-m13-back-covers-cases","faq":[{"question":"What are the different types of Samsung M13 covers?","answer":"There are a few different types of Samsung M13 covers. The most common type is the traditional hard case, which provides good protection against drops and scratches. Silicone cases are also popular, as they are soft and flexible yet still provide good protection. Another option is a glass mobile case, which is made of shatter-resistant glass and provides the best protection against drops and other impact damage. Finally, cloth cases are growing in popularity due to their stylish designs and strong scratch-resistance. So no matter what your needs may be, there's a Samsung M13 cover out there that's perfect for you."},{"question":"How much do Samsung M13 cases cost?","answer":"Prices for Samsung M13 cases vary but typically fall in the Rs. 199 - 529 range. There are a variety of materials and styles to choose from, so you can find the perfect case for your needs and budget. So whether you're looking for something flashy or something more subtle, there's a Samsung M13 case out there for you."},{"question":"What are the benefits of using a Samsung M13 back cover?","answer":"There are a few different benefits to using a Samsung M13 back cover. The most obvious benefit is that it protects your phone from scratches, dings, and other cosmetic damage. It also helps to protect your phone from drops and other impact damage, which can seriously damage your device. Additionally, a back cover can make your phone easier to grip, which can be helpful if you tend to drop your phone often. Finally, back covers come in a variety of colors and styles, so you can find one that fits your personal aesthetic. So if you're in the market for a new phone case, be sure to check out the latest Samsung M13 back covers. You won't be disappointed."},{"question":"Where can I buy Samsung M13 mobile covers online?","answer":"Bewakoof.com is the best online shopping site to buy mobile covers and cases at the best price."},{"question":"What offers & deals does Bewakoof provide for Mobile covers?","answer":"Bewakoof.com provides offers and benefits, Avail the best discounts with our Tribe membership."},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, Bewakoof provides a 15 days return and exchange policy for mobile covers."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"oppo-reno8-5g-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno8 5G cover?","answer":"There are various types of covers available for Oppo Reno8 5G in the market. Few of them are hard covers, plastic covers, glass covers, silicone and leather covers."},{"question":"How much do Oppo Reno8 5G cases cost?","answer":"Oppo Reno8 5G cases generally cost between Rs.199 - Rs.999, the price range totally depends on the quality of the covers make sure you buy the best quality pone cover which can protect your phone with accidental damage."},{"question":"What are the benefits of using a Oppo Reno8 5G back cover?","answer":"Using Oppo Reno8 5G back cover gives a stylish look to our phone along with the protection from scratches."},{"question":"Where can i buy Oppo Reno8 5G mobile covers online?","answer":"Bewakoof.com offers a huge variety in Oppo Reno8 5G back cover in different designs at affordable prices."},{"question":"WHAT OFFERS & DEALS DOES BEWAKOOF PROVIDE FOR MOBILE COVERS?","answer":"Get our Tribe membership to avail the best discounts and offers, buy trendy mobile covers at best prices with fast delivery."},{"question":"DOES BEWAKOOF PROVIDE RETURNS & EXCHANGE ON MOBILE COVERS?","answer":"Bewakoof offers 15 days return and exchange policy, do check out our return and exchange policy page before making any return."},{"question":"WHAT MERCHANDISE COLLECTION DO WE HAVE IN THE MOBILE CASE COLLECTION?","answer":"From Disney, Friends, Star Wars, Minion to Pokemon, DC, Marvel, Bewakoof.com offers huge collection in Apparel and mobile covers online at very reasonable prices, Shop Now."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"realme-9-pro-plus-back-covers-cases","faq":[{"question":"What are the different types of Realme 9 Pro Plus cover?","answer":"At Bewakoof you will find three kinds of Realme 9 Pro Plus covers to choose from- Hard Plastic and 3D Print Case. These have a gorgeous matte finish that takes your style game a notch above. All of these mobile cases are lightweight, impact resistant and durable."},{"question":"How much do Realme 9 Pro Plus cases cost?","answer":"At Bewakoof, we try to cater to customers with all kinds of budget and style needs. Thus, we have Realme 9 Pro Plus covers that range between Rs. 199 to Rs. Rs. 299 spending on the design."},{"question":"What are the benefits of using a Realme 9 Pro Plus back cover?","answer":"Realme 9 Pro Plus Cases protect your mobile phone from any potential damage making them more durable and as good as new. In turn, you get a better resale value. Additionally, these cases add a fine touch to your mobile phone and make it look more stylish and fun."},{"question":"Where can I buy Realme 9 Pro Plus mobile covers online?","answer":"You can buy quality Realme 9 Pro Plus Mobile Cases from Bewakoof. All you need to do is select the model name and you will be presented with our collection of Realme covers. Our mobile cases are impact resistant, lightweight, and have a sleek profile that adds to the beauty of your mobile phone apart from protecting it from scratches and any other damages."},{"question":"What offers & deals does Bewakoof Provide for mobile covers?","answer":"Bewakoof has irresistible offers on its mobile cases. You can grab up to 50-80 % on various weekend sales, Payday Party etc. However, if you are someone who is looking for extra discounts and offers check out our exclusive TriBe Membership to score extra discounts on all purchases."},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Bewakoof aims to give its customers a satisfactory shopping experience and thus, we do have a 15-day return and exchange policy for mobile cases. This is a seamless process and you will surely not be disappointed."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c30-back-covers-cases","faq":[{"question":"What are the different types of Realme C30 cover?","answer":"You can find many Realme C30 cover on the market, such as hard covers, plastic covers, glass covers, silicone and leather."},{"question":"How much do Realme C30 cases cost?","answer":"If you're looking for a high-quality phone case that can protect your investment from accidental damage, be prepared to spend between Rs.199 - Rs.999 on an Realme C30 cases."},{"question":"What are the benefits of using a Realme C30 back cover?","answer":"Not only does the Realme C30 back cover look stylish, but it will also keep your phone safe from any unwanted scratches."},{"question":"Where can i buy Realme C30 mobile covers online?","answer":"At bewakoof.com, we have a large selection of Realme C30 back covers that come in many different designs and are all very affordable."},{"question":"WHAT OFFERS & DEALS DOES BEWAKOOF PROVIDE FOR MOBILE COVERS?","answer":"The best way to avail of discounts and offers is by signing up for our Tribe membership. With this, you can purchase trendy mobile covers at affordable prices with quick delivery."},{"question":"DOES BEWAKOOF PROVIDE RETURNS & EXCHANGE ON MOBILE COVERS?","answer":"If you aren't satisfied with your purchase, feel free to return or exchange it within 15 days of the initial sale. Before taking any further action, please consult our policy page."},{"question":"WHAT MERCHANDISE COLLECTION DO WE HAVE IN THE MOBILE CASE COLLECTION?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a36-back-covers-cases","faq":[{"question":"What are the different types of Oppo A36 covers?","answer":"There are several types of Oppo A36 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A36 cases cost?","answer":"Generally, Oppo A36 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A36 back cover?","answer":"The benefits of using an Oppo A36 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A36 mobile covers online?","answer":"Get the best Oppo A36 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-9-5g-back-covers-cases","faq":[{"question":"What are the different types of Realme 9 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of Realme 9 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do Realme 9 5G cases cost?","answer":"The Realme 9 5G covers costs between the price range of Rs. 249-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Realme 9 5G back cover?","answer":"Realme 9 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Realme 9 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of Realme 9 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers & deals does Bewakoof provide for Realme 9 5G cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the Realme 9 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe member\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Looney Tunes, Tom & Jerry, BTS, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and more.\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord CE 2 Lite 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of OnePlus Nord CE 2 Lite 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope in Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do OnePlus Nord CE 2 Lite 5G cases cost?","answer":"The OnePlus Nord CE 2 Lite 5G covers costs between the price range of Rs. 249-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a OnePlus Nord CE 2 Lite 5G back cover?","answer":"OnePlus Nord CE 2 Lite 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy OnePlus Nord CE 2 Lite 5G covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of OnePlus Nord CE 2 Lite 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for OnePlus Nord CE 2 Lite 5G cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the OnePlus Nord CE 2 Lite 5G back covers. You can even avail yourself of special benefits and discounts on mobile covers if you are a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe member\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-t-shirts'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Tom & Jerry, BTS, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and more.\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","faq":[{"question":"What are the different types of Redmi Note 10 Pro Max covers?","answer":"You can choose from a range of covers for your Redmi Note 10 Pro Max. At Bewakoof we have Designer Hard Covers, 3D Designer Cases and Premium Glass covers. These have different finishes but are equally good at protecting your mobile phone from accidental damage and scratches."},{"question":"How much do Redmi Note 10 Pro Max cases cost?","answer":"High Quality, Impact Resistant, Premium finish designer cases Redmi Note 10 Pro Max covers at Bewakoo cost between Rs. 149 to Rs. 529. Although, you can score these at even greater discounts during sale events."},{"question":"What are the benefits of using a Redmi Note 10 Pro Max back cover?","answer":"Bewakoofs range of Redmi Note 10 Pro Max covers are designed to protect your mobile phones from damage while also giving them a unique touch. Choose from our 3D, Designer or Premium Glass covers with a flawless matte finish to give your mobile phone a makeover."},{"question":"Where can I buy Redmi Note 10 Pro Max mobile covers online?","answer":"Bewakoof has all styles and designs of Redmi note 10 pro max back covers you can possibly imagine. From hard plastic to glass and 3D finishes we have it all. You can choose from Solid Hues, Witty Quotes, All Over Prints, Official Merch and more."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof runs a lot of special offers and sale events for its customers. The most often ones are Pay Day Party, Weekend sales, Clearance Zones etc. However, if you want to avail discounts and offers at any point in time you can become a member of our exclusive TriBe Membership."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof does have a 15-day return and exchange policy on mobile covers. This ensures customers are getting the product of their choice and dont have to compromise on quality,"},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Our Official Merch Store has collections of Disney, FRIENDS, Marvel, Looney Tunes, Minions, Tom and Jerry and so many more fan favourites."}]},{"url":"oneplus-nord-2t-5g-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord 2T 5G covers?","answer":"At Bewakoof you will find premium glass covers as well as designer hardcovers for your OnePlus Nord 2T 5G. Both these covers protect your mobile phones equally efficiently and provide a stylish look."},{"question":"How much do OnePlus Nord 2T 5G cases cost?","answer":"You can buy OnePlus Nord 2T 5G cases between a price range of Rs.299- Rs.529. You can pick one depending on the style, design and the budget you are looking for."},{"question":"What are the benefits of using a OnePlus Nord 2T 5G back cover?","answer":"Our mobile covers protect your mobile phone form accidental damage and scratches. When you protect your device and maintain its condition, you get a better resale value for it. Moreover, it gives your mobile phone a new quirky look."},{"question":"Where can I buy OnePlus Nord 2T 5G mobile covers online?","answer":"When looking further for mobile covers online, Bewakoof is your one-stop solution. You get durable, impact resistant mobile covers for almost all models at a very reasonable price. However, what distinguishes our mobile covers from others is the fact that the designs are nothing like what you will find anywhere else."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof frequently has sales where you can receive up to 70% off phone cases. However, if you don't want to wait for a sale, you can become a TriBe member and get access to special deals that are not available to the public."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"If you're not satisfied with your purchase, we offer a 15-day return policy for all of our mobile covers. You can choose any cover you'd like and return or exchange it as long as it's in original condition within 15 days."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Our mobile case collection offers official merchandise for some of the world's most beloved characters, including Marvel, DC, Disney, Looney Tunes, Minions and more. If you're looking for something specific or just want to browse our selection, be sure to explore other categories in our store as well."}]},{"url":"samsung-galaxy-f23-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung F23 5G covers?","answer":"At Bewakoof, we have a wide variety of mobile covers to choose from, including Premium Glass Covers, 3D Designer Covers, Designer Hard Covers and Hard Plastic Cases. However, for your Samsung F23 5G, we only have the best of all, premium glass cases. These are shockproof and lightweight and come in several solid colours with a glossy finish. You can also find Official & Original Prints, Doodle Prints, and Typography Prints."},{"question":"How much do Samsung F23 5G covers cost?","answer":"Bewakoofs range of premium glass Samsung F23 5G covers is priced at Rs. 529. These have a tempered glass back with a glossy finish, rubber edges, sleek profile and easy access to ports and buttons."},{"question":"What are the benefits of using a Samsung F23 5G back cover?","answer":"A Samsung F23 5G mobile cover not only protects your phone from unsightly scrapes and other damage but also helps it maintain its initial quality and style. You can find a perfect Samsung F23 5G mobile cover according to your taste as they come in many colours and designs. They are also easy to put on and take off, so you can change them frequently if you'd like!"},{"question":"Where can I buy Samsung F23 5G mobile covers online?","answer":"Bewakoof has the perfect solution to all your mobile case worries. With our stylish and quirky mobile covers, you can express your true personality. Shop now and get great discounts with our exclusive TriBe Membership."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof offers several sales and discounts throughout the year on different items, including mobile covers on weekends and paydays. If you want to get access to special prices all year long, you can sign up for their Tribe Membership which is exclusive to members only."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"We offer product exchange & return to ensure customer satisfaction is always our top priority. If you're unhappy with your purchase, you can opt for an exchange or return within 15 days. Our seamless service will make sure your experience is as hassle-free as possible."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Bewakoofs Mobile Case collection offers a variety of designs to choose from, including Marvel, DC, Minions, NASA, BTS, Disney and Anime."}]},{"url":"oneplus-9-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 9 covers?","answer":"At Bewakoof, you will find OnePlus 9 covers of hard plastic and glass. While the hard plastic cases are much more affordable the glass covers have a premium finish. You can choose amongst these depending on the budget and finish you want. All our covers are impact resistant, have a sleek profile and do not restrict access to ports and buttons."},{"question":"How much do OnePlus 9 cases cost?","answer":"You can buy OnePlus 9 cases at Bewakoof in a price range of Rs.149- Rs.529. The prices are fair considering the designer styles and quality of the material. However, you can always score these at a much lesser price during special discounts and offers."},{"question":"What are the benefits of using a OnePlus 9 back cover?","answer":"There are quite a lot of benefits of using a OnePlus9 back cover considering the price point and how much you would like to protect it from accidental damage and scratches. They also keep your mobile phone as good as new if cleaned regularly and taken care of. The best part, however, if your mobile phone is completely protected you will get a better resale value."},{"question":"Where can I buy OnePlus 9 mobile covers online?","answer":"Bewakoof is your one-stop destination for fun and stylish mobile covers. You will find a range of options for your mobile phone in your budget and according to your needs. However, the best part is that our mobile covers have designer styles, 3D prints and some of your most favourite Official Prints of Disney. Marvel, DC, Minions etc."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof usually hosts several sale events with attractive offers of upto 70% off on mobile covers. But, if you do not want to wait for the sale you can be a member of our TriBe membership and get access to exclusive discounts and offers."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof does have a 15- return and exchange policy for mobile covers. You can order a mobile cover of your choice and return or exchange it within 15 days in original condition if you do not like the product."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find official merchandise collection for Marvel, DC, Disney, Looney Tunes, Minions and other such widely loved characters. You can explore other categories in the official merch store as well."}]},{"url":"xiaomi-mi-12-pro-back-covers-cases","faq":[{"question":"What are the different types of Mi 12 Pro back covers?","answer":"On Bewakoof.com, you will find a wide range of Mi 12 Pro cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do Mi 12 Pro cases cost?","answer":"The Mi 12 Pro covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Mi 12 Pro back cover?","answer":"Mi 12 Pro cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"What offers & deals does Bewakoof provide for Mi 12 Pro cases?","answer":"You can find several price drops and offers on Mi 12 Pro back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member. "},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"Where can I buy Mi 12 Pro covers online?","answer":"Bewakoof.com is the best place to find a wide range of Mi 12 Pro covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too. "},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"iphone-14-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone14 Plus covers?","answer":"At Bewakoof, we take aesthetics and quality seriously. Excellent news for you; you'll be able to find a slew of iPhone14 Plus mobile cover options. We offer a variety of high-quality glass mobile casese in a range of designs that are guaranteed to complement your style."},{"question":"How much do iPhone14 Plus cases cost?","answer":"If you've been with us for a while, you'll know that our rates are quite reasonable and fit within your budget. Our iPhone14 Plus Premium glass cases cost just Rs.529 each. You may purchase any design or print at the same price, no matter which one you choose."},{"question":"What are the benefits of using an iPhone 14 Plus back cover?","answer":"The back cover of the iPhone 14 not only guards your phone against any damage that could happen by accident, but it also gives it a shiny look with standout prints- all while representing your personality."},{"question":"Where can I buy iPhone 14 mobile covers online?","answer":"Bewakoof offers a variety of iPhone14 cover options that are both durable and high-quality. You can never go wrong with our mobile covers. We look after the protection and style quotient of your new iPhone as you learn about its wonderful specs."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"If you're looking for a great deal on mobile covers, Bewakoof is the place to be. We host regular sales events like The OOF Sale and The Happy Weekend Sale, where you can get massive discounts on our products. Plus, if you become a member of our TriBe, you'll enjoy exclusive deals and offers all year round."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"At Bewakoof, we have a 15-day return and exchange policy on our mobile device covers to ensure you make a well-informed decision when purchasing an iPhone14 cover from us."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"You can find the majority of the Official Merchandise at our Official Merchandise Store including that of Disney, Marvel, Disney, Peanuts, Minions, NASA & more."}]},{"url":"xiaomi-poco-m4-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Poco M4 Pro 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of Poco M4 Pro 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do Poco M4 Pro 5G cases cost?","answer":"The Poco M4 Pro 5G covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Poco M4 Pro 5G back cover?","answer":"OnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Poco M4 Pro 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of Poco M4 Pro 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers & deals does Bewakoof provide for Poco M4 Pro 5G cases?","answer":"You can find several price drops and offers on the Poco M4 Pro 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"samsung-galaxy-s21-fe-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung S21 FE 5G covers?","answer":"Bewakoof sells Samsung S21 FE 5G covers in hard plastic and glass. The more affordable hard-plastic cases have a higher level of quality, whereas the high-quality glass coverings have a premium look. Depending on your budget and preference, you may select one of these options. All of our cases are impact resistant, stylish, and do not obstruct ports or buttons when installed correctly."},{"question":"How much do Samsung S21 FE 5G cost?","answer":"Samsung S21 FE 5G Mobile covers cost anywhere between Rs. 250- Rs.550 depending on the type of mobile cover. The designer hard cases are a cheaper alternative while the premium glass covers have a more premium look and finish."},{"question":"What are the benefits of using a Samsung S21 FE 5G back cover?","answer":"There are several advantages to using a Samsung S21 FE 5G back cover, both in terms of cost and how much you want to protect it from accidental harm and scratches. They also keep your phone looking brand new if properly maintained and handled. The greatest part is that if your phone is totally safeguarded, you will have a greater resale value."},{"question":"Where can I buy Samsung S21 FE 5G mobile covers online?","answer":"Bewakoof is a one-stop shop for stylish and hard-to-find mobile phone cases. You'll be able to find something for everyone in your price range and requirements at Bewakoof. However, the best thing is that our cell phone covers are available in designer patterns, 3D prints, and some of your favorite Official Prints of Disney such as Marvel, DC, Minions, etc."},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"Bewakoof frequently has sales where shoppers can take advantage of up to 70% off on mobile phone covers. However, if you don't want to wait for a sale, you can join our TriBe membership and get access to discounts and offers that are not available to the general public."},{"question":"Does Bewakoof provide return & exchange on mobile covers?","answer":"If you're not pleased with your purchase from Bewakoof, don't worry! We accept returns and exchanges on mobile covers 15 days after the product has been delivered to you. Simply contact us and return the item in its original condition within that timeframe if you'd like to process a return or exchange."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Marvel, DC, Disney, Looney Tunes, Minions, are some of the famous characters in the Official Collaboration mobile case collection. You can also search different areas in the official merchandise shop."}]},{"url":"samsung-galaxy-a53-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung A53 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of Samsung A53 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more. "},{"question":"How much do Samsung A53 5G cases cost?","answer":"The Samsung A53 5G covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Samsung A53 5G back cover?","answer":"Samsung A53 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Samsung A53 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of Samsung A53 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers & deals does Bewakoof provide for Samsung A53 5G cases?","answer":"You can find several price drops and offers on Samsung A53 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"samsung-galaxy-m53-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung M53 5G covers?","answer":"\u003Cp\u003EAt Bewakoof, you can choose from a wide range of premium glass Samsung M53 5G covers in different styles and designs. These designs are sure to match your style and personality.\u003C\u002Fp\u003E"},{"question":"How much do Samsung M53 5G cases cost?","answer":"\u003Cp\u003EOur Samsung M53 5G premium glass back covers are priced at Rs. 529. These have tempered glass with a glossy finish, and rubber edges for a better grip and smooth landing. Moreover, these cases also give you easy access to buttons and ports.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Samsung M53 5G back cover?","answer":"\u003Cp\u003EOur Samsung M53 5G back covers protect your mobile phone from accidental damage and scratches. In the long run, it keeps your phone looking as good as new. Moreover, you will end up getting a better resale value even if you want to sell it after a few years.\u003C\u002Fp\u003E"},{"question":"Where can I buy Samsung M53 5G back covers online?","answer":"\u003Cp\u003EYou can buy the best in quality, trending and affordable Samsung M53 5G covers online at Bewakoof. We have a plethora of options in designs that suit your mood and personality. These complement and elevate your look to a whole new level.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EWe have special offers running on the website and app every now and then to make sure you can grab your favorites at the best discounts. Apart from that we also have an exclusive \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe Membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E that provides you additional exclusive discounts.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof does have a 15-day return and exchange policy to make sure our customers have a seamless and satisfactory shopping experience. You can place a return order from our website or app and we will have the product returned and refund processed as soon as possible.\u003C\u002Fp\u003E"},{"question":"What Merchandise Collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof has an Official Merchandise Collection of Friends, Marvel, DC, Disney, House Of Dragon, Minions, Garfield and many more of your favourite characters to choose from. Now you get to flaunt your fandom and love your favourite on-screen characters with our affordable, best-in-quality mobile covers.\u003C\u002Fp\u003E"}]},{"url":"anime-collection","faq":[{"question":"What is Bewakoof's Anime Collection?","answer":"Bewakoof's Anime Collection is a specially curated line of clothing and accessories inspired by popular anime series and characters. It includes a wide range of T-shirts, hoodies, vests, backpacks, hats, phone cases, and more, featuring anime-themed designs."},{"question":"Are the anime-themed products available in different sizes?","answer":"Yes, we offer a wide range of sizes for our anime-themed products to cater to customers of all body types. You can find size options when browsing our product listings."},{"question":"Do Bewakoof have a return policy for anime-themed products?","answer":" Yes, we have a hassle-free return policy for our anime-themed products. If you are not satisfied with your purchase, you can return it within the specified return window, and we will assist you in the return process."},{"question":"Are Bewakoof's Anime T-Shirts comfortable for everyday wear?","answer":"Absolutely! We prioritize both style and comfort in our Anime T-Shirts. They are made from high-quality materials to ensure durability and comfort, making them suitable for everyday wear."},{"question":"How often do you release new designs in the Anime Collection?","answer":"We regularly update our Anime Collection with fresh and exciting designs inspired by different anime series and characters. Keep an eye on our website for the latest additions."},{"question":"Can I wash and care for my anime-themed products like regular clothing?","answer":"Yes, you can care for your anime-themed products just like regular clothing. We provide care instructions on our product pages to help you maintain the quality of your purchase."},{"question":"Are there any exclusive offers or discounts on anime-themed products?","answer":"We often have special promotions and discounts on our anime-themed products. To stay updated on the latest offers, subscribe to our newsletter and follow us on social media."},{"question":"How can I contact Bewakoof's customer support regarding my anime-themed product inquiries?","answer":"You can reach us at care@bewakoof.com with all queries. We do not have a Bewakoof customer care number."}]},{"url":"oneplus-10-pro-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 10 Pro covers?","answer":"\u003Cp\u003EAt Bewakoof you can choose from a range of back covers for your OnePlus 10 Pro. Our Designer Hard Covers come in a plethora of designs that suit all your moods and personalities.\u003C\u002Fp\u003E"},{"question":"How much do OnePlus 10 Pro cases cost?","answer":"\u003Cp\u003EOnePlus 10 Pro cases at Bewakoof cost between the range of Rs. 249 to Rs.299. These are extremely affordable yet stylish, impact resistant and of premium quality.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a OnePlus 10 Pro back cover?","answer":"\u003Cp\u003EProtecting your OnePlus 10 Pro with a back cover will not minimise the damage from accident drops and damages but also increase the resale value of your mobile phone. Not to mention, our designer covers with quirky and fun designs add a dash of uniqueness to your personality.\u003C\u002Fp\u003E"},{"question":"Where can I buy the OnePlus 10 Pro mobile covers online?","answer":"\u003Cp\u003EBewakoof is the one place where you will find OnePlus 10 Pro mobile covers that are affordable, great quality and stylish looking. We never compromise on quality while styling keeping the fun factor intact.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof hosts a sale every now and then to make sure you can grab your favourite mobile accessories at the best price. You do not have to wait for special occasions to invest in a mobile cover since we always have weekend offers, payday special discounts etc. However, if you want to score Bewakoof products on a great deal irrespective of the sale you can do so with our exclusive \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe Membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof does have a 15-day \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E to ensure our customers have a seamless shopping experience.\u003C\u002Fp\u003E"},{"question":"What Merchandise Collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof has an Official Merchandise Collection of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhouse-of-the-dragon'\u003E\u003Cstrong\u003EHouse Of Dragon\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fminions-merchandise'\u003E\u003Cstrong\u003EMinions\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Garfield and many more of your favourite characters to choose from.\u003C\u002Fp\u003E"}]},{"url":"oneplus-10r-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 10R back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of OnePlus 10R cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do OnePlus 10R cases cost?","answer":"\u003Cp\u003EThe OnePlus 10R covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a OnePlus 10R back cover?","answer":"\u003Cp\u003EOnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy OnePlus 10R covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of OnePlus 10R covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for OnePlus 10R cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the OnePlus 10R back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"realme-9-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Realme 9 pro covers?","answer":"\u003Cp\u003EThe variety of mobile covers available at Bewakoof.com includes hard covers and gorilla glass covers as well. The addition of the recently launched LED light covers allows you to flash your style quotient!\u003C\u002Fp\u003E"},{"question":"How much do Realme 9 pro 5g cases cost?","answer":"\u003Cp\u003EBewakoof.com is an online store that sells mobile covers with prices starting at Rs 299 and going up to 529, depending on the model you choose! You can find occasional discounts as well which means this website has something for everyone in your family whether they're looking for a gift or just want some extra protection.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Realme 9 pro 5g back cover?","answer":"\u003Cp\u003ERealme 9 Pro back covers are sleek and fashionable, protecting from accidents. They also give your device an added personal touch with their stylish design!\u003C\u002Fp\u003E"},{"question":"Where can I buy Realme 9 pro covers online?","answer":"\u003Cp\u003EBewakoof.com is the hub for the funkiest and quirkiest mobile cases online.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou can score some great deals at Bewakoof. With whopping discounts like 50-80% OFF and frequent price drops on mobile cases, the website is worth checking out for your next purchase!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003ELet Bewakoof change your smile with their 15-day \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturns and refund policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E! Bewakoof.com will take care of everything else while giving refunds on all defective products without quibbles whatsoever (as long as they're still in good condition).\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is the perfect place to find a phone cover that suits your personality. With official designs like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-merchandise'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"iphone-14-pro-back-covers-cases","faq":[{"question":"What are the different types of iPhone 14 Pro back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of iPhone 14 Pro cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 14 Pro cases cost?","answer":"\u003Cp\u003EThe iPhone 14 Pro covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using an iPhone 14 Pro back cover?","answer":"\u003Cp\u003E iPhone 14 Pro cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 14 Pro covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of iPhone 14 Pro covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for iPhone 14 Pro cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the iPhone 14 Pro back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"iphone-14-pro-max-back-covers-cases","faq":[{"question":"What are the different types of iPhone 14 Pro Max back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of iPhone 14 Pro Max cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 14 Pro Max cases cost?","answer":"\u003Cp\u003EThe iPhone 14 Pro Max covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using an iPhone 14 Pro Max back cover?","answer":"\u003Cp\u003E OnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 14 Pro Max covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of iPhone 14 Pro Max covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for iPhone 14 Pro Max cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the iPhone 14 Pro Max back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"tie-dye","faq":[{"question":"What kind of fabric can be tie-dyed?","answer":"Almost any kind of natural fabric can be tie-dyed, including cotton, linen, and silk. Synthetic fabrics such as polyester and nylon can also be tie-dyed, but the results are often not as vibrant."},{"question":"What kind of dyes can be used for tie-dye?","answer":"There are a variety of dyes that can be used for tie dye, including natural dyes like Indigo and Cochineal, as well as synthetic dyes like Rit Dye."},{"question":"How do you tie dye a fabric?","answer":"The first step to tie-dying fabric is to wet the fabric thoroughly. The next step is to apply the dye to the fabric using a resist technique such as tying knots or wrapping rubber bands around the fabric. Once the dye has been applied, the fabric is allowed to dry in the sun or air dry."},{"question":"How do you care for tie-dyed garments?","answer":"Tie-dyed garments should be washed separately from other clothes, and preferably in cold water. It is also important to avoid using bleach or other harsh chemicals on tie-dyed fabrics."},{"question":"What are some common tie dye patterns?","answer":"There are a variety of tie dye patterns, including spiral, mandala, polka dot, and stripes. Tie-dye can also be used to create ombr or gradient effects."},{"question":"Can be tie-dyed fabrics fade?","answer":"Tie-dyed fabrics can fade over time, particularly if they are exposed to sunlight or other harsh chemicals. To help prevent fading, it is recommended that tie-dyed garments be washed in cold water and air dry whenever possible."},{"question":"Are tie-dyed garments comfortable to wear?","answer":"Yes! Tie-dyed garments are usually made from natural fabrics like cotton or linen, which makes them very breathable and comfortable to wear."}]},{"url":"xiaomi-mi-11i-back-covers-cases","faq":[{"question":"What are the different types of Xiaomi Mi 11i cover?","answer":"\u003Cp\u003EThe range of mobile covers at Bewakoof.com includes hard shell and gorilla glass as well! They've just launched LED light covers that allow you to flash your style quotient with some extra bling.\u003C\u002Fp\u003E"},{"question":"How much do Xiaomi Mi 11i cases cost?","answer":"\u003Cp\u003EThe Xiaomi Mi 11i cases on \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E cost between Rs. 199- 529 and you can even find occasional discounts and price drops on the website and app.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Xiaomi Mi 11i back cover?","answer":"\u003Cp\u003EMi 11i back covers are the perfect way to personalize your phone. They come in many different colors and designs, so you can find one that matches every outfit!\u003C\u002Fp\u003E"},{"question":"Where can I buy Xiaomi Mi 11i mobile covers online?","answer":"\u003Cp\u003EBewakoof.com is your one-stop shop for quirky, impact-resistant, and shock-proof Mi 11i cases. Moreover, you can also find many other accessories like phone grippers, backpacks, and more.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof is a one-stop shop for all your phone case needs. With stunning discounts and frequent price drops, you'll find the best Mi 11i back covers at great prices and whopping discounts!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Bewakoof promises 15-day money-back guarantee and returns and exchanges on Mi 11i covers! They'll take care of everything else and give refunds on all defective products if they're still in good condition."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EYou'll find the best Mi 11i covers that suit your personality at Bewakoof. With official designs like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EDisney, \u003C\u002Fstrong\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s20-fe-back-cover-cases","faq":[{"question":"What are the different types of Samsung Galaxy S20 FE covers?","answer":"\u003Cp\u003EAt Bewakoof you will come across a range of Samsung Galaxy S20 FE covers. You can choose from our premium glass cases, 3D designer covers, hard plastic cases, and more. All of these come in a plethora of designs, quotes, and prints that reflect your personality. You name it, we have it.\u003C\u002Fp\u003E"},{"question":"How much do Samsung Galaxy S20 FE cases cost?","answer":"\u003Cp\u003EBewakoof is known for its mobile cases which fit everyone’s budget and as for the Samsung Galaxy S20 FE Mobile cover, these start from Rs.529. These are premium glass covers with a glossy finish giving your phone a classy and stylish look. However, if you want to score these at even better prices, you can be a part of Bewakoof’s Exclusive \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E Membership and enjoy extra discounts in all categories.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Samsung Galaxy S20 FE back cover?","answer":"\u003Cp\u003EThere are quite a few benefits of having a Samsung Galaxy S20 FE back cover. Firstly, it protects your mobile phone from external damage. In turn, your phone is as good as new and you get a better resale value. Additionally, it enhances the look of your mobile phone and with wallet \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cstrong\u003Emobile covers\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E you can use it to store small little things as well.\u003C\u002Fp\u003E"},{"question":"Where can I buy Samsung Galaxy S20 FE mobile covers online?","answer":"\u003Cp\u003EWhen looking for durable, stylish, trendy, and affordable Samsung Galaxy S20 FE mobile cases, Bewakoof is your one-stop destination for all brands, be it Samsung covers, Redmi or any other popular brand. Our range of mobile covers is lightweight, sleek, shockproof and impact resistant. To make these more vibrant and quirky, we have high-definition printed designs, relatable quotes, and other typography styles.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof offers deals and discounts for its customers quite often. Make sure you keep up with our Weekend Offers, Payday Party, Clearance Sale & more on special occasions where you can avail up to 50-80% OFF. To get exclusive benefits, you also become a part of our TriBe Membership.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide Return & Exchange on Mobile Covers?","answer":"\u003Cp\u003EBewakoof aims to provide its customers with the best service and thus, we do have a 15-Day Return 7 Exchange Policy. Wherever you are, you can avail this policy at almost all pin codes.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case application?","answer":"\u003Cp\u003EAt Bewakoof we have mobile covers that reflect your true personality. With the official merchandise collection of Disney. Marvel, DC Minions, Peanuts, Minions & more your mobile phones will have a touch of your quirky and unique persona.\u003C\u002Fp\u003E"}]},{"url":"realme-8i-back-covers-cases","faq":[{"question":"What are the different types of Realme 8i cover?","answer":"\u003Cp\u003EOn Bewakoof, you will find a plethora of impact-resistant, durable, and quirky mobile covers for Realme 8i. Some of the hot-selling designs are Moody Mickey, Aastik Nastik Sarcastic, Batman Vengeance, and many more. Find the mobile cover that reflects your style and personality! You can also find various Official prints from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, DC, Disney, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fminions-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMinions\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Garfield & more.\u003C\u002Fp\u003E"},{"question":"How much do Realme 8i cases cost?","answer":"\u003Cp\u003EYou will find Realme 8i mobile covers at upto 60% OFF on Bewakoof. The starting price of the covers is as low as Rs. 249 and comes with a variety of designs.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Realme 8i back cover?","answer":"\u003Cp\u003EA Realme 8i back cover not only protects your phone from scratches and bumps, but it also helps to keep it looking new. In addition, a back cover can also provide grip, making it less likely that you'll drop your phone.\u003C\u002Fp\u003E"},{"question":"Where can I buy Realme 8i mobile covers online?","answer":"\u003Cp\u003EBewakoof offers a large variety of styles in Realme 8i mobile covers online. You will find printed back covers, typography covers, motivational quotes, and original and official designs too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou will find Realme 8i mobile covers at upto 60% OFF on Bewakoof. Bewakoof provides whopping discounts on mobile covers and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe members\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E can also buy mobile covers at the lowest prices.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, since consumer satisfaction is our top-most priority we do offer product exchange & return. If customers are unhappy with their purchase, they can opt for exchange & return within 15-days. Our seamless service will ensure you have a hassle-free experience.\u003C\u002Fp\u003E"}]},{"url":"rakshabandhan-collection","faq":[{"question":"What are some good gift ideas for Raksha Bandhan?","answer":"There are many different gift ideas that can be appropriate for Raksha Bandhan. Some popular gifts include traditional Indian sweets, clothing, jewelry, ornaments, and other household items."},{"question":"What should I avoid giving as a Raksha Bandhan gift?","answer":"It is generally considered inappropriate to give anything that could be considered expensive or lavish as a Raksha Bandhan gift. Additionally, it is important to avoid giving any gifts that might be seen as offensive or insensitive."},{"question":"What if I am not sure what to give as a Raksha Bandhan gift?","answer":"If you are unsure of what would be an appropriate gift, it is often best to ask the person you will be giving the gift to for their suggestions. Additionally, there are many websites and books that offer advice on choosing the perfect Raksha Bandhan gift."},{"question":"Where can I get the best Raksha Bandhan gift deals?","answer":"\u003Cp\u003EOne of the best places to find Raksha Bandhan gift deals is on \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E. They have a good selection of gifts and offer discounts on some of their products. Check out their Rakshabandhan collection now.\u003C\u002Fp\u003E"}]},{"url":"undrdawg-by-bewakoof","faq":[{"question":"Which is better, boxer briefs or trunks?","answer":"\u003Cp\u003EBoxer briefs offer more coverage than trunks, so they may be a good choice if you're looking for something that provides more support. On the other hand, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-trunks'\u003E\u003Cstrong\u003Etrunks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E are a bit more lightweight and breathable, so they may be a better choice if you're looking for something more comfortable in warmer weather.\u003C\u002Fp\u003E"},{"question":"What is the best underwear for men?","answer":"\u003Cp\u003EBriefs, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-vests'\u003E\u003Cstrong\u003Evests\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-boxer-shorts'\u003E\u003Cstrong\u003Eshorts\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhipster-trunk'\u003E\u003Cstrong\u003Ehipster trunks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E are popular choices for underwear for men. You can select from an array of options from UNDRDAWG to match your needs.\u003C\u002Fp\u003E"},{"question":"What to wear over boxers?","answer":"\u003Cp\u003EIf you're like most guys, you probably just reach for the first pair of shorts or sweats when it's time to get dressed. But what you may not realize is that what you wear over your boxers can have a big impact on your comfort level throughout the day. Boxer briefs are always a good option, but if you prefer something shorter, that's fine too.\u003C\u002Fp\u003E"},{"question":"How to know the underwear is not of the right size?","answer":"\u003Cp\u003EIf your underwear is constantly riding up or slipping down, it's probably not the right size. If it feels constricting or uncomfortable in any way, it's also likely that you need a different size. Another way to tell if your underwear is the wrong size is to pay attention to the waistband. If the waistband is constantly digging into your skin or causing irritation, it's probably too tight. Paying attention to these signs will help you ensure that you're always wearing comfortable, well-fitting underwear.\u003C\u002Fp\u003E"},{"question":"What all brands do Bewakoof offer for Men's Underwear?","answer":"\u003Cp\u003ESmugglerz, Xyxx, Almo, Rad.Mad.Bad, Joven, Urban Hug., UNDRDAWG By Bewakoof, Tailor & Circus, Bummer, and Cresmo are some of the underwear brands that you can find on \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for UNDRDAWG Collection?","answer":"\u003Cp\u003EUNDRDAWG by Bewakoof comes in quirky prints and is available at a starting price of Rs. 259. TriBe members can even avail of special discounts and early-bird bonuses at a yearly price of Rs. 199.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchange for UNDRDAWG?","answer":"\u003Cp\u003EBewakoof doesn’t provide returns and exchanges for UNDRDAWG for unsanitary and unhygienic purposes. Bewakoof prioritizes hygiene and that’s why it follows a strict policy on the non-exchange of underwear.\u003C\u002Fp\u003E"}]},{"url":"phone-gripper","faq":[{"question":"Is it good to invest in a phone gripper?","answer":"Yes, it's a good idea to invest in a phone gripper. Phone grippers are designed to make it easier to hold onto your phone and prevent it from slipping out of your hand. They come in a variety of designs, so you can find one that matches your style. And they're usually very durable, which means they'll last long with proper care. So if you're looking for a way to improve your smartphone experience, investing in a phone gripper is a great option."},{"question":"What are phone grippers?","answer":"Phone Grippers are a simple, affordable way to improve your grip on your phone and prevent it from slipping out of your hand. They work by attaching to the back of your phone and gripping onto your fingers, providing extra stability and security when you're using your phone."},{"question":"Do they work with all phones?","answer":"Phone Grippers will work with most smartphones, but please check the size compatibility before purchasing."},{"question":"How do I use them?","answer":"Simply attach the Phone Grippers to the back of your phone, then grip the grippers between your thumb and fingers. You'll find that it provides a more secure grip and prevents your phone from slipping out of your hand."},{"question":"How long do they last?","answer":"Phone Grippers are made from high-quality materials and should last for many years with proper care."},{"question":"Can I remove them when I'm not using them?","answer":"Yes, the Phone Grippers are designed to be removable and can be taken off your phone when you're not using them. Simply peel them off from the back of your phone and store them in a safe place until you need them again."},{"question":"Are they comfortable to use?","answer":"Yes, the Phone Grippers are made from soft, flexible material that is comfortable to grip. They will not add any bulk or weight to your phone, and you'll barely notice them when they're attached."},{"question":"Do they come in different colors?","answer":"Yes, the Phone Grippers are available in a variety of colors to match your personal style. Choose from black, white, pink, blue, and more."},{"question":"What if I have questions or need help with my purchase?","answer":"\u003Cp\u003EOur customer service team is always happy to help! Please contact us at \u003Ca data-fr-linked='true' href='mailto:care@bewakoof.com'\u003Ecare@bewakoof.com\u003C\u002Fa\u003E and we'll be happy to assist you.\u003C\u002Fp\u003E"},{"question":"What all accessories Bewakoof offers?","answer":"\u003Cp\u003EBewakoof offers a wide range of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cstrong\u003Emobile covers\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, phone grippers, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fbags'\u003E\u003Cstrong\u003Ebags\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmugs'\u003E\u003Cstrong\u003Emugs\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fnotebooks-and-planners'\u003E\u003Cstrong\u003Enotebooks & planners\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcaps'\u003E\u003Cstrong\u003Ecaps\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsocks'\u003E\u003Cstrong\u003Esocks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E & \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmasks'\u003E\u003Cstrong\u003Emasks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"}]},{"url":"mens-innerwear","faq":[{"question":"What is the best way to care for my men's innerwear?","answer":"The best way to care for your men's innerwear is by washing it in cold water and with a mild detergent. You should never bleach your innerwear, dry clean or iron it. Instead, line dry it. Lastly, dont forget to turn your underwear inside out while washing, to increase the longevity of the fabric."},{"question":"What is the difference between Innerwear and underwear?","answer":"\u003Cp\u003EThe best way to care for your men's innerwear is by washing it in cold water and with a mild detergent. You should never bleach your innerwear, dry clean or iron it. Instead, line dry it. Lastly, don’t forget to turn your underwear inside out while washing, to increase the longevity of the fabric.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. Innerwear is designed to emphasize your body type, whereas underwear is not.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. Innerwear typically offers a number of standard benefits, such as looking slimmer and feeling more confident, that underwear does not offer\u003C\u002Fp\u003E"},{"question":"How is underwear different from swimwear?","answer":"\u003Cp\u003EUnderwear is typically made from a thicker, more absorbent fabric than swimwear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. Underwear is designed to provide coverage and support, whereas swimwear is not.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. Swimwear is typically made from a lighter, more breathable fabric than underwear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E3. Swimwear is designed to be worn in the water, unlike underwear. \u003C\u002Fp\u003E"},{"question":"Where can I buy the best men's innerwear online?","answer":"\u003Cp\u003EYou can buy some of the best men’s innerwear online at \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E. Our vast range offers a pool of different styles and designs, from which you are sure to find something that suits your needs.\u003C\u002Fp\u003E"},{"question":"What innerwear brands does Bewakoof offer?","answer":"Bewakoof offers a range of different innerwear brands, including UNDRDAWG by Bewakoof, Urban Hug, Joven, Bummer etc. Each brand offers quirky, luxury & sporty styles and designs to meet every need."},{"question":"What all brands do Bewakoof offer for Men's Underwear?","answer":"\u003Cp\u003EAt Bewakoof you can shop from several brands that offer top-notch innerwears for men. For instance, Urban Scottish, Almo, Mad Over Print, Snitch, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fundrdawg-by-bewakoof'\u003E\u003Cstrong\u003EUNDRDAWG\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E by Bewakoof etc. You get to shop from a range of quirky and fun \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-vests'\u003E\u003Cstrong\u003Evests\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, trunks, trunks, briefs etc.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for innerwear?","answer":"\u003Cp\u003EBewakoof provides a range of offers and deals on innerwear. Customers can enjoy discounts of up to 50% on various products. Additionally, Bewakoof also offers free shipping on all orders above Rs. 499. If you subscribe to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E you can get an additional discount on the base price & shipping.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on innerwear?","answer":"No, Bewakoof does provide returns and exchanges on innerwear in order to ensure hygiene for the customers."}]},{"url":"iphone-13-pro-back-covers-cases","faq":[{"question":"How much do iPhone 13 Pro cases cost?","answer":"The cost may vary according to the brand, but if you want covers with good quality, exciting designs and affordable pricing, Bewakoof.com is a clear choice."},{"question":"Where should I buy iPhone 13 pro covers?","answer":"Hunt no more as bewakoof.com is the best option for you to buy iPhone 13 Pro covers and many more models and brands. Your phone undergoes numerous scratches and uncontrollable falls, which is why investing in an excellent mobile cover is beneficial. Bewakoof is perfect for you to shop for expensive and robust covers that grab all the attention."},{"question":"What are the advantages of using the iPhone 13 Pro back cover?","answer":"iPhone 13 Pro is quite expensive and it would be a huge loss for the owner if any kind of damage happens to it. To be assured that nothing much will happen to your phone it is strictly advised to use the back cover as it prevents all the false drops, scratches and unwanted accidents. If you are looking to buy a phone cover for your iPhone 13 Pro, do check out the collection of Bewakoof.com as we have everything you will ever desire in the range of phone covers."},{"question":"What are all the deals Bewakoof has for Mobile covers?","answer":"Bewakoof has numerous ongoing deals all the time. We offer discounts and cash-back offers to new and existing customers as we believe in spreading love and happiness."},{"question":"Do Bewakoof's Covers have a Return or Exchange policy?","answer":"Yes. Bewakoof believes in ensuring happiness and feels satisfied with a smile on its customer's faces, which is why we provide 15 days of easy return, refunds and exchange policy on mobile covers. So, shop online with us without any worry, and we at Bewakoof will always be there with you at each step of your shopping experience to help you and provide you with nothing but the best."}]},{"url":"iphone-14-back-covers-cases","faq":[{"question":"What are the different types of iPhone14 covers?","answer":"At Bewakoof, we take style and quality quite seriously. Good for you, you can find a horde of options for your iPhone14 mobile cover. We have a range of premium glass mobile cases in a variety of designs that are sure to match your personality."},{"question":"How much do iPhone 14 cases cost?","answer":"If you have been around for a while, you would know that our prices are quite decent and fit within your budget. Our iPhone14 Premium glass cases are priced at just Rs.529. Whichever you print or design you wish to go for, you can buy it at the same price."},{"question":"What are the benefits of using an iPhone 14 back cover?","answer":"An iPhone 14 back cover protects your device from accidental damage and scratches that might occur in the course of its usage. Apart from that, it also provides a premium finish to your mobile cover with a glossy look and vivid prints that represent your personality."},{"question":"Where can I buy iPhone 14 mobile covers online?","answer":"Bewakoof has a range of iPhone14 covers that are durable, high quality, affordable and stylish. You can never go wrong with our mobile covers. While you are exploring and getting to know this new iPhone in the market, we take care of its protection and style quotient."},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"Bewakoof has a lot of sales & other offers on mobile covers. Some of the most popular sale events we host are The OOF Sale, The Happy Weekend Sale & more. You can avail of whopping discounts and offers during these events. Moreover, you can also become a member of our TriBe to avail exclusive discounts and offers all year long."},{"question":"Does Bewakoof provide return & exchange on mobile covers?","answer":"Yes, we do have a 15-day return and exchange policy on our mobile covers. This ensures you are making a smart decision while buying a cover for your iPhone14."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"When you visit the mobile case collection at Bewakoof, you will come across a plethora of official merchandise like Marvel, Disney, DC, FRIENDS, Looney Tunes & so many more."}]},{"url":"oversized-t-shirts","faq":[{"question":"What are oversized t-shirts?","answer":"Oversized t-shirts are t-shirts that are bigger than your typical size. They're comfortable and versatile, and they can be dressed up or down for any occasion."},{"question":"Where can I find oversized t-shirts?","answer":"\u003Cp\u003E\u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com' title='Best Online Shopping Site'\u003EBewakoof.com\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E is the best online shopping site to find oversized t-shirts for men and womens.\u003C\u002Fp\u003E"},{"question":"Are oversized t-shirts comfortable?","answer":"Yes! Oversized t-shirts are extremely comfortable and perfect for any occasion."},{"question":"Can I dress up an oversized tee?","answer":"\u003Cp\u003EYes! You can dress up an oversized tee by pairing it with a skirt or \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-pants' title='men trousers'\u003Etrousers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E. You can also tuck it into jeans or shorts for a more relaxed look.\u003C\u002Fp\u003E"},{"question":"How do I know if its an oversized t-shirt?","answer":"An oversized tee is meant to be slightly larger than your usual size. Look for t-shirts that are labeled 'oversized' or 'loose fit'. Avoid t-shirts that are excessively baggy, as they may be too big."}]},{"url":"clogs","faq":[{"question":"What should I look for when shopping for clogs?","answer":"With the increasing popularity of clogs, it is important to know what you should look for when shopping for a pair of clogs. Clogs are not just for the feet anymore; they are also used as an accessory and fashion statement. With this in mind, it is important to know what you should look for when shopping for a pair of clogs. When buying clogs, there are many factors that come into play that can make or break your purchase. The most important thing to consider is the type of foot they are made with and how well they fit your foot. Other factors include durability and comfortability."},{"question":"Why to shop clogs from Bewakoof.com?","answer":"Bewakoof.com is a leading online store for clogs, offering stylish, comfortable and affordable clog shoes. With an extensive range of styles and sizes available, you are sure to find the perfect pair for your feet!"},{"question":"Can you get clogs in different colors?","answer":"Clogs are the most versatile footwear that you can wear. They are great for outdoor activities and they can be worn with any outfit. Clogs come in a wide variety of colors and patterns. Here are some of the most popular colors: Black Clogs, Brown, Tan, Gray, Navy blue, White Clogs, Yellow Clogs"}]},{"url":"iphone-13-pro-max-back-covers-cases","faq":[{"question":"Where should I buy a mobile cover for iPhone 13 pro max?","answer":"Your phone undergoes troubled throws, scratches, dents etc., which may break your screen too. Bewakoof is the one-stop destination to buy robust, inexpensive and uncommon mobile covers that grab your pals' attention and assure ideal safety for your phone."},{"question":"What are the different types of iPhone 13 pro max covers?","answer":"At Bewakoof, there are numerous types of covers like Avenger, Spiderman, Mickey Mouse, Minnie Mouse, Plain to textured covers. Also in sports icons, floral prints, modest, plain, with messages and quotes etc. Explore our whole range to get your precise choice."},{"question":"How much do iPhone 13 pro max cases cost?","answer":"The cost may vary from brand to brand, but if you are looking for the best quality, affordable pricing with amazing designs,Bewakoof.com is a fantastic choice. The cover range in iPhone 13 pro max starts from Rs 249 and goes up to Rs 299."},{"question":"What are the benefits of using an iPhone 13 pro max cover?","answer":"Many uncontrollable accidents happen in day-to-day life that can harm your mobile severely. The back cover for an expensive phone like iPhone 13 pro max, assures there is not much damage caused and safeguards your cell precisely."},{"question":"What offers and deals does Bewakoof provide for Mobile Covers?","answer":"Bewakoof has numerous ongoing deals at all times. We offer discount and cash-back offers to our new and existing customers as we highly believe in spreading love."},{"question":"Does Bewakoof have a return and exchange policy on covers? ","answer":"Yes, Bewakoof believes in ensuring happiness and a good customer relationship. Hence, we provide 15 days easy return, refunds and exchange policy on mobile covers and all distinct categories."},{"question":"What merchandise collection do we have in the mobile case collection? ","answer":"Bewakoofs mobile covers exhibition is adaptable and arrives with many alternatives for choosing the suitable mate for your phone. Apart from amusing affiliations with Marvel, Disney and Looney Tunes, Bewakoof also deals with simple covers to pacify your aesthetics and quirky ideas."}]},{"url":"dc-merchandise","faq":[{"question":"Why should you buy DC T-shirts?","answer":"1. A superb garment that can be worn anytime, anywhere. 2. Comfortable and versatile. 3. Rare size problems, as we generally have a couple of them. 4. Affordable range of DC T-shirts available at Bewakoof. 5. Easy to wash and maintain."},{"question":"Why Choose Bewakoof's DC T-Shirts?","answer":"stablished in 2012, Bewakoof is one of the prominent lifestyle fashion brands in India that is renowned for its offbeat stuff. It is an uber-cool online brand that rolls out a wide range of T-shirts, Joggers, Sliders, Polo T-shirts,Henley T-shirts, and much other stuff for both Men & Women. So this way, you get to become a fashion enthusiast without much ado.Shopping with Bewakoof is always fun and hassle-free. Our creative team makes every effort to incorporate the latest trends and pop culture into its products.Bewakoof allows you to make payments through various online payment modes. If you are looking for a risk-free payment option, you can go for cash on delivery. The best part about Bewakoof is that we have a FREE shipping policy for our customers. We also offerTribe Membershipto our customers, wherein, they never have to pay full price for any product and much more. Our website is user-friendly and offers a smooth shopping experience to the customers. High-resolution pictures will give you a clear idea about the looks and finish of the products. Still, if you feel your order lacks something, you are free to return the products or get a refund within 15 days., etc."}]},{"url":"men-sliders","faq":[{"question":"What types of sliders for men are available at Bewakoof.com?","answer":"\u003Cp\u003EWe offer a wide variety of men's sliders, including black sliders, white sliders, blue sliders, striped sliders, and printed sliders in numerous designs and sizes.\u003C\u002Fp\u003E"},{"question":"Can sliders be worn for outdoor activities?","answer":"\u003Cp\u003EYes, sliders are suitable for light outdoor activities and are perfect for casual outings like beach trips or a day out in the city.\u003C\u002Fp\u003E"},{"question":"Are the sliders available in different sizes?","answer":"\u003Cp\u003EAbsolutely! Our sliders for men come in various sizes to ensure a comfortable fit for all foot dimensions.\u003C\u002Fp\u003E"},{"question":"How can I find the right size of sliders for me on Bewakoof.com?","answer":"\u003Cp\u003EYou can refer to our detailed size guide available on each product page to find your perfect fit.\u003C\u002Fp\u003E"},{"question":"What makes Bewakoof.com a good place to buy sliders for men online?","answer":"\u003Cp\u003EBewakoof.com offers a seamless shopping experience with a wide range of high-quality products at affordable prices, backed by excellent customer service.\u003C\u002Fp\u003E"},{"question":"How do I care for my sliders to ensure they last long?","answer":"\u003Cp\u003ETo maintain the quality of your sliders, it's important to clean them regularly with a soft cloth or brush and mild soap.\u003C\u002Fp\u003E"},{"question":"Can I return or exchange the sliders if they don't fit well?","answer":"\u003Cp\u003EYes, Bewakoof.com has a return and exchange policy in place. Please check our return policy for detailed information on how to process a return or exchange.\u003C\u002Fp\u003E"},{"question":"Are there any special offers for purchasing men's sliders online on Bewakoof.com?","answer":"\u003Cp\u003EWe frequently run special promotions and discounts. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals.\u003C\u002Fp\u003E"},{"question":"How long does delivery take after placing an order for sliders on Bewakoof?","answer":"\u003Cp\u003EDelivery times can vary based on your location. Once you place an order, you'll receive an estimated delivery date. We strive to ensure timely delivery for all our customers.\u003C\u002Fp\u003E"}]},{"url":"men-henley-t-shirts","faq":[{"question":"What are Men's Henley T-shirts?","answer":"\u003Cp\u003EHenley t-shirts for Men are collarless, pullover-style shirts with a round neckline and a short button-down placket. Henley t-shirt can be short or long-sleeved and known for its versatility and comfort, typically made from cotton. Henleys are a casual wardrobe staple that can be easily layered or worn independently.\u003C\u002Fp\u003E"},{"question":"How to Care for Bewakoof's Men Henley Tees?","answer":"\u003Cp\u003ETo care for our Henley Tees for men, wash them in cold water with a machine wash. Avoid using bleach or chlorine-based detergents. It's also recommended to avoid harsh chemicals to maintain the colour and quality of the fabric.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof allow discounts on Henley t-shirts?","answer":"\u003Cp\u003EYes, Bewakoof does offer discounts on Henley t-shirts for gents. For instance, customers can get an instant discount on their first purchase above a certain amount by using a coupon code. Additional cashback offers may also be available on prepaid orders.\u003C\u002Fp\u003E"},{"question":"How to buy henley t shirts for men online from Bewakoof?","answer":"\u003Cp\u003ETo buy men's Henley t-shirts from Bewakoof, visit our website, search for henley t-shirts, and click on the Henley T-shirts category. Please browse through the available options, select your preferred style, size, and colour, and add it to your cart. Once you're ready to purchase, proceed to checkout, provide your shipping details, choose a payment method, and complete the transaction.\u003C\u002Fp\u003E"}]},{"url":"men-t-shirts","faq":[{"question":"What types of t-shirts for men can I find at Bewakoof.com?","answer":"Our T-shirt collection includes a wide range of t-shirts, including graphic tees, plain t-shirts, printed t-shirts, and more, catering to various style preferences."},{"question":"How do I choose the right size t-shirt for men when shopping online?","answer":"To ensure a perfect fit, please refer to our size chart available on each product page. Measure yourself according to the instructions provided, and select the size that best fits your measurements."},{"question":"How can I find the best-selling men's t shirts online at Bewakoof?","answer":"Our best-selling t-shirts for men are often highlighted on our website, and you can also check customer reviews and ratings to see which products are the most popular."},{"question":"How should I care for my t-shirts to ensure they last longer?","answer":"To ensure your t-shirts last longer, wash them in cold water with similar colors and turn them inside out to protect any prints. Avoid bleach and fabric softeners, and opt for air drying instead of high heat in the dryer. Iron on a low setting if necessary, and always please follow the specific care instructions on the t-shirt's label."},{"question":"Can I find both casual and formal tshirts for men online at Bewakoof.com?","answer":"Yes, our collection includes both casual and formal styles. Our polos are perfect for a smart-casual look, while our plain and solid t-shirts can be dressed up or down for various occasions."},{"question":"Does Bewakoof.com offer any discounts on men's tshirts?","answer":"Yes, We regularly offer promotions and discounts, so be sure to visit our website often or subscribe to our newsletter to keep informed about our most recent offers."}]},{"url":"serum-and-essence","faq":[{"question":"How to use face serums?","answer":"Well, after cleaning your face and toning, apply a thin layer of serum on your face and gently massage it for the skin to absorb it properly. While serum starts functioning on the skin, wait for 60 seconds and then apply moisturiser, and don't forget to use SPF if you are heading out as it will protect your skin from sun rays."},{"question":"What is an essence?","answer":"It's a lightweight hydrating liquid used to prep the skin to absorb moisturiser and increase the effectiveness of products better."},{"question":"What is Face Serum?","answer":"Face serum is a concentrated active ingredient that targets specific skin concerns, and powerful ingredients help to resolve the skin issues you are having. Different types of face serums help with different issues, thus while choosing, consider purchasing according to your skin issues."}]},{"url":"custom-tshirts","faq":[{"question":"Where can I order a custom t-shirt?","answer":"If you are looking for a personalised T-shirt online, you don't have to search anymore because Bewakoof has fulfilled all your desires and wishes. With a simple custom t-shirt-creating procedure, a seamless designing tool, funky hues and convenient purchase, Bewakoof is the best platform for your needs."},{"question":"Where to buy custom T-shirt?","answer":"Are you on a hunt for customised T-shirts online? You don't have to worry anymore as bewakoof.com has an exclusive collection of personalised T-shirts, where you can create your designs with beautiful colours. You can even choose to post a picture to display on the T-shirt or write a text, and then Bewakoof will let the magic happen. You will receive the exact design that you have created on its website. With simple procedures and utter perfection, there is no better side than Bewakoof for you to purchase the personalised T-shirt."},{"question":"How much does a custom t-shirt cost?","answer":"The pricing differs from brand to brand but if you are looking for something super affordable, elegant and exciting Bewakoofs Custom T-shirt is precise choice for you. It starts from Rs 499 and goes up to Rs 700."}]},{"url":"shampoo-and-conditioner","faq":[{"question":"Can I wash my hair every day?","answer":"Washing your hair every day may leave your scalp in poor condition. It may cause numerous hair problems hence, we suggest you wash your hair twice or thrice a week."},{"question":"Does shampoo cause hair fall?","answer":"Our exports at bewakoof.com suggest that cleaning your scalp and hair may benefit with the reduction of hair fall. Just make sure that you use proper Shampoo for your hair type."},{"question":"What is a conditioner?","answer":"It is a hair product that improves the feel, appearance and manageability of your hair. The primary purpose of the conditioner is to reduce friction between strands of your hair and allow you to smooth combing."}]},{"url":"bath-and-spa","faq":[{"question":"Can we use body wash on the face?","answer":"Body and facial products have different ingredients as facial skin is more sensitive than the body. It's better not to use body wash on your face. Instead, you can opt for our face washes and cleansers which come with natural substances, different varieties for different skin issues and are 100% effective."},{"question":"How to use body wash?","answer":"a) wet your skin in the shower, b) pour some body wash on a loofah or a washcloth, work up the lather and apply it all over your body c) rinse it off and pat dry with a gentle towel. Avoid rubbing as it takes away all the moisture."}]},{"url":"full-sleeve-shirts","faq":[{"question":"Where can you shop for the best full sleeve shirts?","answer":"Bewakoof is the perfect platform for you with numerous styles, patterns, colours etc., to choose from."},{"question":"How to wear a full-sleeve shirt?","answer":"You can style in many ways wearing a full sleeve shirt be it casual or for a party."}]},{"url":"oneplus-nord-ce-2-5g-back-covers-cases","faq":[{"question":"What are the Oneplus Nord CE 2 5G cases and back covers made of?","answer":"The Oneplus Nord CE 2 5G cases and back covers are made of hard plastic material, glass, or silicone."},{"question":"How do I install the Oneplus Nord CE 2 5G case or back cover on my phone?","answer":"The installation process is simple and does not require any tools. First, remove the old case or back cover from your phone. Then, align the new case or back cover with the phone and press firmly until it snaps into place."},{"question":"Will the Oneplus Nord CE 2 5G case or back cover protect my phone from drops and scratches?","answer":"\u003Cp\u003EYes, Oneplus Nord CE 2 5G case and back cover provide protection against drops and scratches. You can even look for \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper'\u003Ephone grippers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E for better protection.\u003C\u002Fp\u003E"},{"question":"What is the return policy for the Oneplus Nord CE 2 5G case or back cover at Bewakoof.com?","answer":"\u003Cp\u003E\u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof.com\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E offers a 15-day return policy for all Oneplus Nord CE 2 5G cases and back covers.\u003C\u002Fp\u003E"},{"question":"What are all designs Bewakoof has for Oneplus Nord CE 2 5G mobile covers?","answer":"Bewakoof.com has various different designs in Oneplus Nord CE 2 5G mobile covers from floral to geometrical we have covered all for you."}]},{"url":"printed-shirts","faq":[{"question":"How to wear printed shirts?","answer":"You can choose different styles and patterns according to the place you wish to go. For example, if you are going for a casual meet, you can wear a printed shirt on a plain T-shirt."},{"question":"Where can you shop for the best-printed shirts?","answer":"Bewakoof is the perfect website for you with numerous styles, patterns, colors etc., to choose from."}]},{"url":"women-dresses","faq":[{"question":"What are the different womens dress brands on Bewakoof?","answer":"The trend of womens dresses is getting more and more diverse and innovative than ever. Bewakoof is an online fashion store for women that has a huge variety of ladies dresses. We offer dresses by various brands like Campus Sutra, Faballey, Clovia, Miss Chase, Disney, High Star and Ahalyaa, Marvel, Oxolloxo, and other popular brands."},{"question":"What is the price range of Dresses offered by Bewakoof.com?","answer":"Bewakoof.com sells dresses starting at just Rs. 299! We offer a variety of budget-friendly designer dress styles to suit all tastes and are perfect for every occasion."},{"question":"What color dress is best for women?","answer":"With so many color options available, it can be hard to pick just one. In short, the best dress color for women depends on the event. For example, if the event is formal or business-related, then a dark or navy blue dress would be best. If it's a party or wedding reception, then a bright red dress, pink dress, or black dress would be perfect."}]},{"url":"mobile-covers-india","faq":[{"question":"Is a back cover necessary for the phone?","answer":"Yes, the back covers are essential for the phones as it protects them from accidents; it will undoubtedly save the smartphone. Apart from safeguarding the phone, the excellent appearances of covers also make it much more impressive, and you can opt for a different look according to the dress code or daily basis."},{"question":"Best Site to buy Mobile Covers Online?","answer":"Bewakoof is the precise place for everyone to buy phone covers online as it has mobile covers of different models and has them in various shades, colours, designs, patterns, etc at affordable rates. This makes it more attractive for buyers. Explore now."}]},{"url":"samsung-galaxy-f62-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f41-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f12-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a30-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a52-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a50-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m21-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m51-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m31s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a51-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m31-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m30s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-j8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-j7-prime-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-9r-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 9R covers?","answer":"\u003Cp\u003EOn Bewakoof.com, one can find a plethora of options for OnePlus 9R back covers. From sturdy plastic covers to gorilla glass covers, you will find the best ones to match your aesthetic and personality.\u003C\u002Fp\u003E"},{"question":"How much do the OnePlus 9R cases cost?","answer":"\u003Cp\u003EYou will find the best deals on Bewakoof.com where the OnePlus 9R covers are between the price range of Rs. 199-499.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a OnePlus 9R back cover?","answer":"\u003Cp\u003EOnePlus 9R back covers are sleek and fashionable, protecting them from accidents. They also give your device an added personal touch with their stylish design!\u003C\u002Fp\u003E"},{"question":"Where can I buy the OnePlus 9R mobile covers online?","answer":"\u003Cp\u003EYou can find the best OnePlus 9R mobile covers online on Bewakoof.com. With a huge collection, Bewakoof has a wide variety of designs to satisfy K-pop, Friends, and Marvel fans.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou can score some great deals at Bewakoof. With whopping discounts like 50-80% OFF and frequent price drops on mobile cases, the website is worth checking out for your next purchase!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof aims for the satisfaction of every customer and therefore provides 15-day returns and exchanges on mobile covers.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is the perfect place to find a phone cover that suits your personality. With official designs like Marvel, Disney DC Comics, and Looney Tunes among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"iphone-13-mini-back-covers-cases","faq":[{"question":"What are the different colors available for the iPhone 13 mini cases?","answer":"The iPhone 13 mini cases is available in a range of different colors, including black, white, blue, and red."},{"question":"What is the material used to make the iphone 13 mini back covers?","answer":"\u003Cp\u003EThe iphone 13 mini back cover is made from a hard plastic material that provides protection for your device. There are also other types of \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fapple-cases-back-covers' title='Buy Apple Mobile Covers Online'\u003EiPhone Mobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E like glass covers, silicon covers etc.\u003C\u002Fp\u003E"},{"question":"Is the iPhone 13 mini phone cover easy to install?","answer":"Yes, the back cover is easy to install and can be done in minutes."},{"question":"Why would I want an iPhone 13 mini covers?","answer":"There are a few reasons of having iPhone 13 mini covers . Some people like to have a protective case on their phone, while others simply prefer the look of a colorful or patterned back cover."},{"question":"Do Bewakoof's covers have a return or exchange policy?","answer":"Yes! We stay true to our promise of providing happy customers, so you'll love that we give you 15 days of easy returns, refunds, or exchanges. So, shop online with us without any worries, and we at Bewakoof will always be there to help you and provide you with the best."},{"question":"Where should I get iPhone 13 mini covers online?","answer":"\u003Cp\u003EBewakoof.com is the best online shopping website to get iPhone 13 mini covers, we have iphone mobile covers, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper' title='Buy Phone Grippers Online'\u003EPhone Grippers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E available in various prints and designs at affordable rates.\u003C\u002Fp\u003E"}]},{"url":"oneplus-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-8t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-ce-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-2-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord 2 covers?","answer":"The different types of OnePlus Nord 2 covers are glass covers & hard plastic covers, of which both provide optimal protection from bumps & accidental falls."},{"question":"How much do OnePlus Nord 2 Cases cost?","answer":"At Bewakoof.com you can be assured that top-notch quality will be delivered at a budgeted price range. Our covers range from Rs. 199 to Rs. 529."},{"question":"What are the benefits of using a OnePlus Nord 2 back cover?","answer":"A sturdy OnePlus Nord 2 back cover protects your phone from scratches, impact from accidental falls & bumps, dust, dirt & more. Hence, it is important to cover your phone with a robust & quirky phone case."},{"question":"Where can I buy OnePlus Nord 2 mobile covers online?","answer":"\u003Cp\u003EFrom a pool of websites, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E offers the best covers at a reasonable price. Our covers come in a range of designs & sturdy exteriors to fulfil all your needs.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof.com has various deals & discounts going on at most times. You can be a part of our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E & get a yearly membership to get additional discounts on the mobile covers.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, we value our consumers highly & if they are unhappy with their purchase, Bewakoof.com offers a seamless exchange policy of 15 days. In this period you can either issue a refund or exchange the product for an item of your choice."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Our Official Merch store has various collaborations including Disney, DC, Marvel, Minions, Looney Tunes, Tom & Jerry, Garfield, FRIENDS, Star Wars & more. You can choose from a range of funky designs from the above selection to give your phone a quirky appeal."}]},{"url":"oneplus-7t-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-7t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-6t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-6-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y73-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v11-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"girlish-phone-covers","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof is the best site to buy fancy mobile covers for girls. We have a wide range of covers that are available in different colors, styles and patterns. The prices are also very affordable. We are designed to provide excellent protection against scratches and dust, while keeping your phone light as a feather."},{"question":"Where can I buy cute mobile cover for girls?","answer":"The latest craze for girls are cute mobile covers. They come in a variety of colors and textures and are sure to make your phone stand out in the crowd. Bewakoof is the best online shopping site to buy girlish phone covers online in India."},{"question":"Does Bewakoof sell phone pouch for girls?","answer":"We currently do not sell phone pouches, but you can check for our girly mobile covers and \u003Cu\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper'\u003Ephone grippers\u003C\u002Fa\u003E\u003C\u002Fu\u003E available in different designs at an affordable price."},{"question":"What are the best features to look for in a phone case?","answer":"If you are looking for the best features in a phone case, there are many things to consider. One of the most important features is durability. You want the case to be able to prevent your phone from breaking or cracking when it falls or if something hits it. Another important feature is that the case should fit snugly around your phone so that it doesnt fall out of the case easily and get scratches and dents on it."},{"question":"Is it better to buy a phone case online or in store?","answer":"Nowadays, people are buying more and more products online. This is because its often cheaper to buy online and there are many different brands to choose from. However, there are some things that you should know before you buy a phone case online. First of all, the price. Its usually cheaper to buy a phone case on the internet than in store. Secondly, double check the shipping time when you order something online. make sure you have selected the correct device model ."},{"question":"Which one is better, a hard or soft phone case?","answer":"The main difference between the two types of cases is the level of protection they provide. A hard case offers more protection than a soft one. A hard phone case is made from a hard, durable material like plastic or metal. It is usually more expensive than a soft case, but it provides better protection for your phone because it can absorb impact from drops and bumps. Soft cases are made from materials like silicone or rubber and they are usually cheaper than hard cases. They offer less protection than a hard case because they cant absorb as much impact as one, but they still provide some level of protection against drops and bumps."}]},{"url":"vivo-x60-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y91-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y12-s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v-20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v19-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v5-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-u10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-s1-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-power-back-cover-cases","faq":[{"question":"What are the different types of Redmi 9 power covers?","answer":"\u003Cp\u003EWe have a vast collection of Xiaomi Redmi 9 Power covers with every kind of design that you can think of. Our range includes Plain Covers & Printed Covers with illustrations of Spiderman, Avengers, Quotes, Animals, Doodles, Sports Idols, Floral accents, 3D layouts and more.\u003C\u002Fp\u003E"},{"question":"How much do Redmi 9 Power cases cost?","answer":"The cost may fluctuate according to the type & design. Our price range starts from Rs. 199 and goes up to Rs. 349. Bewakoof.com is a striking choice if you are looking for good quality, attractive designs and reasonable pricing."},{"question":"What are the benefits of using the Xiaomi Redmi 9 power back cover?","answer":"\u003Cp\u003EOut of the numerous benefits of using the Xiaomi Redmi 9 Power phone case, the most prominent ones are listed below -\u003Cbr\u003E\u003Col\u003E\u003Cli\u003ESafeguards your phone from scratches, drops & regular bumps.\u003C\u002Fli\u003E\u003Cli\u003EOffers enhanced accessibility with accurate cutouts are soft buttons.\u003C\u002Fli\u003E\u003Cli\u003EAdds personality to the phone & your overall look with its distinctive designs.\u003C\u002Fli\u003E\u003C\u002Fol\u003E\u003C\u002Fp\u003E"},{"question":"Where can I buy Xiaomi Redmi 9 Power cover online?","answer":"With appropriate pricing, high-grade quality and numerous other features, Bewakoof is an ideal choice for any consumer looking for a Xiaomi Redmi 9 Power Case. We have a vast collection with multiple options that you are sure to love."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof has various ongoing deals at all times. We offer discounts and a cash-back policy to new and existing customers as we believe in spreading happiness."},{"question":"Does Bewakoof provide returns or exchanges on mobile covers?","answer":"Yes. Bewakoof believes in providing utmost customer satisfaction which is why we have a 15-day easy return policy where you can either exchange the product or get a total refund. So, sit back & enjoy hassle-free shopping as we at Bewakoof will always be there to assist and cater to all your needs."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoof's phone cover collection is quirky and trendy. It includes a huge variety of options that you can choose from. Besides exciting collaborations with Marvel, Disney and Looney Tunes, we also have solid\u002Fvibrant covers to match your aesthetics."}]},{"url":"xiaomi-mi-10i-5g-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"mi-11-ultra-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-10t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-k-20-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-c3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-m3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-m2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-x3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-x2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-prime-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9a-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-9-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-power-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-7-s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-6-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-a3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-13-back-covers-cases","faq":[{"question":"What are the different types of iPhone 13 covers?","answer":"\u003Cp\u003EThere are a few different types of iPhone 13 covers. The most common type is the hard cover, which protects the back of your phone from scratches and other damage. Other types of covers are silicone covers, 3d covers, and glass covers.\u003C\u002Fp\u003E"},{"question":"What are the benefits of having an iPhone 13 cover?","answer":"\u003Cp\u003EThere are several benefits of having an iPhone 13 cover.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. It can protect your phone from scratches, bumps, and other damage. It can also make your phone look more stylish and professional.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. A mobile cover can help to improve your grip on the phone, which can be helpful if you tend to drop it often. There are many different types of covers available, including cases with built-in screen protectors and phone grippers, so you can find one that best suits your needs.\u003C\u002Fp\u003E"},{"question":"How do I know which cover is best for me?","answer":"\u003Cp\u003EYou should consider the type of phone you have, your lifestyle, and how you use your phone when choosing a cover. There are many different types of covers to choose from, including hard shells, silicone cases, flip covers, and wallet cases. You can also find covers with fun prints or patterns or ones that match your outfit or personality.\u003C\u002Fp\u003E"},{"question":"Which cover is most durable?","answer":"\u003Cp\u003EDurability is a key factor when it comes to choosing a phone cover. You want to choose a cover that will protect your phone from scratches, dents, and other damage. Some covers are also water resistant, which can come in handy if you happen to drop your phone in water. There are a variety of different covers available, so you should be able to find one that meets your needs.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 13 cases cost?","answer":"\u003Cp\u003EThe cost of iPhone 13 cases can vary depending on the type of case, the material it is made out of, the brand and even the color. At Bewakoof.com we have cases in the range of Rs.299 to Rs.529. Some more expensive cases may even be made from precious materials like gold or platinum. There are a wide variety of cases available on the market, so you're sure to find one that fits your needs and budget.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 13 mobile covers online?","answer":"\u003Cp\u003EYou can buy iPhone 13 mobile covers online at Bewakoof.com. There are a variety of prints and designs to choose from.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof Provide Returns & Exchange On Mobile Covers?","answer":"\u003Cp\u003EYes, Bewakoof offers returns and exchanges on mobile covers. In case you are not satisfied with your purchase, you can return or exchange the product within 15 days of receiving the order. However, the product should be unused and in its original condition.\u003C\u002Fp\u003E"}]},{"url":"iphone-12-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for iPhone 12 Back Covers & Cases?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a iphone 12 mobile cover from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky iphone 12 cover that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on iPhone 12 covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on iPhone 12 Cases and across other categories too."},{"question":"What merchandise collection do we have in the iPhone 12 Cover collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of iPhone 12 Back Cases?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-12-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-12-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-se-2020-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-xr-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-11-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-6-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-5-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-xt-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-3-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-20-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-30-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-30a-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-50i-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a54-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a31-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a15-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a5-2020-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-f15-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a53-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"infinix-hot-10s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"infinix-smart-5-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"moto-e40-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"\u002Fmobile-covers-india","faq":[{"question":"Is a back cover necessary for the phone?","answer":"Yes, the back covers are essential for the phones as it protects them from accidents; it will undoubtedly save the smartphone. Apart from safeguarding the phone, the excellent appearances of the covers also make it much more impressive, and you can opt for a different look according to the dress code or daily basis."},{"question":"Best Site to buy Mobile Covers Online?","answer":"Bewakoof is the precise place for everyone to buy phone covers online as it has mobile covers of different models and has them in various shades, colors, designs, patterns, etc at affordable rates. This makes it more attractive for buyers. Explore now."},{"question":"Does Bewakoof.com have mobile covers for both men & women?","answer":"Yes, Bewakoof.com has a wide selection of mobile covers for both men and women. Our designs range from bold prints to minimalist patterns, so you can be sure to find the perfect cover that matches your style needs! We also offer unique back covers with expressive designs and patterns that will add a touch of personality to your phone. So whatever your style, you will find the perfect mobile cover at Bewakoof.com!"},{"question":"Which kind of cover is best for mobile? Or Which material is best for a mobile cover?","answer":"For optimal protection of your phone, it is important to buy a cover made of hard plastic, PU material, or silicone. Phone cases made from these materials protect your device from damage caused by impact, regular wear and tear, accidental drops, and more."},{"question":"What kinds or types of back covers do we have?","answer":"Bewakoof has a wide range of designs and prints to choose from. You can select from funky prints in all categories including Anime, Aesthetic, Floral, Marble, Official Collaborations, and more."},{"question":"Which type of cover is better to protect our mobile phones?","answer":"Impact-resistant hard covers are ideal for all mobile phones. They protect your phone from accidental drops, bumps, dents, and scratches."},{"question":"What quality mobile covers does Bewakoof offer?","answer":"Bewakoof offers top-notch covers that resist damage without compromising on its looks. Our covers are made using premium plastic that keeps your phone safe and retains its looks for a prolonged period."},{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"Bewakoof has various ongoing offers at all times. We offer discount and cashback offers to both our new and existing customers because we believe in spreading happy, good vibes."},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges, and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes; Bewakoof believes in ensuring the happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds, and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof's mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Marvel merchandise India'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Disney Merchandise India'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='DC Comics Merchandise Online India'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, and \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-t-shirts' title='Looney Tunes Merchandise India'\u003ELooney Tunes\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the 'quirk' in you!\u003C\u002Fp\u003E"},{"question":"Which payment models are available at Bewakoof?","answer":"To enhance a smooth shopping experience, we bring to you multiple payment models like e-wallet, card, net banking, UPI, and even cash on delivery. Happy shopping!"},{"question":"What is the price range of mobile covers?","answer":"Bewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our printed mobile covers come within the price range of Rs. 249 to Rs. 299. Hurry up and give your phone a new quirky look!"}]},{"url":"oversized-t-shirts-for-women","faq":[{"question":"How to wear an oversized t-shirt for women?","answer":"\u003Cp\u003EOversized T-shirts for women can be worn most stylishly for any event. Suppose you are heading out for a Sunday Brunch, Movie plan, Day out or any other occasion, you can opt for an oversized T-shirt. Pair it with relaxed jeans, a hand purse, some jewellery and cool glares and boom, you are all ready. We have a number of styling tips on our blog that you can use to make your oversized t-shirt look great! Check them out here. \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fblog\u002Foversized-t-shirts-outfits-ideas\u002F'\u003EHow to Style Oversized T-Shirts for Women\u003C\u002Fa\u003E\u003C\u002Fp\u003E"},{"question":"How to choose the perfect oversized T-shirt for women?","answer":"\u003Cp\u003EWhenever you wish to purchase an Oversized T-shirt for yourself, inspect the quality, cost and size of the fabric first. Are you looking out to buy an Oversized T-shirt online? Well done, search no more as Bewakoof.com has got you all covered with its iconic fashion, trendy designs, budgeted range, and especially the quality of the fabric. Explore and pick your favorites, available in different size ranges starting from XS to 6XL. With an easy \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn policy\u003C\u002Fa\u003E and even timely delivery, you don't have to worry about anything.\u003C\u002Fp\u003E"},{"question":"What Sizes Are Available In Women's Oversized T-Shirts?","answer":"We offer a wide range of sizes in our oversized t-shirts for women, including XS, S, M, L, XL, XXL, 3XL, 4XL, 5XL, and more!"}]},{"url":"oversized-t-shirts-for-men","faq":[{"question":"What are oversized t-shirts?","answer":"An oversized T-shirt is a clothing item that has a boxy form and falls loosely over a pair of skinny or loose jeans. If you wish to buy an oversized t-shirt for yourself, check out our collection because it is exceptional!"},{"question":"WHERE CAN I BUY OVERSIZED T-SHIRTS ONLINE?","answer":"Bewakoof.comis the best place to buy oversized tshirts online because we offer a wide range of styles and sizes in our collection of oversized t-shirts for men. You can find everything from casual, to formal, to trendy, and more!"},{"question":"WHAT SIZES ARE AVAILABLE IN MEN'S OVERSIZED T-SHIRTS?","answer":"We offer a wide range of sizes in our oversized t-shirts for men, including XS, S, M, L, XL, XXL, 3XL, 4XL, 5XL, and more!"},{"question":"WHAT STYLE DO WE HAVE IN OVERSIZED T-SHIRTS?","answer":"We have many styles of oversized t-shirts available on our website, including\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-full-sleeve-t-shirts'\u003Elong sleeves\u003C\u002Fa\u003E,\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhalf-sleeve-t-shirts-for-men'\u003Eshort sleeves\u003C\u002Fa\u003E,\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fv-neck-t-shirts'\u003Ev-neck\u003C\u002Fa\u003E, crew neck, etc., from casual to formal to trendy! You can find anything you need at Bewakoof."}]},{"url":"oppo-a55-back-covers-cases","faq":[{"question":"What are the different types of Oppo A55 covers?","answer":"There are several types of Oppo A55 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A55 cases cost?","answer":"Generally, Oppo A55 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A55 back cover?","answer":"The benefits of using an Oppo A55 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A55 mobile covers online?","answer":"Get the best Oppo A55 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a12-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A12 covers?","answer":"There are several types of Samsung Galaxy A12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A12 cases cost?","answer":"Generally, Samsung Galaxy A12 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A12 back cover?","answer":"The benefits of using an Samsung Galaxy A12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A12 mobile covers online?","answer":"Get the best Samsung Galaxy A12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c11-back-covers-cases","faq":[{"question":"What are the different types of Realme C11 covers?","answer":"There are several types of Realme C11 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C11 cases cost?","answer":"Generally, Realme C11 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C11 back cover?","answer":"The benefits of using an Realme C11 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C11 mobile covers online?","answer":"Get the best Realme C11 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a5s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A5s covers?","answer":"There are several types of Oppo A5s covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A5s cases cost?","answer":"Generally, Oppo A5s cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A5s back cover?","answer":"The benefits of using an Oppo A5s back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A5s mobile covers online?","answer":"Get the best Oppo A5s mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a3s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A3S covers?","answer":"There are several types of Oppo A3S covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A3S cases cost?","answer":"Generally, Oppo A3S cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A3S back cover?","answer":"The benefits of using an Oppo A3S back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A3S mobile covers online?","answer":"Get the best Oppo A3S mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-f19-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo F19 Pro covers?","answer":"There are several types of Oppo F19 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo F19 Pro cases cost?","answer":"Generally, Oppo F19 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo F19 Pro back cover?","answer":"The benefits of using an Oppo F19 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo F19 Pro mobile covers online?","answer":"Get the best Oppo F19 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"iphone-8-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 8 Plus covers?","answer":"There are several types of iPhone 8 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do iPhone 8 Plus cases cost?","answer":"Generally, iPhone 8 Plus cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an iPhone 8 Plus back cover?","answer":"The benefits of using an iPhone 8 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy iPhone 8 Plus mobile covers online?","answer":"Get the best iPhone 8 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a32-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A32 covers?","answer":"There are several types of Samsung Galaxy A32 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A32 cases cost?","answer":"Generally, Samsung Galaxy A32 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A32 back cover?","answer":"The benefits of using an Samsung Galaxy A32 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A32 mobile covers online?","answer":"Get the best Samsung Galaxy A32 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a5-back-covers-cases","faq":[{"question":"What are the different types of Oppo A5 covers?","answer":"There are several types of Oppo A5 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A5 cases cost?","answer":"Generally, Oppo A5 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A5 back cover?","answer":"The benefits of using an Oppo A5 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A5 mobile covers online?","answer":"Get the best Oppo A5 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m12-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy M12 covers?","answer":"There are several types of Samsung Galaxy M12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy M12 cases cost?","answer":"Generally, Samsung Galaxy M12 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy M12 back cover?","answer":"The benefits of using an Samsung Galaxy M12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy M12 mobile covers online?","answer":"Get the best Samsung Galaxy M12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a7-back-covers-cases","faq":[{"question":"What are the different types of Oppo A7 covers?","answer":"There are several types of Oppo A7 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A7 cases cost?","answer":"Generally, Oppo A7 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A7 back cover?","answer":"The benefits of using an Oppo A7 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A7 mobile covers online?","answer":"Get the best Oppo A7 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c12-back-covers-cases","faq":[{"question":"What are the different types of Realme C12 covers?","answer":"There are several types of Realme C12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C12 cases cost?","answer":"Generally, Realme C12 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C12 back cover?","answer":"The benefits of using an Realme C12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C12 mobile covers online?","answer":"Get the best Realme C12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a22-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A22 covers?","answer":"There are several types of Samsung Galaxy A22 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A22 cases cost?","answer":"Generally, Samsung Galaxy A22 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A22 back cover?","answer":"The benefits of using an Samsung Galaxy A22 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A22 mobile covers online?","answer":"Get the best Samsung Galaxy A22 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno-3-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 Pro covers?","answer":"There are several types of Oppo Reno3 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 Pro cases cost?","answer":"Generally, Oppo Reno3 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 Pro back cover?","answer":"The benefits of using an Oppo Reno3 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 Pro mobile covers online?","answer":"Get the best Oppo Reno3 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a52s-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A52S covers?","answer":"There are several types of Samsung Galaxy A52S covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A52S cases cost?","answer":"Generally, Samsung Galaxy A52S cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A52S back cover?","answer":"The benefits of using an Samsung Galaxy A52S back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A52S mobile covers online?","answer":"Get the best Samsung Galaxy A52S mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s10-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy S10 covers?","answer":"There are several types of Samsung Galaxy S10 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy S10 cases cost?","answer":"Generally, Samsung Galaxy S10 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy S10 back cover?","answer":"The benefits of using an Samsung Galaxy S10 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy S10 mobile covers online?","answer":"Get the best Samsung Galaxy S10 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-note-10-plus-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy Note 10 Plus covers?","answer":"There are several types of Samsung Galaxy Note 10 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy Note 10 Plus cases cost?","answer":"Generally, Samsung Galaxy Note 10 Plus cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy Note 10 Plus back cover?","answer":"The benefits of using an Samsung Galaxy Note 10 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy Note 10 Plus mobile covers online?","answer":"Get the best Samsung Galaxy Note 10 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-note-9-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy Note 9 covers?","answer":"There are several types of Samsung Galaxy Note 9 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy Note 9 cases cost?","answer":"Generally, Samsung Galaxy Note 9 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy Note 9 back cover?","answer":"The benefits of using an Samsung Galaxy Note 9 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy Note 9 mobile covers online?","answer":"Get the best Samsung Galaxy Note 9 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"iphone-6-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 6 Plus covers?","answer":"There are several types of iPhone 6 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do iPhone 6 Plus cases cost?","answer":"Generally, iPhone 6 Plus cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an iPhone 6 Plus back cover?","answer":"The benefits of using an iPhone 6 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy iPhone 6 Plus mobile covers online?","answer":"Get the best iPhone 6 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c25-back-covers-cases","faq":[{"question":"What are the different types of Realme C25 covers?","answer":"There are several types of Realme C25 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C25 cases cost?","answer":"Generally, Realme C25 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C25 back cover?","answer":"The benefits of using an Realme C25 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C25 mobile covers online?","answer":"Get the best Realme C25 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p30-lite-back-covers-cases","faq":[{"question":"What are the different types of Huawei P30 Lite covers?","answer":"There are several types of Huawei P30 Lite covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P30 Lite cases cost?","answer":"Generally, Huawei P30 Lite cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P30 Lite back cover?","answer":"The benefits of using an Huawei P30 Lite back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P30 Lite mobile covers online?","answer":"Get the best Huawei P30 Lite mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p30-pro-back-covers-cases","faq":[{"question":"What are the different types of Huawei P30 Pro covers?","answer":"There are several types of Huawei P30 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P30 Pro cases cost?","answer":"Generally, Huawei P30 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P30 Pro back cover?","answer":"The benefits of using an Huawei P30 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P30 Pro mobile covers online?","answer":"Get the best Huawei P30 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s21-plus-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy S21 Plus covers?","answer":"There are several types of Samsung Galaxy S21 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy S21 Plus cases cost?","answer":"Generally, Samsung Galaxy S21 Plus cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy S21 Plus back cover?","answer":"The benefits of using an Samsung Galaxy S21 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy S21 Plus mobile covers online?","answer":"Get the best Samsung Galaxy S21 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-f21-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo F21 Pro covers?","answer":"There are several types of Oppo F21 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo F21 Pro cases cost?","answer":"Generally, Oppo F21 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo F21 Pro back cover?","answer":"The benefits of using an Oppo F21 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo F21 Pro mobile covers online?","answer":"Get the best Oppo F21 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a23-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A23 covers?","answer":"There are several types of Samsung Galaxy A23 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A23 cases cost?","answer":"Generally, Samsung Galaxy A23 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A23 back cover?","answer":"The benefits of using an Samsung Galaxy A23 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A23 mobile covers online?","answer":"Get the best Samsung Galaxy A23 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-9i-back-covers-cases","faq":[{"question":"What are the different types of Realme 9i covers?","answer":"There are several types of Realme 9i covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme 9i cases cost?","answer":"Generally, Realme 9i cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme 9i back cover?","answer":"The benefits of using an Realme 9i back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme 9i mobile covers online?","answer":"Get the best Realme 9i mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p40-pro-back-covers-cases","faq":[{"question":"What are the different types of Huawei P40 Pro covers?","answer":"There are several types of Huawei P40 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P40 Pro cases cost?","answer":"Generally, Huawei P40 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P40 Pro back cover?","answer":"The benefits of using an Huawei P40 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P40 Pro mobile covers online?","answer":"Get the best Huawei P40 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c33-back-covers-cases","faq":[{"question":"What are the different types of Realme C33 covers?","answer":"There are several types of Realme C33 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C33 cases cost?","answer":"Generally, Realme C33 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C33 back cover?","answer":"The benefits of using an Realme C33 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C33 mobile covers online?","answer":"Get the best Realme C33 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a77s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A77s covers?","answer":"There are several types of Oppo A77s covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A77s cases cost?","answer":"Generally, Oppo A77s cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A77s back cover?","answer":"The benefits of using an Oppo A77s back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A77s mobile covers online?","answer":"Get the best Oppo A77s mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno4-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno4 Pro covers?","answer":"There are several types of Oppo Reno4 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno4 Pro cases cost?","answer":"Generally, Oppo Reno4 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno4 Pro back cover?","answer":"The benefits of using an Oppo Reno4 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno4 Pro mobile covers online?","answer":"Get the best Oppo Reno4 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m13-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy M13 5G covers?","answer":"There are several types of Samsung Galaxy M13 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy M13 5G cases cost?","answer":"Generally, Samsung Galaxy M13 5G cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy M13 5G back cover?","answer":"The benefits of using an Samsung Galaxy M13 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy M13 5G mobile covers online?","answer":"Get the best Samsung Galaxy M13 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f42-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy F42 5G covers?","answer":"There are several types of Samsung Galaxy F42 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy F42 5G cases cost?","answer":"Generally, Samsung Galaxy F42 5G cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy F42 5G back cover?","answer":"The benefits of using an Samsung Galaxy F42 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy F42 5G mobile covers online?","answer":"Get the best Samsung Galaxy F42 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno3-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 Pro covers?","answer":"There are several types of Oppo Reno3 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 Pro cases cost?","answer":"Generally, Oppo Reno3 Pro cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 Pro back cover?","answer":"The benefits of using an Oppo Reno3 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 Pro mobile covers online?","answer":"Get the best Oppo Reno3 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno3-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 covers?","answer":"There are several types of Oppo Reno3 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 cases cost?","answer":"Generally, Oppo Reno3 cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 back cover?","answer":"The benefits of using an Oppo Reno3 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 mobile covers online?","answer":"Get the best Oppo Reno3 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno7-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno7 Pro 5G covers?","answer":"There are several types of Oppo Reno7 Pro 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno7 Pro 5G cases cost?","answer":"Generally, Oppo Reno7 Pro 5G cases cost between Rs. 199-599 in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno7 Pro 5G back cover?","answer":"The benefits of using an Oppo Reno7 Pro 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno7 Pro 5G mobile covers online?","answer":"Get the best Oppo Reno7 Pro 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]}]},"updated_at":1718386630},"url":"bestseller","webmenu":{"shop-men":{"title":"Men","url":"campaign\u002Fthe-yellow-friday-sale-for-men","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_12.png?v=1689316181","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Men&subCat=Topwear","page":true,"object_type":"shop-men","isCategoryRedirection":true,"category_page_url":"categories?category=men","icon_image":"Circle-icon-men--1--1684748735.png","image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":"campaign\u002Fthe-yellow-friday-sale-for-men"}],"children":[{"title":"Topwear","url":"top-wear-for-men","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-t-shirts"},{"title":"Printed T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-printed-tshirts"},{"title":"Oversized T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"oversized-t-shirts-for-men"},{"title":"Classic Fit T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"classic-t-shirt-for-men"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-6-1646915132.jpg","url":"men-plain-t-shirts"},{"title":"Half Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-4-1646915131.jpg","url":"half-sleeve-t-shirts-for-men"},{"title":"Polo T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-8-1646915133.jpg","url":"polo-t-shirts-for-men"},{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646915130.jpg","url":"men-vests"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Shirts-420X420-1638440741.jpg","url":"men-shirts"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-7-1646915132.jpg","url":"men-full-sleeve-t-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt_kurta_vest_sweatshirt_shirt_jacket_co-ordinates_kurta_set_t-shirt_%26_set_kurta__set"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts\u002Fgender-men"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0020-bottom-navigation-box-1634893908.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0002-White-Color-Block-Flat-Knit-Sweater-1634893902.jpg","url":"men-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-men"}]},{"title":"Bottomwear","url":"men-bottom-wear-collection","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Joggers-420X420-1638440737.jpg","url":"men-joggers"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"mens-denim"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"baggy-jeans-for-men"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargos-for-men"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargo-pants-for-men"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Casual-Pants-420X420-1638440735.jpg","url":"men-pants"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-2-1646915130.jpg","url":"men-shorts"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-3-1646915130.jpg","url":"men-boxer-shorts"},{"title":"Combos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-March2023-Bottomwear-BoxersCOMBO-1683787302.jpg","url":"combos?gender=men&category=boxer"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=jeans_joggers_pyjama_trousers_track__pant_boxer_casual__pants"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"men-bottom-wear-collection"}]},{"title":"Winterwear","url":"winter-wear-for-men","children":[{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FHoodies-1635838081.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweaters-1635838082.jpg","url":"men-sweaters"},{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0006-joggers-1635838124.jpg","url":"men-joggers"},{"title":"Plus Size","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FFull-Sleeves-1635838080.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt_jacket"}]},{"title":"Footwear","url":"men-footwear","children":[{"title":"Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men?manufacturer_brand=bewakoof®"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"men-sliders"},{"title":"Non Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men"},{"title":"Non Bewakoof Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"men-casual-shoes"}]},{"title":"Accessories","children":[{"title":"Mobile covers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002F10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india","is_new":"NEW"},{"title":"Backpacks","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838175.jpg","url":"bags"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=men","is_new":"NEW"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Caps","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"caps","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-men","children":[{"title":"T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size--Shirts-420X420-1642656919.jpg","url":"plus-size-store-for-men?category=shirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size---Jackets-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=jacket"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid--Plus-size--Hoodies---Sweatshirts-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt"},{"title":"Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=joggers_jeans_pyjama_trousers_track__pant_casual__pants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"plus-size-store-for-men?category=jeans"}]},{"title":"Innerwear & Loungewear ","url":"","children":[{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0005-minion--1634893903.jpg","url":"men-vests"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0011-boxers-1634894719.jpg","url":"men-boxer-shorts"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Bewakoof Sneakers","image":"Circle-Nav-168x168-Kakashi-1718371704.png","url":"sneakers-for-men?manufacturer_brand=bewakoof®"},{"title":"Bwkf x Google Cloud","image":"Circle-Nav-168x168-BWKF-x-Google-1716990921.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=men"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=men"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=men"},{"title":"Disney Villans","image":"DisneyVillains-168x168-1702822672.png","url":"disney-villains?gender=men"},{"title":"Bwkf X Ishaan Khatter","image":"circle-168x168-IK-1699605086.png","url":"campaign\u002FIshan-Khatter"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=men_unisex"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_men"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=men"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=men"},{"title":"Cartoon Network","image":"Circle-Nav-168x168-1697373196.png","url":"cartoon-network-merchandise"},{"title":"Bwkf x Pima","image":"circle-icon-pima-168x168-1695825476.png","url":"bewakoof-american-pima"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise"},{"title":"Squad Tees","image":"Circle-icon-buddy-tees--2--1694693460.png","url":"friendship-day-gifts"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Anime Collection","image":"circlenav-animeFLASHOUT-168x168-1675432697.png","url":"anime-collection?gender=men_unisex"},{"title":"Marvel Youth Beat","image":"Circle-Icon-Marvel-Youth-Beat-1653558342.png","url":"marvel-merchandise?gender=men_unisex"},{"title":"The Batman Collection","image":"batman-icon-1652639811.png","url":"batman-merchandise?gender=men_unisex"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=men_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-men"}]}]},"shop-women":{"title":"Women","url":"","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_1.png?v=1683702749","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Women&subCat=Topwear","object_type":"shop-women","isCategoryRedirection":true,"category_page_url":"categories?category=women","icon_image":"Circle-icon-women--1--1684748736.png","page":true,"image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":""}],"children":[{"title":"Topwear","url":"top-wear-for-women","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"women-t-shirts"},{"title":"Printed T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-7-1646932671.jpg","url":"women-printed-t-shirts"},{"title":"Boyfriend T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-boyfriend-tshirts"},{"title":"Oversized T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"oversized-t-shirts-for-women"},{"title":"Classic Fit T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"classic-t-shirt-for-women"},{"title":"Half Sleeves T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-6-1646932671.jpg","url":"half-sleeve-t-shirts-for-women"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-2-1646932669.jpg","url":"women-plain-t-shirts"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-full-sleeves-t-shirts"},{"title":"Fashion Tops","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Fashion-Tops-Women-1638441042.jpg","url":"fashion-tops"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Dresses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-8-1646932672.jpg","url":"women-dresses"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FPrinted-Shirt-1634896295.jpg","url":"women-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_top"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=women"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1-1634895368.jpg","url":"women-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-fatima-1644323907.jpg","url":"women-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1634895368.jpg","url":"women-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-women"}]},{"title":"Bottomwear","url":"bottom-wear-for-women","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0005-joggers-women-1634894810.jpg","url":"women-joggers-sweatpants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"womens-denims"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"baggy-jeans-for-women"},{"title":"Parachute pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Parachute-Pants-1694077402.jpg","url":"parachute-pants-for-women"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargos-for-women"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargo-pants-for-women"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-5-1646932670.jpg","url":"women-pajamas"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Trousers-Women-1638535094.jpg","url":"women-pants"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-4-1646932670.jpg","url":"women-shorts"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"bottom-wear-for-women"}]},{"title":"Winterwear","url":"winter-wear-for-women","children":[{"title":"Jackets","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-13-1622014271.png","url":"women-jackets"},{"title":"Sweatshirts & Hoodies","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-12-1622014270.png","url":"women-hoodies-sweatshirts"},{"title":"Sweaters","image":"Bewakoof-Homepage-TopWear-Women-Icon-Sweaters-14-1622014276.png","url":"women-sweaters"},{"title":"Joggers","image":"Jogger-1622015072.png","url":"women-joggers-sweatpants"},{"title":"Plus Size","image":"Category-Grid-Sweatshirts-420X420-1638865326.jpg","url":"plus-size-store-for-women?category=hoodies_jacket_sweatshirt"}]},{"title":"Footwear","url":"women-footwear","children":[{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"casual-shoes-for-women"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"women-sliders"},{"title":"Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"women-sneakers"}]},{"title":"Accessories","children":[{"title":"Mobile Covers","image":"10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india"},{"title":"Bags & Backpacks","image":"tod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838450.jpg","url":"bags"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=women","is_new":"NEW"},{"title":"Caps","image":"bottom-navigation-cap--1637934867.jpg","url":"caps"}]},{"title":"Plus Size","url":"plus-size-store-for-women","children":[{"title":"Topwear","image":"Category-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_t-shirt__%26__pyjama__set_top"},{"title":"Sweatshirts & hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-2-1700128926.jpg","url":"plus-size-store-for-women?category=hoodies_sweatshirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-1-1700128926.jpg","url":"plus-size-store-for-women?category=jacket"},{"title":"Bottomwear","image":"Category-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"Dresses","image":"Category-Grid-Plus-Size-Dresses-420X420-1643692240.jpg","url":"plus-size-store-for-women?category=dress"}]},{"title":"Loungewear","url":"women-nightwear","children":[{"title":"Shorts","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-shorts"},{"title":"Pajamas","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-pajamas"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Bwkf x Google Cloud","image":"Circle-Nav-168x168-BWKF-x-Google-1716990921.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=women"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=women"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=women"},{"title":"Bwkf X Rashmika Mandanna","image":"NewBottomNav-RM-336x336-1701505415.png","url":"campaign\u002FRashmika_Mandanna"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=unisex_women"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_women"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=women"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=women_unisex"},{"title":"Cartoon Network","image":"Circle-Nav-168x168-1697373196.png","url":"cartoon-network-merchandise"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise"},{"title":"Squad Tees","image":"Circle-icon-buddy-tees--2--1694693460.png","url":"friendship-day-gifts"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=women_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-women"}]}]},"campaign\u002Fofficial-collaborations":{"title":"Shop by Fandom","object_type":"campaign\u002Fofficial-collaborations","navigateToHome":"categories","isCategoryRedirection":true,"category_page_url":"categories?sub-cat=shop by fandom","icon_image":"Circle-icon-character-shop--1--1684748738.png","shopify_url":"\u002Fpages\u002Fofficial-collaborations","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","iswebview":true,"page":true,"exclude":"desktop","login_required":false,"appNavigation":{"screen":"campaign"}},"mobile covers":{"title":"Mobile Covers","object_type":"mobile covers","exclude":"ios,android,mobile_site","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","shopify_url":"\u002F","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","right_imgs":[{"src":"bewakoof-online-fashion-COTM-mobile-cover-navigation-box-desktop-1612275399.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Nothing","url":"mobile-covers-india\u002Fnothing-cases-back-covers","page":true,"children":[{"title":"Nothing Phone 1","url":"nothing-phone-1-back-covers-cases","params":{"qf":false}},{"title":"Nothing Phone 2","url":"nothing-phone-2-back-covers-cases","params":{"qf":false}}]},{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","page":true,"children":[{"title":"Mi 12 Pro 5G","url":"xiaomi-mi-12-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9 Power","url":"xiaomi-redmi-9-power-back-cover-cases","params":{"qf":false}},{"title":"Redmi Note 11 SE","url":"redmi-note-11-se-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 T","url":"xiaomi-redmi-note-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10i 5G","url":"xiaomi-mi-10i-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Ultra","url":"mi-11-ultra-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Lite NE 5G","url":"mi-11-lite-ne-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i","url":"xiaomi-mi-11i-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i HyperCharge","url":"mi-11i-hypercharge-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11T Pro 5G","url":"xiaomi-mi-11t-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11X","url":"xiaomi-mi-11x-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10T","url":"xiaomi-mi-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi K20 Pro","url":"xiaomi-redmi-k-20-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10","url":"xiaomi-mi-10-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco C3","url":"xiaomi-poco-c3-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9","url":"xiaomi-redmi-9-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 10 Prime","url":"xiaomi-redmi-10-prime-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Prime","url":"xiaomi-redmi-9-prime-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10T 5G","url":"redmi-note-10t-5g-back-covers-cases","params":{"qf":false}},{"title":"Redmi 11 Prime 5G","url":"redmi-11-prime-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11 Pro 5G","url":"redmi-note-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11t 5G","url":"xiaomi-redmi-note-11t-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro Max","url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro","url":"xiaomi-redmi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10","url":"xiaomi-redmi-note-10-back-covers-cases","params":{"qf":false}},{"title":"Mi Note 10 pro","url":"xiaomi-mi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases ","params":{"qf":false}},{"title":"Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 5 Pro","url":"xiaomi-redmi-note-5-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Google Pixel","url":"mobile-covers-india\u002Fgoogle-pixel-cases-back-covers","page":true,"children":[{"title":"Google Pixel 6A","url":"google-pixel-6a-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","page":true,"children":[{"title":"OnePlus Nord 3 5G","url":"oneplus-nord-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite 5G","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 5G","url":"oneplus-nord-ce-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 2 Lite","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 2T 5G","url":"oneplus-nord-2t-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9R","url":"oneplus-9r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9RT","url":"oneplus-9rt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 9","url":"oneplus-9-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Pro","url":"oneplus-9-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord N20 SE","url":"oneplus-nord-n20-se-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8 Pro","url":"oneplus-8-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8","url":"oneplus-8-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord N20","url":"one-plus-nord-n20-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE","url":"oneplus-nord-ce-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord CE 5G","url":"oneplus-nord-ce-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord CE2 5G","url":"oneplus-nord-ce-2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus Nord CE2 Lite 5G","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 10 Pro","url":"oneplus-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord 2","url":"oneplus-nord-2-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7","url":"oneplus-7-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 10 R","url":"oneplus-10r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7 Pro","url":"oneplus-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6T","url":"oneplus-6t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","page":true,"children":[{"title":"iPhone 15 Pro max","url":"iphone-15-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Pro","url":"iphone-15-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Plus","url":"iphone-15-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15","url":"iphone-15-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro Max","url":"iphone-14-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro","url":"iphone-14-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Plus","url":"iphone-14-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14","url":"iphone-14-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2022","url":"iphone-se-2022-back-covers-cases","params":{"qf":false}},{"title":"iPhone 13 Pro Max","url":"iphone-13-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Pro","url":"iphone-13-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Mini","url":"iphone-13-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13","url":"iphone-13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro","url":"iphone-12-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12","url":"iphone-12-back-covers-cases","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS Max","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}},{"title":"iPhone 8 plus","url":"iphone-8-plus-back-covers-cases","params":{"qf":false}},{"title":"iPhone 7 plus","url":"iphone-7-plus-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","page":true,"children":[{"title":"Samsung Galaxy A55 5G Covers","url":"samsung-galaxy-a55-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A35 5G Covers","url":"samsung-galaxy-a35-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 Ultra 5G Mobile Covers","url":"samsung-galaxy-s24-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 5G Mobile Covers","url":"samsung-galaxy-s24-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Fold4 5G Mobile Covers","url":"samsung-galaxy-z-fold4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Flip4 5G Mobile Covers","url":"samsung-galaxy-z-flip4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M14 5G","url":"samsung-galaxy-m14-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Ultra 5G","url":"samsung-galaxy-s23-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Plus 5G","url":"samsung-galaxy-s23-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 5G","url":"samsung-galaxy-s23-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A54 5G","url":"samsung-galaxy-a54-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A34 5G","url":"samsung-galaxy-a34-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20 Ultra","url":"samsung-galaxy-note-20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20 FE","url":"samsung-galaxy-s20-fe-back-cover-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20","url":"samsung-galaxy-note-20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20","url":"samsung-galaxy-s20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21","url":"samsung-galaxy-s21-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 5G","url":"samsung-galaxy-s22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note20 Ultra","url":"samsung-galaxy-s20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M33 5G","url":"samsung-galaxy-m33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A33 5G","url":"samsung-galaxy-a33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A23","url":"samsung-galaxy-a23-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A73 5G","url":"samsung-galaxy-a73-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A13","url":"samsung-galaxy-a13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10","url":"samsung-galaxy-s10-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Lite","url":"samsung-galaxy-s10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Plus","url":"samsung-galaxy-s10-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy F62","url":"samsung-galaxy-f62-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A12","url":"samsung-galaxy-a12-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22","url":"samsung-galaxy-a22-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22 5G","url":"samsung-galaxy-a22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A32","url":"samsung-galaxy-a32-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52","url":"samsung-galaxy-a52-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52s","url":"samsung-galaxy-a52s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A50","url":"samsung-galaxy-a50-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M53 5G","url":"samsung-galaxy-m53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A53 5G","url":"samsung-galaxy-a53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Ultra 5G","url":"samsung-galaxy-s22-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Plus 5G","url":"samsung-galaxy-s22-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M52 5G","url":"samsung-galaxy-m52-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 fe 5G","url":"samsung-galaxy-s21-fe-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 Plus","url":"samsung-galaxy-s21-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M32 5G","url":"samsung-galaxy-m32-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","page":true,"children":[{"title":"Realme 12 Pro+ 5G","url":"realme-12-pro-plus-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 12 Pro 5G","url":"realme-12-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro+ 5G","url":"realme-11-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro 5G","url":"realme-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro+ 5G","url":"realme-10-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro 5G","url":"realme-10-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 8 5G","url":"realme-8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 9 Pro 5G","url":"realme-9-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme C11","url":"realme-c11-back-covers-cases","params":{"qf":false}},{"title":"Realme 8","url":"realme-8-back-covers-cases","params":{"qf":false}},{"title":"Realme 7 Pro","url":"realme-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 6i","url":"realme-6i-back-covers-cases","params":{"qf":false}},{"title":"Realme XT","url":"realme-xt-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","page":true,"children":[{"title":"Vivo V30 Pro 5G Covers","url":"vivo-v30-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo V30 5G Covers","url":"vivo-v30-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo T3X 5G Covers","url":"vivo-t3x-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo Y100 Mobile Covers","url":"vivo-y100-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 Pro 5G","url":"vivo-v27-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 5G Mobile Covers","url":"vivo-v27-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V25 Pro","url":"vivo-v25-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo IQOO9 5G","url":"vivo-iqoo9-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V23e 5G Mobile Covers","url":"vivo-v23e-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y51 2020","url":"vivo-y51-2020-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y12s Mobile Covers","url":"vivo-y12-s-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y73","url":"vivo-y73-back-covers-cases","params":{"qf":false}},{"title":"Vivo X60","url":"vivo-x60-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y20 Mobile Covers","url":"vivo-y20-back-covers-cases","params":{"qf":false}},{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23e 5G","url":"vivo-v23e-5g-back-covers-cases","params":{"qf":false}}]},{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","page":true,"children":[{"title":"Oppo F25 Pro 5G Covers","url":"oppo-f25-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo Reno11 5G Covers","url":"oppo-reno11-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro","url":"oppo-f21s-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro 5G","url":"oppo-f21s-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro Plus","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno6 5G","url":"oppo-reno6-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 5G","url":"oppo-reno7-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 Pro 5G","url":"oppo-reno7-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo A57 4G","url":"oppo-a57-4g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A54","url":"oppo-a54-back-covers-cases","params":{"qf":false}},{"title":"Oppo A53","url":"oppo-a53-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A33","url":"oppo-a33-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3s","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno8 5G","url":"oppo-reno8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Moto","url":"mobile-covers-india\u002Fmoto-cases-back-covers","page":true,"children":[{"title":"Moto G7 Power","url":"moto-g7-power-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Moto G7","url":"moto-g7-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Poco","url":"mobile-covers-india\u002Fpoco-cases-back-covers","page":true,"children":[{"title":"Poco X6 Pro 5G Covers","url":"poco-x6-pro-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X6 5G Covers","url":"poco-x6-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco F5 5G Mobile Covers","url":"poco-f5-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X5 Pro 5G Mobile Covers","url":"poco-x5-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M4 5G Mobile Covers","url":"poco-m4-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5 Mobile Covers","url":"poco-m5-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X4 Pro 5G Mobile Covers","url":"poco-x4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi POCO M2 reloaded Mobile Covers","url":"xiaomi-poco-m2-reloaded-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M4 Pro 5G Mobile Covers","url":"xiaomi-poco-m4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X3 Pro Mobile Covers","url":"xiaomi-poco-x3-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco F3 GT Mobile Covers","url":"xiaomi-poco-f3-gt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco C3 Mobile Covers","url":"xiaomi-poco-c3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X3 Mobile Covers","url":"xiaomi-poco-x3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro Mobile Covers","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M3 Pro","url":"xiaomi-poco-m3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M5","url":"poco-m5-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco X3 Pro","url":"xiaomi-poco-x3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M2 Reloaded","url":"xiaomi-poco-m2-reloaded-back-covers-cases","params":{"qf":false}},{"title":"Poco X3","url":"xiaomi-poco-x3-back-covers-cases","params":{"qf":false}},{"title":"Poco F3 GT","url":"xiaomi-poco-f3-gt-back-covers-cases","params":{"qf":false}}]}]}]},"header_objects":[{"displayName":"MEN","url":"men-clothing","name":"shop-men"},{"displayName":"WOMEN","url":"women-clothing","name":"shop-women"},{"displayName":"MOBILE COVERS","name":"mobile covers","url":"mobile-covers-india"}]}},"bfun":{},"filters":{"filtersObj":{"filters":{"gender":["men","women","unisex"],"category":["t-shirt","joggers","jeans","pyjama","trousers","vest","dress","shorts","boxer","casual pants","top","boxer shorts","co-ordinates","pant","shirt","track pant"],"sizes":["XS","S","M","L","XL","2XL","3XL","4XL","5XL","6XL","26","28","30","32","34","36","38"],"manufacturer_brand":["bewakoof®","bewakoof air® 1.0","bewakoof heavy duty® 1.0","dlob"],"color":["black","white","red","blue","brown","green","purple","grey","pink","beige","orange","maroon"],"design":["graphic print","solid","typography","printed","aop","camouflage","striped"],"fit":["oversized fit","regular fit","boyfriend fit","slim fit","straight fit","wide leg","super loose fit","loose fit","unisex fit"],"sleeve":["half sleeve","full sleeve","sleeveless","extended sleeve"],"neck":["round neck","collar","polo","resort collar"],"type":["t-shirt","cargo","joggers","jeans","pyjama","vest","shorts","boxer","short top","t-shirt dress","trousers","mini dress","polo","boxer shorts","carpenter","dress","parachute pants","shirt","t-shirt & jogger set","t-shirt & shorts set","trackpants"],"ratings":[4.5,4,3.5,3,2.5,2]},"color_hex_code":{"black":"#000000","blue":"#0000ff","brown":"#663300","green":"#008000","grey":"#808080","orange":"#ffa500","pink":"#ff66ff","purple":"#800080","red":"#ff0000","white":"#ffffff","yellow":"#ffff00","maroon":"#622f40","beige":"#F0E2A8"},"tribe_filters":{"tribe_tags":["buy 3 for 949","buy 2 for 849","buy 2 for 1449"],"member_discount":["20","30","40","50","60","70"]},"non_tribe_filters":{"product_discount":["10","20","30","40","50","60","70"]},"filter_name_hash":{"manufacturer_brand":"Brand","tribe_tags":"Offers","b1g1":"Buy 1 Get 1","b2g1":"Buy 2 Get 1","product_discount":"Discount","member_discount":"Discount"},"open_filters":{"experiment_id":"open_filters;v1","filters":[{"filter":[{"top_rated":null}],"name":"Top Rated","type":"custom"},{"filter":[{"category":"t-shirt"}],"name":"T-Shirts","type":"direct"},{"filter":[{"gender":"men"}],"name":"Men","type":"direct"},{"filter":[{"sleeve":"half sleeve"}],"name":"Half Sleeves","type":"direct"},{"filter":[{"design":"graphic print"}],"name":"Graphics","type":"direct"},{"filter":[{"gender":"women"}],"name":"Women","type":"direct"},{"filter":[{"fit":"regular fit"}],"name":"Regular Fit","type":"direct"},{"filter":[{"sleeve":"full sleeve"}],"name":"Long Sleeves","type":"direct"},{"filter":[{"design":"solid"}],"name":"Solids","type":"direct"},{"filter":[{"fit":"boyfriend fit"}],"name":"Boyfriend","type":"direct"},{"filter":[{"sizes":null}],"name":"Size","type":"hybrid"},{"filter":[{"color":null}],"name":"Color","type":"hybrid"}]}}},"urls":{"showLoader":true,"showMobileFilterSort":true,"productGridObj":{"products":[{"id":625704,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"women-s-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt-625704-1699354913-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1312872,"name":"3XL","stock_status":false},{"id":1312876,"name":"4XL","stock_status":true},{"id":1312877,"name":"5XL","stock_status":true},{"id":1312878,"name":"6XL","stock_status":true}],"stock_status":true,"member_price":489,"mrp":1099,"name":"Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt","custom_name":"Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt","offer_type":"best_seller","price":529,"ptype":"single","subclass":"T-Shirt","url":"womens-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"55% OFF","product_discount":"51% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":1},{"id":609849,"all_offer_price":2949,"description":"","category":"Trousers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-cargo-pants-609849-1706080484-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1278900,"name":"30","stock_status":true},{"id":1278911,"name":"32","stock_status":true},{"id":1278927,"name":"34","stock_status":true},{"id":1278930,"name":"36","stock_status":true},{"id":1278892,"name":"28","stock_status":true}],"stock_status":true,"member_price":1099,"mrp":2949,"name":"Men's Black Oversized Cargo Pants","custom_name":"Men's Black Oversized Cargo Pants","offer_type":"best_seller","price":1199,"ptype":"single","subclass":"Trousers","url":"mens-black-oversized-cargo-trousers-11","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"child_category":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"62% OFF","product_discount":"59% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":null,"position":2},{"id":552880,"all_offer_price":2199,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-cargo-joggers-552880-1710766583-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1128709,"name":"S","stock_status":true},{"id":1128712,"name":"M","stock_status":true},{"id":1128715,"name":"L","stock_status":true},{"id":1128718,"name":"XL","stock_status":true},{"id":1128721,"name":"2XL","stock_status":true},{"id":1189896,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":919,"mrp":2199,"name":"Men's Black Oversized Cargo Joggers","custom_name":"Men's Black Oversized Cargo Joggers","offer_type":"best_seller","price":999,"ptype":"single","subclass":"Joggers","url":"mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{"name":"limited edition","color":"#FED454"},"member_discount":"58% OFF","product_discount":"54% OFF","manufacturer_brand":"Bewakoof Air® 1.0","fabric_tag":{"type":"fabric","label":"LIGHTWEIGHT TERRY FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":3},{"id":324701,"all_offer_price":1299,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"jet-black-plus-size-casual-jogger-pants-324701-1655751335-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":619182,"name":"3XL","stock_status":true},{"id":619183,"name":"4XL","stock_status":true},{"id":619184,"name":"5XL","stock_status":false},{"id":619185,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":759,"mrp":1299,"name":"Men's Black Plus Size Casual Joggers","custom_name":"Men's Black Plus Size Casual Joggers","offer_type":"best_seller","price":829,"ptype":"single","subclass":"Joggers","url":"jet-black-casual-jogger-pants","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"41% OFF","product_discount":"36% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"SOFT TERRY COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":4},{"id":324702,"all_offer_price":1299,"description":"","category":"Joggers","color":["blue"],"design":"Solid","display_image":"navy-blue-plus-size-casual-jogger-pants-324702-1655752010-1.jpg","flip_image":"navy-blue-plus-size-casual-jogger-pants-324702-1655752031-5.jpg","parent_category":null,"product_sizes":[{"id":619186,"name":"3XL","stock_status":true},{"id":619187,"name":"4XL","stock_status":true},{"id":619188,"name":"5XL","stock_status":true},{"id":619189,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":879,"mrp":1299,"name":"Men's Blue Plus Size Casual Joggers","custom_name":"Men's Blue Plus Size Casual Joggers","offer_type":"best_seller","price":959,"ptype":"single","subclass":"Joggers","url":"navy-blue-casual-jogger-pants","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"32% OFF","product_discount":"26% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"PREMIUM BLENDED FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":5},{"id":602544,"all_offer_price":1099,"description":"","category":"Vest","color":["gray"],"design":"Graphic Print","display_image":"men-s-grey-we-are-venom-graphic-printed-oversized-vest-602544-1716887285-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1254762,"name":"S","stock_status":true},{"id":1254776,"name":"M","stock_status":true},{"id":1254791,"name":"L","stock_status":true},{"id":1254803,"name":"XL","stock_status":true},{"id":1254812,"name":"2XL","stock_status":true},{"id":1254827,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":459,"mrp":1099,"name":"Men's Grey We Are Venom Graphic Printed Oversized Vest","custom_name":"Men's Grey We Are Venom Graphic Printed Oversized Vest","offer_type":"best_seller","price":499,"ptype":"single","subclass":"Vest","url":"mens-grey-we-are-venom-graphic-printed-oversized-vest","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x marvel","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Vest","id":91,"name":"Vest","url":""},"child_category":{"gender":"Men","subclass":"Vest","id":91,"name":"Vest","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"58% OFF","product_discount":"54% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":6},{"id":609644,"all_offer_price":1299,"description":"","category":"T-Shirt","color":["purple"],"design":"Graphic Print","display_image":"women-s-purple-don-t-care-graphic-print-oversized-t-shirt-609644-1691754544-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1277864,"name":"S","stock_status":false},{"id":1277870,"name":"M","stock_status":true},{"id":1277874,"name":"L","stock_status":true},{"id":1277878,"name":"XL","stock_status":false},{"id":1277882,"name":"2XL","stock_status":false},{"id":1277858,"name":"XS","stock_status":false},{"id":1277885,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1299,"name":"Women's Purple Don't Care Graphic Printed Oversized T-shirt","custom_name":"Women's Purple Don't Care Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-purple-dont-care-graphic-print-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"offer","label":"Few Left","bgColor":"rgba(255, 236, 236, 0.8)","textColor":"#FF2E2E"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"71% OFF","product_discount":"69% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":7},{"id":552888,"all_offer_price":2899,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-plus-size-cargo-joggers-552888-1698309586-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1128735,"name":"3XL","stock_status":true},{"id":1128738,"name":"4XL","stock_status":false},{"id":1128741,"name":"5XL","stock_status":false},{"id":1128743,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":979,"mrp":2899,"name":"Men's Black Oversized Plus Size Cargo Joggers","custom_name":"Men's Black Oversized Plus Size Cargo Joggers","offer_type":"best_seller","price":1054,"ptype":"single","subclass":"Joggers","url":"mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black-plain","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"flash_sale":true,"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof Air® 1.0","fabric_tag":{"type":"fabric","label":"LIGHTWEIGHT TERRY FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":8},{"id":585798,"all_offer_price":1149,"description":"","category":"T-Shirt","color":["purple"],"design":"Graphic Print","display_image":"men-s-purple-hug-it-out-graphic-printed-t-shirt-585798-1709214960-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1213106,"name":"S","stock_status":true},{"id":1213114,"name":"M","stock_status":true},{"id":1213118,"name":"L","stock_status":false},{"id":1213126,"name":"XL","stock_status":true},{"id":1213154,"name":"2XL","stock_status":true},{"id":1213159,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":419,"mrp":1149,"name":"Men's Purple Hug It Out Graphic Printed T-shirt","custom_name":"Men's Purple Hug It Out Graphic Printed T-shirt","offer_type":"best_seller","price":449,"ptype":"single","subclass":"T-Shirt","url":"men-hug-it-out-graphic-printed-regular-t-shirt-51","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"offer","label":"BUY 3 FOR 999","bgColor":"rgba(0, 184, 82, 0.8)","textColor":"#fff"}],"tribe_header":"Buy 3 for 949","upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":9},{"id":609842,"all_offer_price":2949,"description":"","category":"Trousers","color":["grey"],"design":"Solid","display_image":"men-s-grey-oversized-cargo-pants-609842-1707221487-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1278898,"name":"30","stock_status":true},{"id":1278910,"name":"32","stock_status":true},{"id":1278923,"name":"34","stock_status":true},{"id":1278934,"name":"36","stock_status":true},{"id":1278891,"name":"28","stock_status":true}],"stock_status":true,"member_price":1289,"mrp":2949,"name":"Men's Grey Oversized Cargo Pants","custom_name":"Men's Grey Oversized Cargo Pants","offer_type":"best_seller","price":1399,"ptype":"single","subclass":"Trousers","url":"mens-grey-oversized-cargo-trousers-17","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"child_category":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"56% OFF","product_discount":"52% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"COMFORT STRETCH","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":10}],"id":5833,"total_product_count":401,"product_count":10,"total_page_count":41,"seo_head":null,"meta_description":"Bestseller","meta_keywords":"Bestseller","canonical_url":null,"h":"Bestseller","meta_title":"Bestseller","default_sortby":"popular","url":"bestseller","title":"Bestseller","name":"Bestseller","description":"","show_filter":1,"show_quick_filter":false,"quick_filters":{},"breadcrumb_list":[],"desktop_banner":null,"banner":null,"pagination":{"number_of_pages":41,"next_page_available":true,"current_page":0},"tribe_header":null,"hide_plp_price_list":false,"segments":{"main":[],"others":[]},"type":"collection","tracker_data":{"event":"products_list_view","products_list_view":{"url":"bestseller","title":"Bestseller","device":"desktop","page":1,"item":[625704,609849,552880,324701,324702,602544,609644,552888,585798,609842]}},"clevertap_object":{"event":"ProductsList","ec":"ProductsList","pixel_data":{"event_name":"collection_viewed","crto_object":{"event":"viewList","tms":"gtm-criteo-2.0.0","item":[625704,609849,552880,324701,324702,602544,609644,552888,585798,609842]}}},"labels":[],"x_id":"bestseller","plp_version":"v1","contextual_header":"Bestseller","time_to_exe":0.048392980999778956},"urlFilters":{"asArray":[],"asObject":{"sizes":"","design":"","color":"","styles":"","others":""},"asString":" ","asQueryParam":{}},"fixedFilter":false,"productsToDisplay":[{"h":"","position":0},{"id":625704,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"women-s-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt-625704-1699354913-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1312872,"name":"3XL","stock_status":false},{"id":1312876,"name":"4XL","stock_status":true},{"id":1312877,"name":"5XL","stock_status":true},{"id":1312878,"name":"6XL","stock_status":true}],"stock_status":true,"member_price":489,"mrp":1099,"name":"Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt","custom_name":"Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt","offer_type":"best_seller","price":529,"ptype":"single","subclass":"T-Shirt","url":"womens-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"55% OFF","product_discount":"51% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":1},{"id":609849,"all_offer_price":2949,"description":"","category":"Trousers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-cargo-pants-609849-1706080484-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1278900,"name":"30","stock_status":true},{"id":1278911,"name":"32","stock_status":true},{"id":1278927,"name":"34","stock_status":true},{"id":1278930,"name":"36","stock_status":true},{"id":1278892,"name":"28","stock_status":true}],"stock_status":true,"member_price":1099,"mrp":2949,"name":"Men's Black Oversized Cargo Pants","custom_name":"Men's Black Oversized Cargo Pants","offer_type":"best_seller","price":1199,"ptype":"single","subclass":"Trousers","url":"mens-black-oversized-cargo-trousers-11","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"child_category":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"62% OFF","product_discount":"59% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":null,"position":2},{"id":552880,"all_offer_price":2199,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-cargo-joggers-552880-1710766583-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1128709,"name":"S","stock_status":true},{"id":1128712,"name":"M","stock_status":true},{"id":1128715,"name":"L","stock_status":true},{"id":1128718,"name":"XL","stock_status":true},{"id":1128721,"name":"2XL","stock_status":true},{"id":1189896,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":919,"mrp":2199,"name":"Men's Black Oversized Cargo Joggers","custom_name":"Men's Black Oversized Cargo Joggers","offer_type":"best_seller","price":999,"ptype":"single","subclass":"Joggers","url":"mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{"name":"limited edition","color":"#FED454"},"member_discount":"58% OFF","product_discount":"54% OFF","manufacturer_brand":"Bewakoof Air® 1.0","fabric_tag":{"type":"fabric","label":"LIGHTWEIGHT TERRY FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":3},{"id":324701,"all_offer_price":1299,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"jet-black-plus-size-casual-jogger-pants-324701-1655751335-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":619182,"name":"3XL","stock_status":true},{"id":619183,"name":"4XL","stock_status":true},{"id":619184,"name":"5XL","stock_status":false},{"id":619185,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":759,"mrp":1299,"name":"Men's Black Plus Size Casual Joggers","custom_name":"Men's Black Plus Size Casual Joggers","offer_type":"best_seller","price":829,"ptype":"single","subclass":"Joggers","url":"jet-black-casual-jogger-pants","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"41% OFF","product_discount":"36% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"SOFT TERRY COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":4},{"id":324702,"all_offer_price":1299,"description":"","category":"Joggers","color":["blue"],"design":"Solid","display_image":"navy-blue-plus-size-casual-jogger-pants-324702-1655752010-1.jpg","flip_image":"navy-blue-plus-size-casual-jogger-pants-324702-1655752031-5.jpg","parent_category":null,"product_sizes":[{"id":619186,"name":"3XL","stock_status":true},{"id":619187,"name":"4XL","stock_status":true},{"id":619188,"name":"5XL","stock_status":true},{"id":619189,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":879,"mrp":1299,"name":"Men's Blue Plus Size Casual Joggers","custom_name":"Men's Blue Plus Size Casual Joggers","offer_type":"best_seller","price":959,"ptype":"single","subclass":"Joggers","url":"navy-blue-casual-jogger-pants","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"32% OFF","product_discount":"26% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"PREMIUM BLENDED FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":5},{"id":602544,"all_offer_price":1099,"description":"","category":"Vest","color":["gray"],"design":"Graphic Print","display_image":"men-s-grey-we-are-venom-graphic-printed-oversized-vest-602544-1716887285-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1254762,"name":"S","stock_status":true},{"id":1254776,"name":"M","stock_status":true},{"id":1254791,"name":"L","stock_status":true},{"id":1254803,"name":"XL","stock_status":true},{"id":1254812,"name":"2XL","stock_status":true},{"id":1254827,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":459,"mrp":1099,"name":"Men's Grey We Are Venom Graphic Printed Oversized Vest","custom_name":"Men's Grey We Are Venom Graphic Printed Oversized Vest","offer_type":"best_seller","price":499,"ptype":"single","subclass":"Vest","url":"mens-grey-we-are-venom-graphic-printed-oversized-vest","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x marvel","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Vest","id":91,"name":"Vest","url":""},"child_category":{"gender":"Men","subclass":"Vest","id":91,"name":"Vest","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"58% OFF","product_discount":"54% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":6},{"id":609644,"all_offer_price":1299,"description":"","category":"T-Shirt","color":["purple"],"design":"Graphic Print","display_image":"women-s-purple-don-t-care-graphic-print-oversized-t-shirt-609644-1691754544-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1277864,"name":"S","stock_status":false},{"id":1277870,"name":"M","stock_status":true},{"id":1277874,"name":"L","stock_status":true},{"id":1277878,"name":"XL","stock_status":false},{"id":1277882,"name":"2XL","stock_status":false},{"id":1277858,"name":"XS","stock_status":false},{"id":1277885,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1299,"name":"Women's Purple Don't Care Graphic Printed Oversized T-shirt","custom_name":"Women's Purple Don't Care Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-purple-dont-care-graphic-print-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"offer","label":"Few Left","bgColor":"rgba(255, 236, 236, 0.8)","textColor":"#FF2E2E"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"71% OFF","product_discount":"69% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":7},{"id":552888,"all_offer_price":2899,"description":"","category":"Joggers","color":["black"],"design":"Solid","display_image":"men-s-black-oversized-plus-size-cargo-joggers-552888-1698309586-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1128735,"name":"3XL","stock_status":true},{"id":1128738,"name":"4XL","stock_status":false},{"id":1128741,"name":"5XL","stock_status":false},{"id":1128743,"name":"6XL","stock_status":false}],"stock_status":true,"member_price":979,"mrp":2899,"name":"Men's Black Oversized Plus Size Cargo Joggers","custom_name":"Men's Black Oversized Plus Size Cargo Joggers","offer_type":"best_seller","price":1054,"ptype":"single","subclass":"Joggers","url":"mens-black-beauty-solid-oversized-fit-cargo-jogger-men-black-plain","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"child_category":{"gender":"Men","subclass":"Joggers","id":58,"name":"Joggers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"PLUS SIZE","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"flash_sale":true,"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof Air® 1.0","fabric_tag":{"type":"fabric","label":"LIGHTWEIGHT TERRY FABRIC","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":8},{"id":585798,"all_offer_price":1149,"description":"","category":"T-Shirt","color":["purple"],"design":"Graphic Print","display_image":"men-s-purple-hug-it-out-graphic-printed-t-shirt-585798-1709214960-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1213106,"name":"S","stock_status":true},{"id":1213114,"name":"M","stock_status":true},{"id":1213118,"name":"L","stock_status":false},{"id":1213126,"name":"XL","stock_status":true},{"id":1213154,"name":"2XL","stock_status":true},{"id":1213159,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":419,"mrp":1149,"name":"Men's Purple Hug It Out Graphic Printed T-shirt","custom_name":"Men's Purple Hug It Out Graphic Printed T-shirt","offer_type":"best_seller","price":449,"ptype":"single","subclass":"T-Shirt","url":"men-hug-it-out-graphic-printed-regular-t-shirt-51","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"offer","label":"BUY 3 FOR 999","bgColor":"rgba(0, 184, 82, 0.8)","textColor":"#fff"}],"tribe_header":"Buy 3 for 949","upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":9},{"id":609842,"all_offer_price":2949,"description":"","category":"Trousers","color":["grey"],"design":"Solid","display_image":"men-s-grey-oversized-cargo-pants-609842-1707221487-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1278898,"name":"30","stock_status":true},{"id":1278910,"name":"32","stock_status":true},{"id":1278923,"name":"34","stock_status":true},{"id":1278934,"name":"36","stock_status":true},{"id":1278891,"name":"28","stock_status":true}],"stock_status":true,"member_price":1289,"mrp":2949,"name":"Men's Grey Oversized Cargo Pants","custom_name":"Men's Grey Oversized Cargo Pants","offer_type":"best_seller","price":1399,"ptype":"single","subclass":"Trousers","url":"mens-grey-oversized-cargo-trousers-17","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"child_category":{"gender":"Men","subclass":"Trousers","id":64,"name":"Trousers","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.4,"member_discount":"56% OFF","product_discount":"52% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"COMFORT STRETCH","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":10}],"showFlipImage":"","selectedSort":{"key":"popular","display_name":"Popular"},"fixedFilterStyle":{"width":0,"marginTop":0,"top":0,"maxHeight":0},"isSearchPage":false,"productPerPage":50,"totalPages":1,"page":1,"parent_id":null,"brand":null,"title":null,"breadCrumb":[{"name":"Home","url":""},{"name":"Bestseller","url":"bestseller"}],"productMaxHeight":"initial","dealEnd":false,"productListStorage":{},"productWidgetStorage":{},"mcUrl":undefined,"impressionHash":0,"pagination":{"number_of_pages":41,"next_page_available":true,"current_page":0},"pageNo":1,"flashSaleProductData":{},"shelvesProductData":{},"activeLocation":{"pathname":"\u002F","search":"","hash":"","state":undefined,"key":"uoalju"},"labelsMap":{"mobile":{},"desktop":{}},"pageLinks":{"prev":"","next":"https:\u002F\u002Fwww.bewakoof.com\u002Fbestseller\u002Fdefault\u002F2"}},"product":{"showZoomModal":false,"recentProducts":undefined,"recentProductsHp":undefined,"continueShoppingProducts":undefined,"inspiredByWishlistProducts":undefined,"complementoryProducts":undefined,"complementoryPreference":undefined,"exploreProducts":undefined,"similarProducts":undefined,"exploreOffset":0,"similarProductsOffset":0,"oftenBoughtProducts":undefined,"oftenBoughtOffset":0,"oftenBoughtLimit":24,"exploreLimit":24,"similarProductsLimit":10,"expProductsArr":undefined,"product":undefined,"sizesForModify":undefined,"imageUrls":undefined,"showViewSimilar":false,"addToCart":undefined,"showRatingSkeleton":true,"reviewsUpvoted":[],"viewSimilarPopupOpened":false,"ratingsAndReviews":{"tabIdx":0,"selectedSortingOption":undefined,"sorting_options":undefined,"total_reviews":undefined,"total_ratings":undefined,"reviews":[],"rating_aggregations":{},"average_rating":undefined,"reviewAssociatedImages":[],"totalImages":undefined,"title":undefined,"showReviewImageZoomModal":false,"helpful_text":undefined,"recommended_data":undefined,"images_list_length":0,"upvote_icon":undefined,"message":undefined,"filters":undefined,"total_images_text":undefined,"store":{"title":undefined,"storeSelectedSortingOption":undefined,"sorting_options":undefined,"total_reviews":undefined,"total_ratings":undefined,"storeReviews":[],"rating_aggregations":{},"average_rating":undefined,"reviewAssociatedImages":[],"totalImages":undefined,"helpful_text":undefined,"images_list_length":0,"recommended_data":undefined,"upvote_icon":undefined,"filters":undefined,"total_images_text":undefined}},"local":{"bagBtnText":"ADD TO BAG","showDescriptionDesk":{},"showDescriptionMob":{},"productColorName":"","selectedSize":"","quantity":1,"product":undefined,"animateSizes":false,"showSelectSizeError":false,"showLoyaltyModal":false,"sizeChartModal":undefined,"pincode":"","shipArea":"","currentProdColor":{},"colorsArray":[],"unitsInStock":0},"svOfferNudge":undefined,"countryTransitionScreen":false,"takeOffText":false,"vdSnackbar":undefined,"tribeMembership":undefined,"autoAddTribe":undefined,"isOfferScrollEnabled":false},"unsubscribe":{"unsubscriptionReasons":null,"unsubscribed":null},"productRating":{"order_details":[],"selectedOrderId":undefined,"ratingSubmitted":undefined,"ratingSubmitResponse":undefined,"reviewSubmitted":undefined,"reviewSubmitResponce":undefined,"imagesUploaded":[],"image_urls":undefined,"toast_message":undefined,"submit_review_content":undefined,"reviewSubmittedIds":[],"placeholders":undefined,"no_pending_review_image":undefined,"no_pending_review_heading":undefined,"no_pending_review_subheading":undefined,"credit_message":undefined,"upload_images_text":undefined,"already_rated_first_text":undefined,"already_rated_second_text":undefined,"already_rated_heading":undefined},"statics":{"addresssubtype":undefined,"static":undefined,"otherReason":undefined},"locations":{"countries":[],"location":undefined,"invalidLocation":false},"address":{"addresses":undefined,"updateaddressdetails":undefined,"addaddressdetails":undefined,"pincodeError":undefined,"selectedCheckoutAddress":{},"payment_options":[],"save_cards":[],"addressErrors":false,"recentlyPaymentOption":undefined,"payment_offers":undefined,"updatedAddressId":undefined},"cart":{"cart":undefined,"wallet_applied":false,"added_to_cart":undefined,"showsize":false,"showqty":false,"showmobilewishlist":false,"opencouponmodal":false,"couponresponse":undefined,"gift_card_response":undefined,"cards":undefined,"showmobiletc":false,"count":0,"intlShippingCharges":undefined,"hpOfferNudge":undefined,"coupons":[],"redirectToPayment":undefined,"checkDeliveryCart":undefined,"selectedAddressId":undefined,"ec_remove_response":undefined,"tribeCoupons":undefined},"search":{},"wishlist":{"wishlist":undefined,"heartBeat":false,"count":0,"filteredWishlist":undefined},"wishlist_hp":{"wishlist":undefined},"checkoutpayment":{"idle":true,"txnCall":undefined,"identifyCard":undefined,"order_create":undefined,"showLeftSection":false,"selectedPayment":undefined,"paymentChecked":undefined,"showCardForm":false,"paymentFailed":null,"showOtpPopUp":false,"walletId":null,"linkFailed":false,"fetchPaymentOptions":false,"selectedAddressId":null,"walletType":null,"vpaVerified":false,"scrollToPayMethod":undefined},"loader":{"title":"Please wait..","activeLoaders":0},"toast":{"duration":2000,"type":"default","title":"","visible":false},"footer":{"showLoader":true,"productGridObj":undefined,"local":{"toggleDropdown":{"0":false,"1":false}}},"header":{"selectMenu":"","showSearch":false,"isOpen":false,"selectAccountMenu":false,"showSearchDrpoDown":false,"showSideNav":false},"user":{"user":undefined,"isMember":false,"isNewUser":true,"openChangePasswordModal":undefined},"error":{"is404":false,"is500":false},"common":{"isMobile":false,"isBot":false,"deviceType":null,"appVersion":null,"bshotsAppVersion":null,"isAndroid":false,"isIos":false,"landingLocation":null,"isPhonePeSwitch":false,"store":{"android":"https:\u002F\u002Fplay.google.com\u002Fstore\u002Fapps\u002Fdetails?id=com.bewakoof.bewakoof&hl=en","ios":"https:\u002F\u002Fitunes.apple.com\u002Fin\u002Fapp\u002Fbewakoof\u002Fid1100190514?mt=8"},"abId":null,"isHeaderVisible":true,"isId2cAppVerSupported":false,"experiments":{"plp":{"experiment_id":"plp_score_fake","bucket_id":"variant2__plp_score2"}},"expTrkId":"aea65127-8f28-40cf-8dc6-41b1ea50bb63","isTablet":false,"isDesktop":true,"microApp":"","isBShotsApp":null,"appName":null},"bankdetail":{"bankdetail":undefined,"isValiduser":undefined},"return_order":{"return_order":{},"pickup_details":undefined,"selected_return_address":undefined,"isPickupavaliable":false,"receiptupload":undefined,"saveImage":undefined,"deleteImage":undefined,"returnStep":1,"selectedReason":undefined,"neftDetails":undefined,"upiDetails":undefined,"sizeOptions":[],"optinalRemark":"","showReturnModal":false,"verifyAccResponse":"","showAccValidation":false},"myaccount":{"order_modify":false,"showtab":"change password","order_modified_msg":undefined,"confirm_modify_request":undefined,"giftcode_response":undefined,"change_password_response":undefined,"remove_address":undefined,"open_verify_mobile_modal":false,"verify_otp":undefined,"cancelled_details":null,"cancelOrderError":null,"cancelSuccess":false,"cancelFailure":false,"updateOrder":null,"updateOrderSuccess":null,"updateOrderError":null,"isFirstLoad":true,"get_orders":{"orders":[],"total_count":0,"referral":null,"wallet_inactive_message":null}},"mypaymentoptions":{"my_pay_options":undefined},"contactus":{"contactUs":undefined,"level2":undefined,"level1":"Orders, Delivery & Payment","contactUsResponse":undefined,"data":[],"searchResult":undefined,"defaultComponent":"hns","match":undefined,"currentQuery":undefined,"feedbackType":{},"callBackRespose":undefined},"campaign":{"campaign_user_details":undefined,"registered_users_count":undefined},"career":{"uploadForm":undefined,"careerJson":{},"selectedJob":{},"openingList":{}},"pageBuilder":{"componentPositionForEdit":"","data":[]},"panelAppObject":{"list":[],"saving":false,"details":null,"diffOptionsList":[],"diff1Details":null,"diff2Details":null,"pages":{},"editorPage":{},"editorPageDevice":"desktop"},"scheduler":{"scheduledTasks":[],"tasks":[],"selectedTask":null,"record":[]},"voting":{"offset":0,"limit":100,"voting":[],"voteData":undefined},"mobileDevice":{"selectedBrand":"","selectedDevice":"","selectedCoverType":"","toggleQuickFilter":true,"modelUrl":"","coverUrl":"","onFirstLoad":true},"navigation":{"navigationTabs":[],"currentTab":null},"orderExchange":{"exchange_order":{},"selected_exchange_address":undefined,"pickup_details":undefined,"isPickupavaliable":false,"selectedReasonExchange":undefined,"selectedSizeExchange":{}},"bestSeller":{"bestSellerProducts":undefined},"selectedCountry":{"accessLocationResponse":undefined,"countryConfig":null},"tribeReferral":{"response":null,"pageContentResp":null,"claimMembershipContentResp":null,"claimRewardContentResp":null,"tribeReferralHistory":null},"quickFilters":{"clearDirectFilter":false,"directFilter":false,"customFilters":[],"activeFilterList":[]},"customProduct":{"stepsList":undefined,"setp":undefined,"canvas":undefined,"uploadedImage":undefined,"isModified":undefined,"activeProduct":{"pid":undefined,"size":undefined,"color":undefined,"did":null},"designData":{"frontPreview":undefined,"backPreview":undefined,"frontCanvasImage":undefined,"backCanvasImage":undefined,"frontCanvasJson":undefined,"backCanvasJson":undefined},"productColors":undefined,"pcDesignerData":undefined,"saveProceedAct":undefined,"pcAddedToBag":undefined,"isDesignLoaded":undefined,"aiPdpData":undefined},"notify":{"notifyData":undefined,"homePageNotify":undefined,"backInStock":undefined,"deleteItem":undefined},"tribe":{"isTribeToggleEnabled":false,"showJoinTribeNudge":false,"isTribeAlreadyAdded":false,"showTribeAddedView":false,"tribeViewVisibility":false,"tribeNameA2C":null},"aiCanvas":{"imagesData":[],"imageSelectionPage":false,"aiAttemptsLeft":undefined,"aiButtonText":"ADD TO BAG"}}
</script>
<script defer="" src="https://cdn.polyfill.io/v2/polyfill.min.js">
</script>
<script defer="" src="https://static.bewakoof.com/www/app/vendors-info-main-myaccount-panel.d077b53d632808a7ed5d.js">
</script>
<script defer="" src="https://static.bewakoof.com/www/app/vendors-info-main-panel.0df01101e74e98653fc5.js">
</script>
<script defer="" src="https://static.bewakoof.com/www/app/main.7589bea6834561202e15.js">
</script>
</body>
In [44]:
names=soup.find_all('div', class_='productNaming bkf-ellipsis', limit=10)
n_list=[name.text for name in names]
n_list
Out[44]:
["Bewakoof®Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt", "Bewakoof®Men's Black Oversized Cargo Pants", "Bewakoof Air® 1.0Men's Black Oversized Cargo Joggers", "Bewakoof®Men's Black Plus Size Casual Joggers", "Bewakoof®Men's Blue Plus Size Casual Joggers", "bewakoof x marvelMen's Grey We Are Venom Graphic Printed Oversized Vest", "bewakoof x garfieldWomen's Purple Don't Care Graphic Printed Oversized T-shirt", "Bewakoof Air® 1.0Men's Black Oversized Plus Size Cargo Joggers", "bewakoof x garfieldMen's Purple Hug It Out Graphic Printed T-shirt", "Bewakoof®Men's Grey Oversized Cargo Pants"]
In [49]:
prices=soup.find_all('div', class_='discountedPriceText clr-p-black false', limit=10)
p_list=[price.text for price in prices]
p_list
Out[49]:
['₹529', '₹1199', '₹999', '₹829', '₹959', '₹499', '₹399', '₹1054', '₹449', '₹1399']
In [58]:
img_url=soup.find_all('div', class_='productImg', limit=10)
img_url
Out[58]:
[<div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 247, 247)"><img alt="Shop Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-red-bonjour-paris-graphic-printed-boyfriend-plus-size-t-shirt-625704-1699354913-1.jpg" title="Women's Red Bonjour Paris Graphic Printed Plus Size Boyfriend T-shirt-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 248, 248)"><img alt="Shop Men's Black Oversized Cargo Pants-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-cargo-pants-609849-1706080484-1.jpg" title="Men's Black Oversized Cargo Pants-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 249, 245)"><img alt="Shop Men's Black Oversized Cargo Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-cargo-joggers-552880-1710766583-1.jpg" title="Men's Black Oversized Cargo Joggers-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 249, 248)"><img alt="Shop Men's Black Plus Size Casual Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/jet-black-plus-size-casual-jogger-pants-324701-1655751335-1.jpg" title="Men's Black Plus Size Casual Joggers-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 248, 248)"><img alt="Shop Men's Grey We Are Venom Graphic Printed Oversized Vest-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-grey-we-are-venom-graphic-printed-oversized-vest-602544-1716887285-1.jpg" title="Men's Grey We Are Venom Graphic Printed Oversized Vest-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 245, 247)"><img alt="Shop Women's Purple Don't Care Graphic Printed Oversized T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-purple-don-t-care-graphic-print-oversized-t-shirt-609644-1691754544-1.jpg" title="Women's Purple Don't Care Graphic Printed Oversized T-shirt-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 249)"><img alt="Shop Men's Black Oversized Plus Size Cargo Joggers-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-oversized-plus-size-cargo-joggers-552888-1698309586-1.jpg" title="Men's Black Oversized Plus Size Cargo Joggers-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 246, 249)"><img alt="Shop Men's Purple Hug It Out Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-purple-hug-it-out-graphic-printed-t-shirt-585798-1709214960-1.jpg" title="Men's Purple Hug It Out Graphic Printed T-shirt-Front Bewakoof" width="100%"/></div>, <div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 248)"><img alt="Shop Men's Grey Oversized Cargo Pants-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-grey-oversized-cargo-pants-609842-1707221487-1.jpg" title="Men's Grey Oversized Cargo Pants-Front Bewakoof" width="100%"/></div>]
In [70]:
import requests
from bs4 import BeautifulSoup
r=requests.get('https://www.cnbc.com/world/?region=world and scrapa', headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36'})
print(r)
<Response [200]>
In [71]:
soup=BeautifulSoup(r.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<html itemscope="" itemtype="https://schema.org/WebPage" lang="en" prefix="og=https://ogp.me/ns#">
<head>
<meta content="max-image-preview:large" name="robots"/>
<meta content="telephone=no" name="format-detection"/>
<link href="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/favicon.ico" rel="icon" type="image/x-icon"/>
<style type="text/css">
@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;-webkit-hyphens:auto;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#ce2b2b;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioCalendarEventFields-eventLabel{font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{box-shadow:0 2px #fff}.PortfolioCalendarEventFields-fieldText:first-child{padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;padding-left:5px}.PortfolioCalendarEventDetails-header{font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioHeader-container{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioHeader-pageHeaderContainer{margin-top:30px}.PortfolioHeader-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioHeader-boldTextTitle{font-size:28px;font-weight:800;letter-spacing:-.5px;line-height:32px}.PortfolioHeader-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioHeader-ctaLinkContainer:hover .PortfolioHeader-chevronDownImage{fill:#fcb700}.PortfolioHeader-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioHeader-chevronDownImage{fill:#0053cf}.InvestingClubCtaLink-cta{align-items:center;display:flex;flex-direction:row;justify-content:flex-end;padding:0}.InvestingClubCtaLink-ctaComponentMargin{margin-bottom:40px;margin-top:40px}.InvestingClubCtaLink-ctaLink{align-items:center;display:flex;flex-direction:row;gap:12px;justify-content:flex-end;white-space:nowrap}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{color:#fcb700;text-decoration:underline}@media (max-width:759px){.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{text-decoration:unset}}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-chevronDownImage{background-color:#fcb700}.InvestingClubCtaLink-ctaTitle{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:22px;white-space:nowrap}@media (max-width:759px){.InvestingClubCtaLink-ctaTitle{font-size:16px;line-height:20px}}.InvestingClubCtaLink-dashboardCtaLink{font-size:16px;line-height:20px}.InvestingClubCtaLink-chevronDownImage{background-color:#005594;height:24px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:24px}.InvestingClubHeader-sectionDivider{display:flex;flex-direction:column;width:100%}.InvestingClubHeader-smallSpan{background-color:#0496ff;display:block;height:6px;width:110px}@media (max-width:360px){.InvestingClubHeader-smallSpan{width:88px}}.InvestingClubHeader-border{background-color:#747474;display:block;height:1px;width:100%}.InvestingClubHeader-sectionHeader{display:flex;flex-direction:row;justify-content:space-between;margin:10px 0 20px}@media (max-width:759px){.InvestingClubHeader-sectionHeader{display:block}}.InvestingClubHeader-title{color:#071d39;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:39px;text-transform:uppercase}@media (min-width:760px){.InvestingClubHeader-title{font-size:24px}}@media (min-width:1020px){.InvestingClubHeader-title{font-size:32px}}.SectionNewsWithFilters-sectionNewsWithFiltersContainer{margin:10px 0 20px}.SectionNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:0 0 20px;overflow:auto}.SectionNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.SectionNewsWithFilters-filterButton:last-child{margin-right:0}.SectionNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.SectionNewsWithFilters-filterButtonActive{background-color:#002f6c}.SectionNewsWithFilters-filterButtonActive span{color:#fff}.SectionNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:column;gap:20px}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer{flex-direction:row}.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:1010px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:820px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:620px}}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:675px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:720px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:495px}}@media (min-width:1340px){.SectionNewsWithFilters-firstAsset{width:81%}}.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:360px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:760px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:30px;line-height:36px}}@media (max-width:759px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-descriptionContainer{width:100%}}@media (min-width:1340px){.SectionNewsWithFilters-firstAssetWithThumbnails{width:50%!important}}.SectionNewsWithFilters-remainingAssets{display:flex;flex-direction:row;gap:20px;overflow-x:auto;overflow-y:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets{flex-direction:column;margin-bottom:20px;margin-top:0;width:38%}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-right:.5px dashed #bababa;padding-right:5px}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-right:none;padding-right:none}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-bottom:.5px dashed #bababa;border-right:none;padding-bottom:15px;padding-right:none}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-bottom:none}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails{width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-thumbnailWrapper{padding-bottom:28.125%!important;width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-content{display:flex;flex-basis:100%;flex-direction:row;width:100%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{border-bottom:.5px dashed #bababa;height:170px;justify-content:space-between;padding-bottom:5px;position:relative;width:54%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:1020px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:18px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:24px}}.SectionNewsWithFilters-content{align-items:flex-start;display:flex;flex-basis:100%;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.SectionNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.SectionNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.SectionNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.SectionNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.SectionNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.SectionNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:12px;padding:0}@media (max-width:759px){.SectionNewsWithFilters-descriptionContainer{width:200px}}.SectionNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.SectionNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.SectionNewsWithFilters-tag:hover{color:#fcb700}.SectionNewsWithFilters-articleTitle{color:#071d39;font-weight:600;letter-spacing:.03px;overflow:hidden;overflow-wrap:anywhere}@media (min-width:360px){.SectionNewsWithFilters-articleTitle{font-size:18px;line-height:22px}}@media (min-width:1020px){.SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}.SectionNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.SectionNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.SectionNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.SectionNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.SectionNewsWithFilters-author:after{content:","}.SectionNewsWithFilters-author:nth-last-child(2):after{content:""}.SectionNewsWithFilters-author:hover{color:#fcb700}.SectionNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNewsWithFilters-sectionNewsWithFiltersContainer{border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:12px}.PortfolioNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:20px 0;overflow:auto}.PortfolioNewsWithFilters-filterButton{background-color:#fff;border:1px solid #071d39;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.PortfolioNewsWithFilters-filterButton:last-child{margin-right:0}.PortfolioNewsWithFilters-filterButton span{color:#071d39;display:block;font-size:12px;font-weight:400;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.PortfolioNewsWithFilters-filterButtonActive{background-color:#071d39}.PortfolioNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:row;gap:20px}@media (min-width:1340px){.PortfolioNewsWithFilters-firstAsset{width:50%}}.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;font-size:24px;line-height:28px;max-width:100%;overflow:hidden}@media (max-width:759px){.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-descriptionContainer{width:100%}}.PortfolioNewsWithFilters-remainingAssets{display:flex;flex-direction:column;overflow-x:auto;overflow-y:hidden}@media (max-width:1339px){.PortfolioNewsWithFilters-remainingAssets{gap:20px}}@media (min-width:760px){.PortfolioNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets{margin-bottom:20px;margin-top:0;width:48%}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-right:5px}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content:last-child{padding-right:none}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-bottom:15px;padding-right:none}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;font-size:18px;line-height:22px;max-width:100%;overflow:hidden}.PortfolioNewsWithFilters-content{align-items:flex-start;display:flex;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.PortfolioNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.PortfolioNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.PortfolioNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.PortfolioNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.PortfolioNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.PortfolioNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:10px;padding:0}@media (max-width:759px){.PortfolioNewsWithFilters-descriptionContainer{width:200px}}.PortfolioNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.PortfolioNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNewsWithFilters-tag:hover{color:#fcb700}.PortfolioNewsWithFilters-articleTitle{color:#071d39;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px;overflow:hidden;overflow-wrap:anywhere}.PortfolioNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.PortfolioNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:10px;justify-content:flex-end;padding:0}.PortfolioNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.PortfolioNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.PortfolioNewsWithFilters-author:after{content:","}.PortfolioNewsWithFilters-author:nth-last-child(2):after{content:""}.PortfolioNewsWithFilters-author:hover{color:#fcb700}.PortfolioNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioMovers-container{border:.5px solid #bababa;border-radius:4px;margin-bottom:30px;padding:12px;width:100%}.PortfolioMovers-header{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioMovers-date{color:#747474;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;white-space:normal;width:100%}.PortfolioMovers-tableHeader{color:#747474;font-size:14px;font-weight:600;line-height:18px;padding-bottom:20px;padding-top:15px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.PortfolioMovers-dataContainer{padding:8px 27px}}@media (min-width:1020px){.PortfolioMovers-dataContainer{padding:8px}}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-triangle-down,.PortfolioMovers-triangle-up{border-left:4px solid #0000;border-right:4px solid #0000;height:0;width:0}.PortfolioMovers-triangle-up{border-bottom:8px solid #008456}.PortfolioMovers-triangle-down{border-top:8px solid #ce2b2b}.PortfolioMovers-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteGain{font-size:12px;line-height:10px}}.PortfolioMovers-symbolName{color:#171717;display:flex;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-dropdownStyles{left:5px!important;width:150px!important}}.PortfolioMovers-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteDecline{font-size:12px;line-height:10px}}.PortfolioMovers-quoteDecline span:first-child,.PortfolioMovers-quoteGain span:first-child{padding-left:8px;padding-right:5px}.PortfolioMovers-lastPrice{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendarEvent-symbol{display:inline-block;font-weight:600;padding:0 10px;width:80px}.PortfolioCalendarEvent-label{overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:earningsCalendar;border:.5px solid #bababa;border-radius:4px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:10px;font-weight:600;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container earningsCalendar (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#005594;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#002f6c}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableHeaderContent-headerRow .TableHeaderContent-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableBodyContent-contentCell{border:0;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:0 4px 16px 0 #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}@media (max-width:1019px){.CustomColumnsTable-container{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-container{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}.PortfolioHoldingsTable-tableContainer{margin-bottom:30px}.PortfolioLinkAccountButton-linkAccountButton{background-color:blue;border-radius:8px;color:#fff;cursor:pointer;font-size:16px;line-height:20px;padding:14px;width:200px}.PortfolioList-listContainer{display:flex;gap:15px;margin-bottom:20px;margin-top:20px;width:100%}.PortfolioList-aggregateContainer{background:#fff;border:1px solid grey;border-radius:8px;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:10px;max-width:350px;padding:12px;width:100%}.PortfolioList-portfolioCardContainer{background:#fff;border:1px solid grey;border-radius:8px;cursor:pointer;display:block;height:100px;margin-bottom:10px;padding:10px;text-align:left;width:350px}.PortfolioList-aggregateHeader{font-size:20px;font-weight:600px;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioList-aggmarketValue,.PortfolioList-aggmarketValueText{display:flex;flex-wrap:wrap;justify-content:flex-end}.PortfolioList-portfolioHeader{font-size:20px;padding-bottom:16px}.PortfolioList-portfolioValue{font-size:18px;line-height:22px}.PortfolioList-portfolioChangePercent{float:right;font-size:14px;line-height:18px}.PortfolioList-portfolioChangePercentText{float:right}.PortfolioList-marketRow{padding-bottom:4px}.PortfolioList-portfolioChangePercentText,.PortfolioList-portfoliomarketValueText{font-size:14px;line-height:18px}.PortfolioList-aggmarketValue{font-size:28px;font-weight:500;letter-spacing:1.1px;line-height:36px}.PortfolioList-aggmarketValueText{font-size:14px;letter-spacing:.03px;line-height:16px;padding-bottom:30px}.PortfolioList-aggChangePercent{font-size:12px;line-height:14px;padding-bottom:4px}.PortfolioList-aggChangePercentText{font-size:12px;line-height:14px;padding-bottom:8px}.PortfolioOverview-container{background:#f2f2f2;border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:30px}.PortfolioOverview-headerContainer{display:block;position:relative}.PortfolioOverview-header{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:700;letter-spacing:.03px;line-height:26px;padding-right:40px}.PortfolioOverview-disclaimerText{display:inline-block;font-size:10px;line-height:14px}.PortfolioOverview-timeContainer{font-size:16px;line-height:20px;margin-top:15px}.PortfolioOverview-linkButtonContainer{height:50px}.PortfolioOverview-floatRight{float:right}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PortfolioContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PortfolioContainer-col-9.PortfolioContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}@media (max-width:1019px){.PortfolioPage-container{padding:0 30px}}@media (max-width:759px){.PortfolioPage-container{padding:0 20px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;margin-top:30px;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:2}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}.FullEpisodePlayer-PlayButton{position:relative}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:0;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:1px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}.EpisodePlayListItem-activeEpisodeContainer{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{color:#fff;font-size:10px;font-weight:700;line-height:16px;padding-left:8px;text-align:left}.FullEpisodeVideoList-container{height:500px;margin-bottom:20px;margin-top:20px;overflow-y:scroll}.ShowsListDropdown-showContainer{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:20px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{background:#fff;border-radius:18px;display:flex;padding:8px 16px 8px 12px;text-align:left}.ShowsListDropdown-showName{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;line-height:18px;text-transform:uppercase}.ShowsListDropdown-chevron{border-style:solid;border-width:.25em .25em 0 0;bottom:-2px;height:.7em;left:6px;position:relative;transform:rotate(135deg);vertical-align:top;width:.7em}.ShowsListDropdown-chevronOpen{margin-top:3px;transform:rotate(315deg)}.ShowsListDropdown-dropdownContainer{background:#000;box-shadow:0 0 20px #030;padding:10px;position:absolute;top:61px;width:300px;z-index:999}.ShowsListDropdown-dropdownItem{border-bottom:1px solid #ccc;cursor:pointer;font-size:16px;padding:8px}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;text-align:justify;width:100%}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/726b9cd5c1192cf89091.svg);background-repeat:no-repeat;display:inline-block;height:11px;margin-right:8px;position:relative;width:11px}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodePage-container{min-height:500px}@media (min-width:1020px){.FullEpisodePage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodePage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodePage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodePage-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodePage-container{padding:0 30px}}@media (max-width:759px){.FullEpisodePage-container{margin-top:-1px;padding:0 20px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px 10px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(6,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:2}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;top:0;z-index:100}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:#00081a;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#9e9e9e;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:17px;transition:color .2s ease-in;white-space:nowrap;width:98px;z-index:1}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:1px solid #f8f8f8;color:#f8f8f8}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasisIcon{fill:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-rightContainer #ProPlayerTabs-audioOnlyLink>.ProPlayerTabs-withEmphasis{justify-content:flex-start}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{background-color:#000;display:flex;flex-direction:column;height:100%}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVPage-container{min-height:500px}@media (min-width:1020px){.LiveTVPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVPage-container{max-width:1290px}}@media (max-width:1019px){.LiveTVPage-container{padding:0 30px}}@media (max-width:759px){.LiveTVPage-container{margin-top:-1px;padding:0 20px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
@charset "UTF-8";@keyframes countdown-clock-slide-in{0%{height:0}to{height:42px}}@keyframes countdown-clock-slide-out{0%{height:42px}to{height:0}}.countdown-clock-container{align-items:center;animation:countdown-clock-slide-in .5s forwards;-webkit-animation:countdown-clock-slide-in .5s forwards;background-color:#000;color:#fff;display:flex;font-size:12px;font-weight:700;height:42px;justify-content:flex-end;letter-spacing:1px;line-height:15px;margin:0 auto;max-width:960px;position:relative;top:0;width:100%}@media (min-width:1340px){.countdown-clock-container{max-width:1290px}}.countdown-clock-gridWrapper{margin:0 auto;max-width:960px;width:100%}@media (min-width:1340px){.countdown-clock-gridWrapper{max-width:1290px}}.countdown-clock-contentWrapper{float:right;padding-top:2px}.countdown-clock-hidden{animation:countdown-clock-slide-out .5s forwards;-webkit-animation:countdown-clock-slide-out .5s forwards;height:0}.countdown-clock-marketLabel{color:#fcb700;font-weight:600;padding-right:10px;text-transform:uppercase}.countdown-clock-sponsor{border-left:1px solid #ffffff8a;color:#ffffff8a;display:inline;font-weight:600;margin:0 0 0 20px;padding-left:20px;text-transform:uppercase}.countdown-clock-sponsor img{display:inline-block;height:31px;margin-left:5px;margin-top:-3px;max-width:100px;position:relative;vertical-align:middle}@media (-ms-high-contrast:active),screen and (-ms-high-contrast:none){.countdown-clock-sponsor img{margin-top:-7px}}.countdown-clock-sponsorText{position:relative;top:0}.CountdownClock-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.CountdownClock-countdownContainer{background-color:#000}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ProgressBar-container{background:#e8e8e8;height:3px;left:0;position:absolute;top:0;width:100vw}@media (min-width:760px){.ProgressBar-container{bottom:0;top:auto}}@media (min-width:1020px){.ProgressBar-container{bottom:0}}.ProgressBar-hiddenContainer{opacity:0;pointer-events:none}.ProgressBar-innerProgress{background:#fcb700;height:3px;transition:background 1s;width:0}.ProgressBar-innerProgress20{background:#f26f20}.ProgressBar-innerProgress40{background:#645fa9}.ProgressBar-innerProgress60{background:#0088cf}.ProgressBar-innerProgress80{background:#0cb04c}.ProgressBar-makeit{background:#6258ff}.ProgressBar-select{background:#0477c9}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.InvestingClubPill-investingClubPillLink{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.BreakingNews-container{background:#ce2b2b;color:#fff;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.BreakingNews-container .BreakingNews-closeButton,.BreakingNews-container .BreakingNews-heading{z-index:3}.BreakingNews-container .BreakingNews-article{z-index:1}.BreakingNews-container.BreakingNews-intro:not(.BreakingNews-stickyContainer):before{animation:BreakingNews-SlideInFull 2s ease;animation-iteration-count:1;background:linear-gradient(90deg,#fff0 0,#fc3c46 30%,#fc3c46 70%,#fff0);background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}@media (max-width:759px){.BreakingNews-stickyContainer{background:#ce2b2b;color:#fff;height:40px;left:20px;line-height:40px;overflow-y:visible;position:fixed;top:8px;width:174px;z-index:990}.BreakingNews-stickyContainer .BreakingNews-heading{margin:0}.BreakingNews-stickyContainer .BreakingNews-newsText{display:inline-block}.BreakingNews-stickyContainer:before{border-bottom:4px solid #ce2b2b;border-left:4px solid #0000;border-right:4px solid #0000;content:"";font-size:0;height:0;left:8px;line-height:0px;position:absolute;top:-4px;width:0}.BreakingNews-stickyContainer .BreakingNews-wrapper{height:40px}.BreakingNews-stickyContainer .BreakingNews-article,.BreakingNews-stickyContainer .BreakingNews-closeButton{display:none}.BreakingNews-stickyContainer.BreakingNews-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.BreakingNews-gridContainer{height:40px}@media (min-width:1020px){.BreakingNews-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-gridContainer{max-width:1290px}}.BreakingNews-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.BreakingNews-heading{color:#fff;font-size:16px;font-weight:800;margin-right:20px}.BreakingNews-heading:hover{color:#fff}.BreakingNews-newsText{display:none}.BreakingNews-titleContainer{position:relative}.BreakingNews-titleContainer .BreakingNews-investingClubPill,.BreakingNews-titleContainer .BreakingNews-proPill{bottom:-2px}.BreakingNews-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 130px)}.BreakingNews-article:after{background:linear-gradient(270deg,#ce2b2b,#ce2b2b00);content:"";height:100%;position:absolute;right:0;top:0;width:80px}.BreakingNews-article:focus,.BreakingNews-article:hover{color:#fff;text-decoration:underline}.BreakingNews-marquee{animation:BreakingNews-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes BreakingNews-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.BreakingNews-closeButton{color:#fff;font-size:16px;position:relative;right:20px;top:50%}@media (min-width:1020px){.BreakingNews-closeButton{right:2px}}.BreakingNews-adSlot{align-items:center;display:flex;flex-direction:row;position:relative}.BreakingNews-adContainer{bottom:4px;margin-left:64px;position:relative;right:42px}.BreakingNews-sponsor{color:#424242;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:15px;min-width:-moz-fit-content;min-width:fit-content;position:relative}@media (max-width:759px){.BreakingNews-sponsor{font-size:11px;line-height:13px}}.BreakingNews-adContainer:empty .BreakingNews-sponsor{display:none}.LiveAlerts-container{background:#171717;color:#fff;height:40px;line-height:40px;overflow:hidden;position:relative;transition:none;width:100%;z-index:-1}@media screen and (max-width:500px){.LiveAlerts-container{height:80px}}@media (max-width:759px){.LiveAlerts-stickyContainer{height:0!important;transition:transform .3s,height .3s}.LiveAlerts-stickyContainer .LiveAlerts-gridContainer{transform:translateY(-40px);transition:transform .3s}}@media screen and (max-width:500px){.LiveAlerts-containerAdNotLoaded{height:40px}}.LiveAlerts-gridContainer{height:40px;transition:none}@media (min-width:1020px){.LiveAlerts-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-gridContainer{max-width:1290px}}.LiveAlerts-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.LiveAlerts-heading{color:#fff;font-size:16px;font-weight:800;margin-right:49px}.LiveAlerts-heading:hover{color:#fff}.LiveAlerts-newsText{display:none}.LiveAlerts-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 330px)}.LiveAlerts-article:after{background:linear-gradient(270deg,#171717,#0000);content:"";height:100%;position:absolute;right:0;top:0;width:80px}.LiveAlerts-article:focus,.LiveAlerts-article:hover{color:#fff;text-decoration:underline}@media screen and (max-width:500px){.LiveAlerts-article{width:calc(100% - 130px)}}.LiveAlerts-marquee{animation:LiveAlerts-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes LiveAlerts-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.LiveAlerts-closeButton{color:#fff;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.LiveAlerts-closeButton{right:2px}}.LiveAlerts-liveIcon{font-size:14px;margin-right:5px;position:relative;top:1px}.LiveAlerts-adSlot{display:flex;flex-direction:row;position:relative}@media screen and (max-width:500px){.LiveAlerts-adSlot{position:absolute;top:50px}}.LiveAlerts-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:-5px;width:100px}@media (min-width:760px){.LiveAlerts-adContainer{margin-left:15px}}@media screen and (max-width:500px){.LiveAlerts-adContainer{left:155px;top:0}}@media screen and (max-width:759px) and (min-width:500px){.LiveAlerts-adContainer{left:88px;top:-5px}}.LiveAlerts-sponsor{color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:absolute;top:13px;width:100px}@media (min-width:760px){.LiveAlerts-sponsor{font-size:12px;line-height:15px}}@media screen and (max-width:500px){.LiveAlerts-sponsor{margin-left:75px;top:0}}.LiveAlerts-adContainer:empty .LiveAlerts-sponsor{display:none}.EditionMenu-chevronLeft{border:2px solid #0000;border-radius:100px;box-sizing:border-box;display:block;position:relative}.EditionMenu-chevronLeft:after{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;color:#071d39;content:"";display:block;height:8px;left:6px;position:absolute;transform:rotate(45deg);width:8px}.EditionMenu-chevronRight{border-radius:100px;box-sizing:border-box;display:block}.EditionMenu-chevronRight:after{border-bottom:2px solid;border-right:2px solid;box-sizing:border-box;color:#0477c9;content:"";display:block;height:8px;transform:rotate(-45deg);width:8px}.EditionMenu-select-menu .EditionMenu-sublinks{display:block!important;margin-left:0!important}.EditionMenu-featuredMenuButton{color:#e3e3e3;font-size:11px;font-weight:600;letter-spacing:1px;padding-bottom:1px;position:relative;text-transform:uppercase;top:0;transition:border-bottom .5s linear}@media (min-width:360px){.EditionMenu-featuredMenuButton{margin-right:7px}}.EditionMenu-isExpanded{padding-bottom:1px}.EditionMenu-featuredListItem{border-bottom:2px solid #f3f5f7;display:block;position:relative;z-index:600}.EditionMenu-featuredListItem a{padding:11px 13.5px 11px 20px}.EditionMenu-featuredListItem:hover{background-color:#f3f5f7;color:#005594;font-weight:700}.EditionMenu-featuredListItem:last-child{margin-left:0!important;padding:0!important}.EditionMenu-featuredSubLink{align-items:center;color:#005594!important;display:flex;font-size:12px;font-weight:500;justify-content:space-between;letter-spacing:.85px;line-height:14px;margin-right:4px;text-transform:uppercase}.EditionMenu-featuredSubLink:hover{color:#005594;font-weight:700}.EditionMenu-featuredSubLink p{margin:0}.EditionMenu-subMenuLink{text-transform:capitalize}.EditionMenu-featuredSubLink.EditionMenu-subMenuLink a{font-size:14px;line-height:16px;padding:11px 0;white-space:normal}.EditionMenu-featuredSubLinks{background:#fff;box-shadow:0 0 6px #0000002e;display:block!important;font-size:12px;left:29px;margin:0!important;opacity:0;padding:0;position:absolute;top:11px;transition:visibility .5s,opacity .5s linear;visibility:hidden}.EditionMenu-featuredSubLinks li{width:203px}@media (min-width:1020px){.EditionMenu-featuredSubLinks{left:15px}}@media (min-width:1340px){.EditionMenu-featuredSubLinks{left:29px}}.EditionMenu-expandedSubLinks{opacity:1;visibility:visible}.EditionMenu-featuredSubLinks.EditionMenu-subMenu{margin-left:48px!important;opacity:0;transition:opacity .1s linear;z-index:0}.EditionMenu-featuredSubLinks.EditionMenu-subMenu.EditionMenu-subMenuOpen{opacity:1;transition:opacity .1s linear;z-index:1}.EditionMenu-subMenuOpen{opacity:0;transition:opacity .1s linear}.EditionMenu-backBtn{height:38px;width:100%}.EditionMenu-backBtn,.EditionMenu-backBtn a{align-items:center;display:flex}.EditionMenu-backBtn a p{color:#071d39}.EditionMenu-backBtn a:before{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;color:#071d39;content:"";display:block;height:8px;margin-left:20px;margin-right:10px;transform:rotate(45deg);width:8px}.EditionMenu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:0;width:100%;z-index:999}@media (min-width:760px){.EditionMenu-megaMenu{padding-bottom:0}}@media (min-width:1020px){.EditionMenu-megaMenu{height:100%;overflow:hidden;overflow:auto;width:100%}.EditionMenu-megaMenuContainer{display:flex;flex-direction:row;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.EditionMenu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.EditionMenu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.EditionMenu-megaMenuContainer{max-width:1290px}}.EditionMenu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.EditionMenu-searchToggle{background-color:initial;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.EditionMenu-topBar{align-items:center;background-color:#005594;bottom:0;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 45px 0 20px;position:fixed;width:100%;z-index:5}@media (min-width:760px){.EditionMenu-topBar{justify-content:flex-start;position:relative}}@media (min-width:1020px){.EditionMenu-topBar{align-items:center;background-color:initial;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.EditionMenu-topBar{height:102px;max-height:102px}}.EditionMenu-close{background:none;color:#fff;font-size:17px;order:2}.EditionMenu-close span:before{display:block}.EditionMenu-close:focus,.EditionMenu-close:hover{color:#fcb700}@media (min-width:760px){.EditionMenu-close{order:1}}@media (min-width:1020px){.EditionMenu-close{color:#005594;font-size:15px}}.EditionMenu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.EditionMenu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.EditionMenu-logo{max-width:120px;min-width:120px}}.EditionMenu-logo img{width:100%}@media (min-width:1020px){.EditionMenu-logoSmall{display:none}}.EditionMenu-logoLarge{display:none}@media (min-width:1020px){.EditionMenu-logoLarge{display:block}}.EditionMenu-search{color:#fff;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.EditionMenu-search{margin-right:75px}}.EditionMenu-account{display:none}@media (min-width:1020px){.EditionMenu-account{display:block}}.EditionMenu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;text-transform:uppercase}.EditionMenu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.EditionMenu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px;line-height:12px}.EditionMenu-accountLinks .EditionMenu-editions,.EditionMenu-accountLinks li:first-child,.EditionMenu-accountLinks li:nth-child(2){flex:auto;text-align:center;width:50%}.EditionMenu-accountLinks li:nth-child(2){border-left:1px solid #9b9b9b}.EditionMenu-accountLinks .EditionMenu-editionMenu{transition:all .25s}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{float:left;font-size:10px;font-weight:500;letter-spacing:1.2px;padding:0;width:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{width:10%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li span{margin-left:5px}.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:40%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{border-left:none!important;margin-right:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{margin-right:40%}}.EditionMenu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.EditionMenu-accountLinks .icon-offsite-arrow:before{color:#071d3966;font-size:12px;line-height:14px}@media (min-width:1020px){.EditionMenu-accountLinks{display:none}}.EditionMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:none}@media (min-width:1020px){.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:flex;float:right;position:relative;right:9px;top:49px;width:285px}}@media (min-width:1340px){.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{width:380px}}@media (min-width:1020px){.account-menu-accountMenu ul,.account-menu-accountMenuAllAccess ul,.account-menu-accountMenuIC ul,.account-menu-accountMenuPro ul{display:-webkit-box;flex:100;flex-direction:row;justify-content:flex-end;margin:10px -8px 0 0!important;text-transform:uppercase}.account-menu-accountMenu ul:nth-child(2),.account-menu-accountMenuAllAccess ul:nth-child(2),.account-menu-accountMenuIC ul:nth-child(2),.account-menu-accountMenuPro ul:nth-child(2){margin-left:48px!important}}.account-menu-accountMenu ul:first-child,.account-menu-accountMenuAllAccess ul:first-child,.account-menu-accountMenuIC ul:first-child,.account-menu-accountMenuPro ul:first-child{left:12px;position:relative}@media (min-width:1020px){.account-menu-accountMenu ul:first-child li:last-child,.account-menu-accountMenuAllAccess ul:first-child li:last-child,.account-menu-accountMenuIC ul:first-child li:last-child,.account-menu-accountMenuPro ul:first-child li:last-child{margin-left:2px;padding-left:0}.account-menu-accountMenu ul:first-child span,.account-menu-accountMenuAllAccess ul:first-child span,.account-menu-accountMenuIC ul:first-child span,.account-menu-accountMenuPro ul:first-child span{font-size:9px}}@media (min-width:1340px){.account-menu-accountMenu ul:first-child li:last-child,.account-menu-accountMenuAllAccess ul:first-child li:last-child,.account-menu-accountMenuIC ul:first-child li:last-child,.account-menu-accountMenuPro ul:first-child li:last-child{margin-left:8px;padding-left:8px}}.account-menu-accountMenu ul li,.account-menu-accountMenuAllAccess ul li,.account-menu-accountMenuIC ul li,.account-menu-accountMenuPro ul li{font-size:11px;font-weight:600;letter-spacing:1px}.account-menu-accountMenu ul li a,.account-menu-accountMenu ul li button,.account-menu-accountMenuAllAccess ul li a,.account-menu-accountMenuAllAccess ul li button,.account-menu-accountMenuIC ul li a,.account-menu-accountMenuIC ul li button,.account-menu-accountMenuPro ul li a,.account-menu-accountMenuPro ul li button{color:#e3e3e3}.account-menu-accountMenu ul li a:hover,.account-menu-accountMenu ul li button:hover,.account-menu-accountMenuAllAccess ul li a:hover,.account-menu-accountMenuAllAccess ul li button:hover,.account-menu-accountMenuIC ul li a:hover,.account-menu-accountMenuIC ul li button:hover,.account-menu-accountMenuPro ul li a:hover,.account-menu-accountMenuPro ul li button:hover{color:#fcb700}.account-menu-accountMenu ul li:last-child,.account-menu-accountMenuAllAccess ul li:last-child,.account-menu-accountMenuIC ul li:last-child,.account-menu-accountMenuPro ul li:last-child{margin-left:8px;padding-left:8px}.account-menu-accountMenu ul li span,.account-menu-accountMenuAllAccess ul li span,.account-menu-accountMenuIC ul li span,.account-menu-accountMenuPro ul li span{float:right;margin-left:2px;position:relative;top:3px}@media (min-width:760px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuAllAccess .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuAllAccess .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:flex}.account-menu-accountMenu .account-menu-watchLive a,.account-menu-accountMenuAllAccess .account-menu-watchLive a,.account-menu-accountMenuIC .account-menu-watchLive a,.account-menu-accountMenuPro .account-menu-watchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-watchLive span,.account-menu-accountMenuAllAccess .account-menu-watchLive span,.account-menu-accountMenuIC .account-menu-watchLive span,.account-menu-accountMenuPro .account-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.account-menu-accountMenu .account-menu-watchLive:before,.account-menu-accountMenuAllAccess .account-menu-watchLive:before,.account-menu-accountMenuIC .account-menu-watchLive:before,.account-menu-accountMenuPro .account-menu-watchLive:before{animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{padding-left:35px}@media (min-width:760px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:flex;padding-left:30px}.account-menu-accountMenu .account-menu-berkshireWatchLive a,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive a,.account-menu-accountMenuIC .account-menu-berkshireWatchLive a,.account-menu-accountMenuPro .account-menu-berkshireWatchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-berkshireWatchLive span,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive span{background:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.account-menu-accountMenu .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:hover span{color:#fcb700}.account-menu-accountMenu .account-menu-berkshireWatchLive:before,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive:before,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:before,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:before{animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}@keyframes account-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.account-menu-accountMenuAllAccess ul li a,.account-menu-accountMenuAllAccess ul li button{color:#fff}.account-menu-accountMenuAllAccess ul li a:focus,.account-menu-accountMenuAllAccess ul li a:hover,.account-menu-accountMenuAllAccess ul li button:focus,.account-menu-accountMenuAllAccess ul li button:hover{color:#cfd8e2}.account-menu-accountMenuAllAccess ul li a span,.account-menu-accountMenuAllAccess ul li button span{color:#fff}.account-menu-accountMenuPro ul li a:focus,.account-menu-accountMenuPro ul li a:hover,.account-menu-accountMenuPro ul li button:focus,.account-menu-accountMenuPro ul li button:hover{color:#00a857}.account-menu-accountMenuIC ul li a:focus,.account-menu-accountMenuIC ul li a:hover,.account-menu-accountMenuIC ul li button:focus,.account-menu-accountMenuIC ul li button:hover{color:#0496ff}.account-menu-accountMenuSticky{display:none}.account-menu-underlineLabel{border-bottom:1px solid #fff;padding-bottom:1px}.account-menu-editionMenu{transition:all .25s}@media (min-width:1020px){.account-menu-editionMenu{margin:10px 0 0 8px!important}.account-menu-editionMenu li:first-child{margin-left:7px;margin-right:-5px}.account-menu-editionMenu li:last-child{border-left:none!important}.account-menu-editionMenu li:last-child:before{color:#fff;content:"•";font-size:10px;left:-5px;position:relative}}@media (min-width:1020px){.account-menu-editionMenuSticky{transform:translateY(-6px)}}.branding-menu-brandingMenu{align-items:center;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;position:fixed;z-index:99}@media (min-width:760px){.branding-menu-brandingMenu{padding:0 20px}}@media (min-width:1020px){.branding-menu-brandingMenu{background-color:initial;height:35px;padding:0 15px 0 30px}}.branding-menu-brandingMenu{background-color:#001e5a;height:45px;opacity:1;position:absolute;top:0;transition:opacity .2s;width:100%;z-index:0}.branding-menu-brandingMenu img{float:left}@media (min-width:760px){.branding-menu-brandingMenu{align-items:flex-start;height:70px;padding-top:13px;width:100%}}@media (min-width:1020px){.branding-menu-brandingMenu{align-items:flex-start;display:block;overflow:visible;padding-left:0;padding-top:13px;width:calc(100% - 155px)}}.branding-menu-brandingMenu img{height:24px;width:143px}@media (min-width:360px){.branding-menu-brandingMenu img{width:124px}}@media (min-width:760px){.branding-menu-brandingMenu img{width:156px}}.branding-menu-brandingMenuAllAccess{background-color:#002f6c;transition:background-color .5s ease-in}.branding-menu-brandingMenuAllAccess img{height:18px;width:214px}.branding-menu-brandingMenuPro{background-color:#27313c;transition:background-color .5s ease-in}.branding-menu-brandingMenuIC{background-color:#071d39;transition:background-color .5s ease-in}.branding-menu-brandingMenuLoggedIn{background-color:#00081a;transition:background-color .5s ease-in}.branding-menu-brandingMenuSticky,.branding-menu-brandingMenuStickyAllAccess,.branding-menu-brandingMenuStickyIC,.branding-menu-brandingMenuStickyLoggedIn,.branding-menu-brandingMenuStickyPro{opacity:0;pointer-events:none}.branding-menu-logo{height:20px;width:138px}.branding-menu-logo:after{clear:both;content:""}@media (max-width:759px){.branding-menu-logo{margin:0 0 5px}}.branding-menu-logoSmall{display:block;height:22px;width:135px}.branding-menu-logoSmallAllAccess{color:#ff0;margin-top:3px;padding-left:8px}@media (max-width:359px){.branding-menu-logoSmall,.branding-menu-logoSmallAllAccess{display:none}}.branding-menu-logoLarge{display:none}@media (min-width:760px){.branding-menu-logoLarge{display:block;height:31px;width:195px}.branding-menu-logoLargeAllAccess{margin-top:3px;padding-left:8px}}.branding-menu-watchLive{position:absolute;right:50px;top:30px}@media (min-width:760px){.branding-menu-watchLive{display:none}}@media (max-width:359px){.branding-menu-watchLive{display:none}}.branding-menu-watchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.branding-menu-watchLive:before{animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@media (max-width:759px){.branding-menu-watchLiveLoggedIn{right:90px;top:33px}}.branding-menu-berkshireWatchLive{position:absolute;right:50px;top:32px}@media (min-width:760px){.branding-menu-berkshireWatchLive{display:none}}@media (max-width:390px){.branding-menu-berkshireWatchLive{display:none}}.branding-menu-berkshireWatchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-berkshireWatchLive span{background:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.branding-menu-berkshireWatchLive:hover span{color:#fcb700}.branding-menu-berkshireWatchLive:before{animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@keyframes branding-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.branding-menu-brkLiveWatchLiveLink.branding-menu-userIsLoggedIn{margin-right:38px}.FiveThingsBanner-container{background:#fff;color:#000;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.FiveThingsBanner-container .FiveThingsBanner-closeButton,.FiveThingsBanner-container .FiveThingsBanner-heading{z-index:3}.FiveThingsBanner-container .FiveThingsBanner-article{z-index:1}.FiveThingsBanner-container.FiveThingsBanner-intro:not(.FiveThingsBanner-stickyContainer):before{animation:FiveThingsBanner-SlideInFull 2s ease;animation-iteration-count:1;background:linear-gradient(90deg,#fff 0,rgba(252,60,70,.966) 30%,#fc3c46 70%,#fff0);background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}.FiveThingsBanner-fiveThingsArticle{border-bottom:3px solid #e8e8e8}@media (max-width:759px){.FiveThingsBanner-stickyContainer{display:none}.FiveThingsBanner-stickyContainer.FiveThingsBanner-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.FiveThingsBanner-gridContainer{height:40px}@media (min-width:1020px){.FiveThingsBanner-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-gridContainer{max-width:1290px}}.FiveThingsBanner-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.FiveThingsBanner-heading{color:#000;font-size:16px;font-weight:800;margin-right:20px}.FiveThingsBanner-heading:hover{color:#000}.FiveThingsBanner-newsText{display:none}.FiveThingsBanner-titleContainer{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:900;line-height:19px;position:relative;text-transform:uppercase;top:11px}.FiveThingsBanner-logo{display:inline-block;margin-left:10px}.FiveThingsBanner-article{color:#000;flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;position:relative;white-space:nowrap;width:calc(100% - 250px)}.FiveThingsBanner-article:focus,.FiveThingsBanner-article:hover{color:#000;text-decoration:underline}@media (max-width:759px){.FiveThingsBanner-article{width:calc(100% - 300px)}}.FiveThingsBanner-marquee{animation:FiveThingsBanner-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes FiveThingsBanner-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.FiveThingsBanner-closeButton{color:#000;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.FiveThingsBanner-closeButton{right:2px}}.FiveThingsBanner-adSlot{display:flex;flex-direction:row;position:relative}.FiveThingsBanner-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:16px;width:100px}@media (min-width:760px){.FiveThingsBanner-adContainer{margin-left:15px}}@media (max-width:759px){.FiveThingsBanner-adContainer{left:155px}}.FiveThingsBanner-sponsor{color:#424242;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:relative;top:13px}@media (min-width:760px){.FiveThingsBanner-sponsor{font-size:12px;line-height:15px}}@media (max-width:759px){.FiveThingsBanner-sponsor{margin-left:75px;width:100%}}.FiveThingsBanner-adContainer:empty .FiveThingsBanner-sponsor{display:none}.mega-links-container a,.mega-links-containerPro a{color:#005594}@media (min-width:1020px){.mega-links-container,.mega-links-containerPro{width:65%}}.mega-links-item{border-bottom:1px solid #9b9b9b;display:flex;flex-direction:row;overflow:hidden;padding:0 0 0 20px;position:relative;transition:transform .2s ease-out,height .2s ease-out;width:100%}@media (min-width:1020px){.mega-links-item{border:none;display:block;position:static;width:auto}}.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinks:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksAllAccess:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksIC:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksPro:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinkBase:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinks:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksAllAccess:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksIC:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksPro:last-of-type{border:unset}.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinks:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksAllAccess:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksIC:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksPro:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinkBase:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinks:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksAllAccess:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksIC:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksPro:last-of-type .mega-links-activeBar{display:none}@media (min-width:1020px){.mega-links-item .mega-links-submenuContainer{align-items:flex-start;display:flex;flex-flow:row wrap;gap:20px;height:100%;justify-content:flex-start;left:calc(100% + 20px);position:absolute;top:0}@supports (width:max-content){.mega-links-item .mega-links-submenuContainer{width:max-content}}@supports not (width:max-content){.mega-links-item .mega-links-submenuContainer{width:870px}}}@media (min-width:1340px){.mega-links-item .mega-links-submenuContainer{gap:40px;left:calc(100% + 40px)}}.mega-links-expanded:before{background:#071d39;content:"";height:100%;left:0;position:absolute;top:0;width:6px}@media (min-width:1020px){.mega-links-expanded:before{display:none}}.mega-links-wrapper{overflow:hidden;position:relative}@media (min-width:1020px){.mega-links-wrapper{border-right:1px solid #9b9b9b;margin-top:100px;overflow:visible;padding-right:20px;width:50%}}@media (min-width:1340px){.mega-links-wrapper{padding-right:40px}}@media (min-width:1020px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}@media (min-width:1340px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}.mega-links-activeBar{background:#071d39;display:none;height:30px;position:absolute;right:-4px;top:-5px;transition:transform .2s ease-in-out;width:6px}@media (min-width:1020px){.mega-links-activeBar{display:block}}.mega-links-activeBar.mega-links-sub{background:#fcb700;right:-3px;width:6px}.mega-links-primaryLinkProAndIC{backface-visibility:hidden;display:flex;flex-direction:row;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right}}@media (min-width:1340px){.mega-links-primaryLinkProAndIC{font-size:28px;letter-spacing:3px}}.mega-links-primaryLinkProAndIC a{flex:1}@media (max-width:1019px){.mega-links-primaryLinkProAndIC a{align-items:center;display:flex;white-space:pre-wrap;width:100%}}.mega-links-primaryLinkProAndIC a:hover{color:#27313c;text-decoration:none}.mega-links-primaryLinkProAndIC button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLinkProAndIC button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC button{display:none}}.mega-links-primaryLinkProAndIC span.mega-links-primaryLinkUnclickable{color:#005594;flex:1}.mega-links-primaryLinkProAndIC span.mega-links-primaryLinkUnclickable:hover{color:#27313c}.mega-links-chevronLeft{border:2px solid #0000;border-radius:100px;box-sizing:border-box;display:block;height:22px;position:relative;width:22px}.mega-links-chevronLeft:after{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;content:"";display:block;height:10px;left:6px;position:absolute;top:4px;transform:rotate(45deg);width:10px}.mega-links-bellIcon{margin-left:auto;margin-right:20px}.mega-links-chevronRight{border:2px solid #0000;border-radius:100px;box-sizing:border-box;color:#071d39;display:block;flex:1;height:22px;margin-right:20px;position:absolute;right:0;width:22px}.mega-links-chevronRight:after{border-bottom:2px solid;border-right:2px solid;box-sizing:border-box;content:"";display:block;height:10px;position:absolute;right:6px;top:4px;transform:rotate(-45deg);width:10px}.mega-links-primaryLink{backface-visibility:hidden;display:flex;flex-direction:row;flex-shrink:1;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:calc(100vw - 20px)}@media (min-width:1020px){.mega-links-primaryLink{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right;width:100%}}@media (min-width:1340px){.mega-links-primaryLink{font-size:28px;letter-spacing:3px;transition:transform .25s}}.mega-links-primaryLink a{align-items:center;color:#005594;flex:1}@media (max-width:1019px){.mega-links-primaryLink a{display:flex;line-height:1.5;padding-bottom:20px;padding-top:20px}}.mega-links-primaryLink a:hover{color:#005594;text-decoration:none}.mega-links-primaryLink button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLink button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLink button{display:none}}.mega-links-primaryLink span.mega-links-primaryLinkUnclickable{color:#005594;flex:1}@media (max-width:1019px){.mega-links-primaryLink span.mega-links-primaryLinkUnclickable{display:flex}}.mega-links-primaryLink span.mega-links-primaryLinkUnclickable:hover{color:#005594}@media (max-width:1019px){.mega-links-primaryLinkExpandedProAndIC a{display:initial}}.mega-links-upperCase>li>a{text-transform:uppercase}@media (min-width:1020px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{font-weight:600;transform:scale(1.32)}}@media (min-width:1340px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{transform:scale(1.15)}}.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{color:#071d39}@media (max-width:1019px){.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{display:flex}}.mega-links-primaryLinkExpanded a:hover,.mega-links-primaryLinkExpandedProAndIC a:hover{color:#071d39}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{background:#071d39;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:0}}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{background:#071d39;height:15px;margin-left:8px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:0}}.mega-links-primaryLinkExpanded button,.mega-links-primaryLinkExpandedProAndIC button{background:#071d39;color:#fff}.mega-links-primaryLinkExpanded button:before,.mega-links-primaryLinkExpandedProAndIC button:before{transform:scaleY(-1)}.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{border-right:1px solid #9b9b9b;display:flex;flex-direction:column;height:100%;margin:0;overflow:hidden;position:relative;white-space:nowrap;width:100vw}@keyframes mega-links-fadeIn{0%{opacity:0}to{opacity:1}}@media (min-width:1020px){.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{animation:mega-links-fadeIn .5s;flex-direction:column;flex-wrap:wrap;gap:20px;overflow:visible;padding-right:20px;width:auto}}@media (min-width:1340px){.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{gap:24px;padding-right:40px}}@media (max-width:759px){.mega-links-accountSubLinks li:first-child,.mega-links-accountSubLinksAllAccess li:first-child,.mega-links-accountSubLinksIC li:first-child,.mega-links-accountSubLinksPro li:first-child,.mega-links-subLinkBase li:first-child,.mega-links-subLinks li:first-child,.mega-links-subLinksAllAccess li:first-child,.mega-links-subLinksIC li:first-child,.mega-links-subLinksPro li:first-child{cursor:pointer;font-size:16px;font-weight:700;letter-spacing:2px;line-height:37px}}.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{align-items:center;border-bottom:1px solid #9b9b9b;cursor:pointer;display:flex;font-size:22px;font-weight:500;letter-spacing:2px;line-height:1.2;min-height:70px;padding:0 0 0 20px;position:relative;text-align:left;text-transform:uppercase;width:100%}.mega-links-accountSubLinks li.mega-links-upLevelButton,.mega-links-accountSubLinksAllAccess li.mega-links-upLevelButton,.mega-links-accountSubLinksIC li.mega-links-upLevelButton,.mega-links-accountSubLinksPro li.mega-links-upLevelButton,.mega-links-subLinkBase li.mega-links-upLevelButton,.mega-links-subLinks li.mega-links-upLevelButton,.mega-links-subLinksAllAccess li.mega-links-upLevelButton,.mega-links-subLinksIC li.mega-links-upLevelButton,.mega-links-subLinksPro li.mega-links-upLevelButton{font-size:16px;line-height:37px}.mega-links-accountSubLinks li.mega-links-upLevelButton a,.mega-links-accountSubLinksAllAccess li.mega-links-upLevelButton a,.mega-links-accountSubLinksIC li.mega-links-upLevelButton a,.mega-links-accountSubLinksPro li.mega-links-upLevelButton a,.mega-links-subLinkBase li.mega-links-upLevelButton a,.mega-links-subLinks li.mega-links-upLevelButton a,.mega-links-subLinksAllAccess li.mega-links-upLevelButton a,.mega-links-subLinksIC li.mega-links-upLevelButton a,.mega-links-subLinksPro li.mega-links-upLevelButton a{background:#fff;color:#071d39}@media (min-width:1020px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{border-bottom:none;font-size:15px;letter-spacing:normal;line-height:20px;min-height:30px;padding:0;text-transform:none;width:50%}}@media (min-width:1340px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{font-size:20px;line-height:20px}}.mega-links-accountSubLinks li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribe,.mega-links-subLinkBase li.mega-links-subLinkSubscribe,.mega-links-subLinks li.mega-links-subLinkSubscribe,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-subLinksIC li.mega-links-subLinkSubscribe,.mega-links-subLinksPro li.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinks li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribe,.mega-links-subLinkBase li.mega-links-subLinkSubscribe,.mega-links-subLinks li.mega-links-subLinkSubscribe,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-subLinksIC li.mega-links-subLinkSubscribe,.mega-links-subLinksPro li.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinks li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinkBase li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinks li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksIC li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksPro li.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinks li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribePro a,.mega-links-subLinkBase li.mega-links-subLinkSubscribePro a,.mega-links-subLinks li.mega-links-subLinkSubscribePro a,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribePro a,.mega-links-subLinksIC li.mega-links-subLinkSubscribePro a,.mega-links-subLinksPro li.mega-links-subLinkSubscribePro a{color:#008456}.mega-links-accountSubLinks li.mega-links-sub,.mega-links-accountSubLinksAllAccess li.mega-links-sub,.mega-links-accountSubLinksIC li.mega-links-sub,.mega-links-accountSubLinksPro li.mega-links-sub,.mega-links-subLinkBase li.mega-links-sub,.mega-links-subLinks li.mega-links-sub,.mega-links-subLinksAllAccess li.mega-links-sub,.mega-links-subLinksIC li.mega-links-sub,.mega-links-subLinksPro li.mega-links-sub{text-transform:capitalize;white-space:normal}.mega-links-accountSubLinks li.mega-links-sub a,.mega-links-accountSubLinksAllAccess li.mega-links-sub a,.mega-links-accountSubLinksIC li.mega-links-sub a,.mega-links-accountSubLinksPro li.mega-links-sub a,.mega-links-subLinkBase li.mega-links-sub a,.mega-links-subLinks li.mega-links-sub a,.mega-links-subLinksAllAccess li.mega-links-sub a,.mega-links-subLinksIC li.mega-links-sub a,.mega-links-subLinksPro li.mega-links-sub a{display:flex;width:100%}@media (min-width:1020px){.mega-links-accountSubLinks li.mega-links-sub a,.mega-links-accountSubLinksAllAccess li.mega-links-sub a,.mega-links-accountSubLinksIC li.mega-links-sub a,.mega-links-accountSubLinksPro li.mega-links-sub a,.mega-links-subLinkBase li.mega-links-sub a,.mega-links-subLinks li.mega-links-sub a,.mega-links-subLinksAllAccess li.mega-links-sub a,.mega-links-subLinksIC li.mega-links-sub a,.mega-links-subLinksPro li.mega-links-sub a{display:unset}}.mega-links-accountSubLinks li a,.mega-links-accountSubLinksAllAccess li a,.mega-links-accountSubLinksIC li a,.mega-links-accountSubLinksPro li a,.mega-links-subLinkBase li a,.mega-links-subLinks li a,.mega-links-subLinksAllAccess li a,.mega-links-subLinksIC li a,.mega-links-subLinksPro li a{align-items:center;display:flex;padding-right:20px;white-space:pre-wrap;width:100%}.mega-links-accountSubLinks li a:hover,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksPro li a:hover,.mega-links-subLinkBase li a:hover,.mega-links-subLinks li a:hover,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksIC li a:hover,.mega-links-subLinksPro li a:hover{text-decoration:none}@media (max-width:1019px){.mega-links-accountSubLinks li a,.mega-links-accountSubLinksAllAccess li a,.mega-links-accountSubLinksIC li a,.mega-links-accountSubLinksPro li a,.mega-links-subLinkBase li a,.mega-links-subLinks li a,.mega-links-subLinksAllAccess li a,.mega-links-subLinksIC li a,.mega-links-subLinksPro li a{padding-bottom:20px;padding-top:20px}}.mega-links-accountSubLinks li a .mega-links-event,.mega-links-accountSubLinksAllAccess li a .mega-links-event,.mega-links-accountSubLinksIC li a .mega-links-event,.mega-links-accountSubLinksPro li a .mega-links-event,.mega-links-subLinkBase li a .mega-links-event,.mega-links-subLinks li a .mega-links-event,.mega-links-subLinksAllAccess li a .mega-links-event,.mega-links-subLinksIC li a .mega-links-event,.mega-links-subLinksPro li a .mega-links-event{font-size:12px;margin-top:5px}.mega-links-accountSubLinks li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksAllAccess li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksIC li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksPro li a .mega-links-event .mega-links-location,.mega-links-subLinkBase li a .mega-links-event .mega-links-location,.mega-links-subLinks li a .mega-links-event .mega-links-location,.mega-links-subLinksAllAccess li a .mega-links-event .mega-links-location,.mega-links-subLinksIC li a .mega-links-event .mega-links-location,.mega-links-subLinksPro li a .mega-links-event .mega-links-location{color:#747474}.mega-links-accountSubLinks li a.mega-links-breadcrumb,.mega-links-accountSubLinks li a:focus,.mega-links-accountSubLinks li a:focus .mega-links-location,.mega-links-accountSubLinks li a:hover,.mega-links-accountSubLinks li a:hover .mega-links-location,.mega-links-accountSubLinksAllAccess li a.mega-links-breadcrumb,.mega-links-accountSubLinksAllAccess li a:focus,.mega-links-accountSubLinksAllAccess li a:focus .mega-links-location,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksAllAccess li a:hover .mega-links-location,.mega-links-accountSubLinksIC li a.mega-links-breadcrumb,.mega-links-accountSubLinksIC li a:focus,.mega-links-accountSubLinksIC li a:focus .mega-links-location,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksIC li a:hover .mega-links-location,.mega-links-accountSubLinksPro li a.mega-links-breadcrumb,.mega-links-accountSubLinksPro li a:focus,.mega-links-accountSubLinksPro li a:focus .mega-links-location,.mega-links-accountSubLinksPro li a:hover,.mega-links-accountSubLinksPro li a:hover .mega-links-location,.mega-links-subLinkBase li a.mega-links-breadcrumb,.mega-links-subLinkBase li a:focus,.mega-links-subLinkBase li a:focus .mega-links-location,.mega-links-subLinkBase li a:hover,.mega-links-subLinkBase li a:hover .mega-links-location,.mega-links-subLinks li a.mega-links-breadcrumb,.mega-links-subLinks li a:focus,.mega-links-subLinks li a:focus .mega-links-location,.mega-links-subLinks li a:hover,.mega-links-subLinks li a:hover .mega-links-location,.mega-links-subLinksAllAccess li a.mega-links-breadcrumb,.mega-links-subLinksAllAccess li a:focus,.mega-links-subLinksAllAccess li a:focus .mega-links-location,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksAllAccess li a:hover .mega-links-location,.mega-links-subLinksIC li a.mega-links-breadcrumb,.mega-links-subLinksIC li a:focus,.mega-links-subLinksIC li a:focus .mega-links-location,.mega-links-subLinksIC li a:hover,.mega-links-subLinksIC li a:hover .mega-links-location,.mega-links-subLinksPro li a.mega-links-breadcrumb,.mega-links-subLinksPro li a:focus,.mega-links-subLinksPro li a:focus .mega-links-location,.mega-links-subLinksPro li a:hover,.mega-links-subLinksPro li a:hover .mega-links-location{color:#fcb700}@media (min-width:1020px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{display:unset;font-size:15px;line-height:1;min-height:auto;padding:0;width:100%}}@media (min-width:1340px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{font-size:20px}}.mega-links-accountSubLinksAllAccess li a.mega-links-breadcrumb,.mega-links-accountSubLinksAllAccess li a:focus,.mega-links-accountSubLinksAllAccess li a:focus .mega-links-location,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksAllAccess li a:hover .mega-links-location,.mega-links-subLinksAllAccess li a.mega-links-breadcrumb,.mega-links-subLinksAllAccess li a:focus,.mega-links-subLinksAllAccess li a:focus .mega-links-location,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksAllAccess li a:hover .mega-links-location{color:#002f6c}.mega-links-accountSubLinksAllAccess>.mega-links-activeBar,.mega-links-subLinksAllAccess>.mega-links-activeBar{background:#071d39}.mega-links-accountSubLinksPro li a.mega-links-breadcrumb,.mega-links-accountSubLinksPro li a:focus,.mega-links-accountSubLinksPro li a:focus .mega-links-location,.mega-links-accountSubLinksPro li a:hover,.mega-links-accountSubLinksPro li a:hover .mega-links-location,.mega-links-subLinksPro li a.mega-links-breadcrumb,.mega-links-subLinksPro li a:focus,.mega-links-subLinksPro li a:focus .mega-links-location,.mega-links-subLinksPro li a:hover,.mega-links-subLinksPro li a:hover .mega-links-location{color:#00a857}.mega-links-accountSubLinksPro>.mega-links-activeBar,.mega-links-subLinksPro>.mega-links-activeBar{background:#008456}.mega-links-accountSubLinksIC li a.mega-links-breadcrumb,.mega-links-accountSubLinksIC li a:focus,.mega-links-accountSubLinksIC li a:focus .mega-links-location,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksIC li a:hover .mega-links-location,.mega-links-subLinksIC li a.mega-links-breadcrumb,.mega-links-subLinksIC li a:focus,.mega-links-subLinksIC li a:focus .mega-links-location,.mega-links-subLinksIC li a:hover,.mega-links-subLinksIC li a:hover .mega-links-location{color:#0496ff}.mega-links-accountSubLinksIC>.mega-links-activeBar,.mega-links-subLinksIC>.mega-links-activeBar{background:#0496ff}.mega-links-investingClubLockIcon,.mega-links-proLockIcon{background:#001e5a;display:inline-block;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:0}}.mega-links-investingClubLockIcon{margin-left:8px}.mega-links-accountSubLinks li:first-child{height:40px;padding:10px 0;width:100%}@media (max-width:1019px){.mega-links-accountSubLinks li:first-child{background:#f8f8f8}}.mega-links-accountSubLinks li:first-child a{cursor:default}.mega-links-accountSubLinks li:first-child a:focus,.mega-links-accountSubLinks li:first-child a:hover{color:#071d39}.mega-links-accountSubLinksAllAccess li:first-child{cursor:default;height:40px;padding:10px 0;width:100%}.mega-links-accountSubLinksAllAccess li:first-child:focus,.mega-links-accountSubLinksAllAccess li:first-child:hover{color:#071d39}@media (max-width:1019px){.mega-links-accountSubLinksAllAccess li:first-child{background:#f8f8f8}}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribePro a{color:#008456}.mega-links-accountSubLinksPro li:first-child{cursor:default;height:40px;padding:10px 0;width:100%}.mega-links-accountSubLinksPro li:first-child:focus,.mega-links-accountSubLinksPro li:first-child:hover{color:#071d39}@media (max-width:1019px){.mega-links-accountSubLinksPro li:first-child{background:#f8f8f8}}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribePro a{color:#008456}@media (min-width:1020px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-15px;width:100%}}@media (min-width:1340px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-14px!important;width:100%}}.mega-links-buttonLink{-webkit-appearance:none;appearance:none;background-color:#0376c9;border:1px solid #0376c9;color:#fff;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;padding:0 20px;position:relative;text-align:left;text-transform:uppercase;transition:all .15s linear;width:100%}@media (min-width:1340px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:16px!important;height:44px!important;width:73%!important}}@media (min-width:1020px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:11px;font-weight:600;height:40px;letter-spacing:1px;padding:0!important;text-align:center;width:64%}}@media (max-width:359px){.mega-links-buttonLink{font-size:16px;font-weight:700}}.mega-links-allAccessBtn{color:#fff!important;left:2px;position:absolute;right:30px;top:-14px!important;width:100%}@media (max-width:1019px){.mega-links-allAccessBtn{font-size:16px!important;font-weight:700!important;left:32px!important;top:-4px!important}}.mega-links-menuPromotion,.mega-links-subMenuPromotion{align-items:center;background:#e8802a;border-radius:3px;color:#fff;display:inline-flex;font-size:8px;font-weight:500;gap:10px;justify-content:center;line-height:10px;margin-left:5px;padding:3px 4px 2px;text-transform:uppercase}.mega-links-menuPromotion{letter-spacing:normal;margin:auto 0 auto 5px}.mega-menu-mobileTopBar{display:block;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-mobileTopBar{display:none}}.mega-menu-desktopTopBar{display:none;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-desktopTopBar{display:block}}.mega-menu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:45px;width:100%;z-index:999}@media (min-width:760px){.mega-menu-megaMenu{padding-bottom:0;top:0}}@media (min-width:1020px){.mega-menu-megaMenu{height:100%;overflow-x:hidden;overflow-y:auto;width:100%}}@media (min-width:760px) and (max-width:1019px){.mega-menu-megaMenu{padding-top:2.5rem}}@media (min-width:1020px){.mega-menu-megaMenuContainer{display:flex;flex-direction:row;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.mega-menu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.mega-menu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.mega-menu-megaMenuContainer{max-width:1290px}}@media screen and (-ms-high-contrast:none){.mega-menu-megaMenuContainer{max-width:100%}}.mega-menu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.mega-menu-searchToggle{background-color:initial;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.mega-menu-topBar{background-color:#001e5a}.mega-menu-topBarLoggedeIn{background-color:#00081a}.mega-menu-topBar{align-items:center;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 30px 0 20px;position:fixed;top:0;width:100%;z-index:10000}@media (min-width:760px){.mega-menu-topBar{justify-content:flex-start}}@media (min-width:1020px){.mega-menu-topBar{align-items:center;background-color:initial;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.mega-menu-topBar{height:102px;max-height:102px}}.mega-menu-close{background:none;color:#fff;font-size:17px;order:2}.mega-menu-close span:before{display:block}.mega-menu-close:hover{color:#fcb700}.mega-menu-close:focus{color:#fff}.mega-menu-close:focus:hover{color:#fcb700}@media (min-width:1020px){.mega-menu-close:focus{color:#005594}}@media (min-width:760px){.mega-menu-close{order:1}}@media (min-width:1020px){.mega-menu-close{color:#005594;font-size:15px}}.mega-menu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.mega-menu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.mega-menu-logo{max-width:120px;min-width:120px}.mega-menu-logoSmall{display:none;height:22px;width:125px}}.mega-menu-logoLarge{display:none}@media (min-width:1020px){.mega-menu-logoLarge{display:block;height:20px;width:138px}}.mega-menu-search{color:#005594;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.mega-menu-search{margin-right:75px}}.mega-menu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.mega-menu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.mega-menu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px}.mega-menu-accountLinks li:first-child,.mega-menu-accountLinks li:nth-child(2),.mega-menu-accountLinks li:nth-child(3){flex:auto;width:33.3333%}.mega-menu-accountLinks li:nth-child(4),.mega-menu-accountLinks li:nth-child(5){border-top:1px solid #f2f2f2;flex:auto;text-align:center;width:50%}.mega-menu-accountLinks li:nth-child(5){border-left:1px solid #f2f2f2}.mega-menu-accountLinks li:nth-child(5) a{margin:0 14px}.mega-menu-accountLinks li:nth-child(5) a:last-child:before{color:#000;content:"•";font-size:10px;left:-14px;position:relative;top:-2px}.mega-menu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.mega-menu-accountLinks .icon-offsite-arrow:before{color:#071d3966;font-size:12px;line-height:14px}@media (min-width:1020px){.mega-menu-accountLinks{display:none}}.SearchEntry-inputContainer{background-color:#001e5a}.SearchEntry-inputContainerLoggedIn{background-color:#00081a}.SearchEntry-inputContainerPro{background-color:#27313c}.SearchEntry-inputContainerIC{background-color:#071d39}.SearchEntry-inputContainerAllAccess{background-color:#002f6c}.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{opacity:1;padding:20px;position:relative;z-index:2}@media (min-width:360px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{padding-top:45px}}@media (min-width:760px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{padding:15px 0 25px}.SearchEntry-inputContainer>*,.SearchEntry-inputContainerAllAccess>*,.SearchEntry-inputContainerIC>*,.SearchEntry-inputContainerLoggedIn>*,.SearchEntry-inputContainerPro>*{opacity:1}.SearchEntry-enter .SearchEntry-inputContainer>*,.SearchEntry-enter .SearchEntry-inputContainerAllAccess>*,.SearchEntry-enter .SearchEntry-inputContainerIC>*,.SearchEntry-enter .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-enter .SearchEntry-inputContainerPro>*{opacity:0!important}.SearchEntry-enter-active .SearchEntry-inputContainer>*,.SearchEntry-enter-active .SearchEntry-inputContainerAllAccess>*,.SearchEntry-enter-active .SearchEntry-inputContainerIC>*,.SearchEntry-enter-active .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-enter-active .SearchEntry-inputContainerPro>*{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchEntry-exit .SearchEntry-inputContainer>*,.SearchEntry-exit .SearchEntry-inputContainerAllAccess>*,.SearchEntry-exit .SearchEntry-inputContainerIC>*,.SearchEntry-exit .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-exit .SearchEntry-inputContainerPro>*{opacity:1!important}.SearchEntry-exit-active .SearchEntry-inputContainer>*,.SearchEntry-exit-active .SearchEntry-inputContainerAllAccess>*,.SearchEntry-exit-active .SearchEntry-inputContainerIC>*,.SearchEntry-exit-active .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-exit-active .SearchEntry-inputContainerPro>*{opacity:0!important;transition:transform .1s ease-out}}@media (min-width:1020px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{background-color:#fff;padding:10px 20px 0}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-decoration{display:none}.SearchEntry-inputContainer button,.SearchEntry-inputContainerAllAccess button,.SearchEntry-inputContainerIC button,.SearchEntry-inputContainerLoggedIn button,.SearchEntry-inputContainerPro button{right:0;width:30px}.SearchEntry-inputContainer button:before,.SearchEntry-inputContainerAllAccess button:before,.SearchEntry-inputContainerIC button:before,.SearchEntry-inputContainerLoggedIn button:before,.SearchEntry-inputContainerPro button:before{font-size:20px;line-height:36px}.SearchEntry-inputContainer input,.SearchEntry-inputContainerAllAccess input,.SearchEntry-inputContainerIC input,.SearchEntry-inputContainerLoggedIn input,.SearchEntry-inputContainerPro input{border-bottom:1px solid #979797;font-size:14px;height:35px;padding:0 40px 0 0}}.SearchEntry-container{background-color:initial;padding:0 20px;position:relative;width:100%}@media (min-width:760px){.SearchEntry-container{padding:0 150px}}@media (min-width:1020px){.SearchEntry-container{padding:0}}.SearchEntry-container.SearchEntry-standardVariant{padding:20px 0 0}@media (min-width:360px){.SearchEntry-container.SearchEntry-standardVariant{padding:45px 20px 20px}}@media (min-width:760px){.SearchEntry-container.SearchEntry-standardVariant{padding:0}}@media (min-width:1020px){.SearchEntry-container.SearchEntry-standardVariant{padding:8px 80px 40px}}.SearchEntry-searchForm{display:block;position:relative}.SearchEntry-overlay .SearchEntry-searchForm{border-bottom:0}.SearchEntry-searchForm ::placeholder{color:#a2a2a2}.SearchEntry-overlay{margin:0 auto;padding:0;width:100%}@media (min-width:760px){.SearchEntry-overlay{max-width:560px}}@media (min-width:1020px){.SearchEntry-overlay{max-width:800px}}@media (min-width:1340px){.SearchEntry-overlay{max-width:1132px}}.SearchEntry-inputCallToAction{display:none}@media (min-width:1020px){.SearchEntry-inputCallToAction{display:block;font-size:15px;font-weight:600;letter-spacing:1px;line-height:15px;margin-bottom:5px}.SearchEntry-overlay .SearchEntry-inputCallToAction{color:#fff}}.SearchEntry-querySuggest{background:#fff;border:1px solid #0000;color:grey;margin:0;opacity:1;position:absolute;width:calc(100% - 30px)}.SearchEntry-query{background:#0000;border:1px solid;border-color:#888 #888 #ccc;border-image:initial;margin:0;opacity:1;position:relative;width:calc(100% - 30px);z-index:2}.SearchEntry-searchInput{-webkit-appearance:none;background-color:#fff;border:0;box-sizing:border-box!important;color:#171717;display:block;font-size:16px;font-weight:500;height:50px;letter-spacing:1px;line-height:1;padding:0 50px 0 15px;width:100%}.SearchEntry-standardVariant .SearchEntry-searchInput{text-transform:uppercase}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:3px}@media (min-width:1020px){.SearchEntry-searchInput{border-bottom:1px solid #979797;font-size:14px;font-weight:600;height:35px;padding:0 40px 0 0}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:0}.SearchEntry-searchInput::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-searchInput::-webkit-search-cancel-button,.SearchEntry-searchInput::-webkit-search-decoration,.SearchEntry-searchInput::-webkit-search-results-button,.SearchEntry-searchInput::-webkit-search-results-decoration{display:none}}.SearchEntry-searchButton{bottom:0;height:0;margin:auto;overflow:hidden;padding-top:30px;position:absolute;right:10px;top:0;width:30px;z-index:2}.SearchEntry-searchButton:before{color:#2077b6;font-size:26px;height:100%;left:0;line-height:30px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:1020px){.SearchEntry-searchButton{padding-top:40px;right:0;width:30px}.SearchEntry-searchButton:before{font-size:20px;line-height:36px}}.SearchEntry-suggestActive{color:#000}.SearchEntry-suggestActiveInput{opacity:.7}.SearchEntry-suggestNotActive{display:none!important}.SearchEntry-suggestNotActiveInput{opacity:1!important}.SearchEntry-waitingIcon{background-color:#fff;position:absolute;right:40px;top:2px;z-index:2}@media (min-width:1020px){.SearchEntry-waitingIcon{right:35px;top:0}}.SearchEntry-waitingIcon img{height:45px;width:60px}@media (min-width:1020px){.SearchEntry-waitingIcon img{height:30px;width:50px}}@media (max-width:1019px){.SearchResults-moreResults{margin-bottom:-20px!important}.SearchResults-tickerContainerHeader{margin-top:20px}}.SearchResults-contentContainer{background-color:#fff;opacity:1;padding-bottom:10px;z-index:1}@media (min-width:760px){.SearchResults-enter .SearchResults-contentContainer{opacity:0!important}.SearchResults-enter-active .SearchResults-contentContainer{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchResults-exit .SearchResults-contentContainer{opacity:1!important}.SearchResults-exit-active .SearchResults-contentContainer{opacity:0!important;transition:opacity .1s ease-out}}.SearchResults-focusable:hover,.SearchResults-highlight{background:#e4e4e4!important}.SearchResults-paddingExceptLeft{padding:5px 5px 5px 0}div:not(:first-child)>a>.SearchResults-articleItem{border-top:1px solid #ccc}.SearchResults-articleItem{height:80px;margin:0 20px;padding:5px;position:relative}.SearchResults-articleItemThumbnail{background-color:#ccc;background-position:50%;float:right;height:60px;margin-left:10px;position:relative;width:106px}.SearchResults-iconArrowRightLong{float:right;padding:4px}.SearchResults-iconArrowRightLong:before{content:"\E90A"}.SearchResults-upper{text-transform:uppercase}.SearchResults-empty{font-size:12px;padding-bottom:30px;padding-left:30px;padding-top:10px}.SearchResults-groupContainer{min-height:35px}.SearchResults-articleItemText{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:13px;font-weight:600;line-height:14px;padding-bottom:20px;text-align:left}.SearchResults-articleTitle{height:44px;left:5px;overflow:hidden;position:absolute;top:5px;width:calc(100% - 120px)}.SearchResults-termHighlight{background-color:#e7ecf1}.SearchResults-articlePubDate{color:#747474;font-size:9px;font-weight:600;height:24px;letter-spacing:.02em;line-height:12px;overflow:hidden;position:absolute;top:50px;width:calc(100% - 120px)}.SearchResults-articlePubTime{white-space:nowrap}.SearchResults-moreResults{display:block;font-size:14px;margin-bottom:0;margin-left:20px;margin-right:20px;text-transform:uppercase}.SearchResults-moreResults a,.SearchResults-moreResults a:active,.SearchResults-moreResults a:hover{color:#005594}.SearchResults-containerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:underline;-webkit-text-decoration-color:#005594;text-decoration-color:#005594;text-transform:uppercase;text-underline-offset:3px}.SearchResults-playIcon{border:3px solid #fff;border-radius:100%;box-shadow:inset 0 1px 0 #555,inset 1px 0 0 #555,inset 0 -1px 0 #555,inset -1px 0 0 #555,0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;height:32px;left:calc(50% - 16px);position:absolute;top:5px;width:32px}.SearchResults-playIcon>:first-child{border:8px solid #0000;border-left:13px solid #555;left:8px;position:absolute;top:5px}.SearchResults-playIcon>:last-child{border:6px solid #0000;border-left:10px solid #fff;left:9px;position:absolute;top:7px}.SearchResults-videoDuration{bottom:0;font-size:14px;font-weight:700;padding:0 5px;position:absolute;text-shadow:0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;width:100%}.SearchResults-video{color:#fcb700;float:left;letter-spacing:.7px;text-transform:uppercase}.SearchResults-duration{color:#fff;float:right}.SearchResults-investingClubPill,.SearchResults-proPill{height:10px}.SymbolResultItem-link{align-items:center;display:flex;overflow:hidden;position:relative;white-space:nowrap}.SymbolResultItem-link:hover>.SymbolResultItem-item,.SymbolResultItem-selected{background-color:#e4e4e4}.SymbolResultItem-item{align-items:center;border:.5px solid #cfd8e2;border-radius:7px;color:#4a4a4a;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;line-height:12px;overflow:hidden;padding:8px;position:relative;white-space:nowrap}.SymbolResultItem-name{color:#4a4a4a;font-weight:500;margin:0;overflow:hidden;text-overflow:ellipsis}.SymbolResultItem-separator{color:#4a4a4a;margin:0 5px}.SymbolResultItem-last,.SymbolResultItem-symbol{color:#171717;font-weight:700;margin:0}.SymbolResultItem-positiveChange{color:#008456;font-weight:700;margin:0}.SymbolResultItem-negativeChange{color:#d0021b;font-weight:700;margin:0}.SymbolResultItem-unchanged{color:#747474;font-weight:700;margin:0}.SymbolResults-tickerContainerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:none}@media (max-width:1019px){.SymbolResults-tickerContainerHeader{margin-top:20px}}.SymbolResults-tickerContainer{display:flex;flex-wrap:wrap;gap:10px 15px;margin:0 20px 10px;min-height:30px;padding:0;text-indent:0}.SymbolResults-noSymbols{font-size:12px;padding-bottom:20px;padding-left:30px;padding-top:10px}@media (max-width:1019px){body #SearchDropDown-moreResults{margin-bottom:-20px}body #SearchDropDown-tickerContainerHeader{margin-top:20px}}body #SearchDropDown-tickerContainer #tickercontainer{gap:10px 15px;padding-bottom:10px!important}.icon-buffett-backtotop:before{font-size:1.5em;padding-left:3px}body #back-top-top{background:#001e5a;bottom:40px;color:#fff;cursor:pointer;display:none;height:auto;padding:10px;position:fixed;right:0}body #back-top-top:hover{background:#2077b6}@media (min-width:1340px){body .searchResultsCols{max-width:1290px}}@media (min-width:1020px){body .searchCol4{max-width:35%;min-width:35%}body .searchCol8{max-width:60%;min-width:60%;padding-right:0}body .searchResultsCols{max-width:100%;min-width:100%;padding:0 60px}}@media (min-width:1340px){body .searchCol4{max-width:420px;min-width:420px}body .searchCol8{max-width:820px;min-width:820px;padding-right:0}body .searchResultsCols{max-width:1320px;min-width:1320px;padding:0 20px}}.SearchDropDown-searchResultsContainer{margin:0 auto;padding:0 20px}.SearchDropDown-dropDownContainer{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;height:100vh;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:0;width:100%;z-index:1000}.SearchDropDown-dropDownContainer.SearchDropDown-enter{transform:translateX(100%)}.SearchDropDown-dropDownContainer.SearchDropDown-enter-active{transform:translateX(0);transition:transform .4s ease-in}.SearchDropDown-dropDownContainer.SearchDropDown-exit{transform:translateX(0)}.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:translateX(100%);transition:transform .3s ease-out}@media (min-width:760px){.SearchDropDown-dropDownContainer{background-color:initial}.SearchDropDown-dropDownContainer.SearchDropDown-enter,.SearchDropDown-dropDownContainer.SearchDropDown-enter-active,.SearchDropDown-dropDownContainer.SearchDropDown-exit,.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:none;transition:none}}@media (min-width:1020px){.SearchDropDown-dropDownContainer{box-shadow:0 2px 4px 0 #97979780;height:auto;left:auto;max-height:calc(100vh - 130px);padding:0;position:absolute;right:0;top:16px!important;width:440px}}@media (min-width:1020px) and (min-width:760px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1020px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1340px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px){.SearchDropDown-dropDownContainer .Search-container{padding:0}}@media (min-width:1180px){.SearchDropDown-dropDownContainer{padding:0}}@media (min-width:1340px){.SearchDropDown-dropDownContainer{padding:0}}.SearchDropDown-brandingContainer,.SearchDropDown-brandingContainerAllAccess,.SearchDropDown-brandingContainerIC,.SearchDropDown-brandingContainerLoggedIn,.SearchDropDown-brandingContainerPro{position:relative;width:100%;z-index:5}.SearchDropDown-brandingContainer{background-color:#001e5a}.SearchDropDown-brandingContainerLoggedIn{background-color:#00081a}.SearchDropDown-brandingContainerAllAccess{background-color:#002f6c}.SearchDropDown-brandingContainerPro{background-color:#27313c}.SearchDropDown-brandingContainerIC{background-color:#071d39}.SearchDropDown-branding{left:0;position:relative;top:0;width:100%;z-index:3}@media (min-width:760px){.SearchDropDown-branding{height:46px}.SearchDropDown-branding [class*=-button]{display:block;transition:none!important}.SearchDropDown-branding [class*=-button][class*=-makeit]{width:20px!important}.SearchDropDown-branding [class*=-button]:before{display:none}.SearchDropDown-branding [class*=-button] span{transform:translateY(-70px);visibility:hidden}}@media (min-width:1020px){.SearchDropDown-branding{display:none}}@media (min-width:1180px){.SearchDropDown-branding{max-width:1077px}}@media (min-width:1340px){.SearchDropDown-branding{max-width:1290px}}@media (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{transform:translateY(-10px)}}@media (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transition:width .2s ease-in;width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transform:translateY(0);transition:transform .2s ease-in .1s,width .2s ease-in}}@media (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{opacity:1;transform:translateY(0)}}@media (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{transition:width .1s ease-in .2s;width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{opacity:0;transform:translateY(-10px);transition:transform .2s ease-out,opacity .2s ease-out}}.SearchDropDown-brandingLogo{display:block;left:20px;position:absolute;top:12px;width:127px}@media (min-width:760px){.SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(11px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}@media (min-width:1020px){.SearchDropDown-brandingLogo{left:0;transform:translateY(25px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(25px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(25px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}.SearchDropDown-content{background-color:#fff;box-shadow:0 5px 20px 5px #0000001a;min-height:100%;position:relative}@media (min-width:760px){.SearchDropDown-content{transform-origin:top}.SearchDropDown-enter .SearchDropDown-content{transform:scaleY(0)}.SearchDropDown-enter-active .SearchDropDown-content{transform:scaleY(1);transition:transform .3s ease-in}.SearchDropDown-exit .SearchDropDown-content{transform:scaleY(1)}.SearchDropDown-exit-active .SearchDropDown-content{transform:scaleY(0);transition:transform .2s ease-out .1s}}.ProductBadge-badgeWrapper{display:flex}.ProductBadge-badgeWrapper img{flex:1;height:28px;width:auto}.ProductBadge-badgeText{margin-right:3px}@media (max-width:1019px){.ProductBadge-badgeText{display:none}}.ProfileIcon-profileIconContainer{display:flex;margin-left:-5px}.ProfileIcon-profileIconContainer img{flex:1;height:28px;width:auto}.SignInMenu-accountMenu .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuAllAccess .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuIC .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuPro .SignInMenu-dropdownUpArrow,.SignInMenu-dropdownUpArrow,.SignInMenu-upArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenu .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro .SignInMenu-dropdownArrow,.SignInMenu-downArrow,.SignInMenu-dropdownArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignInMenu-signInContainer{align-items:center;display:inline;margin:18px auto 0;transition:transform .25s,height .25s}.SignInMenu-signInContainerSticky{display:none}.SignInMenu-accountMenu,.SignInMenu-accountMenuAllAccess,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro,.SignInMenu-signInMenu{color:#fff;display:flex;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;text-transform:uppercase}@media (min-width:1020px){.SignInMenu-accountMenu:hover,.SignInMenu-accountMenuAllAccess:hover,.SignInMenu-accountMenuIC:hover,.SignInMenu-accountMenuPro:hover,.SignInMenu-signInMenu:hover{color:#fcb700}.SignInMenu-accountMenu:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownUpArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenu:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}}.SignInMenu-accountMenu,.SignInMenu-accountMenuAllAccess,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro{font-size:12px;line-height:14px;margin:0}@media (min-width:1020px){.SignInMenu-accountMenuAllAccess:hover{color:#cfd8e2}.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownUpArrow{background:#fff}.SignInMenu-accountMenuPro:hover{color:#00a857}.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow{background:#00a857}.SignInMenu-accountMenuIC:hover{color:#0496ff}.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow{background:#0496ff}}.SignInMenu-dropdownUpArrow{margin-top:3px}.SignInMenu-dropdownArrow,.SignInMenu-dropdownUpArrow{background:#fff;height:12px;margin-left:7px;width:12px}.SignInMenu-navLinks{box-shadow:0 1px 3px 1px #00000014;margin-top:10px;position:absolute;right:0;top:15px;width:187px;z-index:999}.SignInMenu-primaryLink ul li{align-self:center;background:#fff;border-bottom:2px solid #f3f5f7;height:37px;position:relative}.SignInMenu-primaryLink ul li:last-child{border-bottom:none}.SignInMenu-primaryLink ul li a{color:#005594;font-size:12px;font-weight:500;letter-spacing:1.32168px;line-height:18.5px;padding:10px 0 10px 20px;position:absolute;text-transform:uppercase;width:100%}.SignInMenu-primaryLink ul li:first-child a{color:#747474;cursor:default;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.SignInMenu-primaryLink ul li:not(:first-child):hover{background:#f3f5f7}.SignInMenu-primaryLink ul li:not(:first-child):hover a{font-weight:700}.SignInMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.SignInMenu-myAccountWrapper{position:relative}.SignInMenu-profileIconContainer{position:relative;top:-7px;transition:filter .3s ease,color .3s ease}.SignInMenu-profileIconContainer:hover{filter:brightness(.8)}@media (max-width:759px){.SignInMenu-signInLinkWrapper{display:none}}.SubscribeMenu-subscribeContainer{margin-top:6px}.SubscribeMenu-subscribeBtn{align-items:center;background-color:#fff;border-radius:7px;border-radius:2px;color:#071d39;display:flex;font-size:12px;font-weight:600;justify-content:space-between;letter-spacing:1.32168px;padding:2px 8px;text-transform:uppercase;width:115px}.SubscribeMenu-subscribeBtn:hover{background:#cfd8e2}.SubscribeMenu-subscribeBtnExpanded{border-radius:7px 7px 0 0;border-radius:2px 2px 0 0}.SubscribeMenu-navLinks{display:flex;flex-direction:column}.SubscribeMenu-link{background-color:#fff;border-top:.5px solid #d9d9d9;font-size:11px;font-weight:600;letter-spacing:1.2px;padding:3px 5px;text-transform:uppercase}.SubscribeMenu-link:last-of-type{border-radius:0 0 7px 7px;border-radius:0 0 2px 2px;box-shadow:0 5px 5px 0 #0000004d;-webkit-box-shadow:0 5px 5px 0 #0000004d;-moz-box-shadow:0 5px 5px 0 #0000004d}.SubscribeMenu-icLink{color:#336aa0!important}.SubscribeMenu-icLink:hover{color:#1896ff!important}.SubscribeMenu-proLink{color:#008456!important}.SubscribeMenu-proLink:hover{color:#00a857!important}.SubscribeMenu-upArrow{margin-top:4px;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SubscribeMenu-downArrow,.SubscribeMenu-upArrow{background:#071d39;display:block;height:12px;width:12px}.SubscribeMenu-downArrow{margin-bottom:2px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignUpMenu-signUpContainer{align-items:center;display:block;margin:8px auto 0;transition:transform .25s,height .25s}@media (max-width:759px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:760px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:1020px){.SignUpMenu-signUpContainer{display:block}}.SignUpMenu-signUpContainerSticky{display:none}.SignUpMenu-signUpMenu{background-color:#fff;border-radius:2px;color:#002f6c;display:flex;font-size:11px;font-weight:700;letter-spacing:1px;line-height:8px;margin-top:6px;text-transform:uppercase}@media (min-width:1020px){.SignUpMenu-signUpMenu:hover{background-color:#cfd8e2;color:#002f6c}}.SignUpMenu-signUpMenu a{color:#002f6c;padding:6px}.SignUpMenu-signUpMenu a:hover{color:#002f6c}.CNBCGlobalNav-mobileNavMenu{display:block;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-mobileNavMenu{display:none}}.CNBCGlobalNav-desktopNavMenu{display:none;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-desktopNavMenu{display:block}}.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationAllAccess,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{position:relative}@media (min-width:760px){.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationAllAccess,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{background-color:#001e5a;height:85px;position:relative;top:0;transition:all .25s;width:100%;z-index:0}.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationAllAccess.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationAllAccess.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:50px}.CNBCGlobalNav-globalNavigation:after,.CNBCGlobalNav-globalNavigationAllAccess:after,.CNBCGlobalNav-globalNavigationIC:after,.CNBCGlobalNav-globalNavigationPro:after{background-color:#001e5a;content:"";height:70px;left:0;position:absolute;top:0;width:100%;z-index:-1}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationLoggedIn{background-color:#00081a;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedIn:after{background-color:#00081a;transition:background-color .5s ease-in}}@media (max-width:759px){.CNBCGlobalNav-globalNavigationLoggedInSticky .CNBCGlobalNav-rightNavigationWrapper{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationLoggedInSticky{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedInSticky{height:50px}}.CNBCGlobalNav-globalNavigationLoggedInSticky.CNBCGlobalNav-globalNavigationArticle{background:#fff}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedInSticky:after{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationAllAccess{background-color:#002f6c;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationAllAccess:after{background-color:#002f6c;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationPro{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationPro:after{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationIC{background-color:#071d39;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationIC:after{background-color:#071d39;transition:background-color .5s ease-in}}@media (max-width:759px){.CNBCGlobalNav-globalNavigationSticky .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyAllAccess .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyIC .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyPro .CNBCGlobalNav-rightNavigationWrapper{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyAllAccess,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyAllAccess,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:50px}}.CNBCGlobalNav-globalNavigationSticky.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyAllAccess.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyIC.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyPro.CNBCGlobalNav-globalNavigationArticle{background:#fff}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky:after,.CNBCGlobalNav-globalNavigationStickyAllAccess:after,.CNBCGlobalNav-globalNavigationStickyIC:after,.CNBCGlobalNav-globalNavigationStickyPro:after{display:none}}.CNBCGlobalNav-container{backface-visibility:hidden;position:fixed;top:0;width:100%;z-index:1999}.CNBCGlobalNav-gridContainer{background:inherit}@media (min-width:1020px){.CNBCGlobalNav-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-gridContainer{max-width:1290px}}.CNBCGlobalNav-wrapper{background:inherit}@media (min-width:1020px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);position:relative}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.CNBCGlobalNav-progressBarContainer{display:none}@media (min-width:760px){.CNBCGlobalNav-progressBarContainer{display:block}}.CNBCGlobalNav-watchListContainer{color:#fff;display:inline;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;margin-top:18px;text-transform:uppercase;transition:transform .25s,height .25s}@media (max-width:759px){.CNBCGlobalNav-watchListContainer{display:none}}.CNBCGlobalNav-watchListContainer:after{content:"|";display:none;font-size:14px;padding-left:10px;padding-right:5px}.CNBCGlobalNav-watchListContainerSticky{display:none}.CNBCGlobalNav-hoverAllAccess a:hover{color:#cfd8e2}.CNBCGlobalNav-hoverPro a:hover{color:#00a857}.CNBCGlobalNav-hoverIC a:hover{color:#0496ff}.CNBCGlobalNav-rightNavigationWrapper{background:inherit;display:flex;margin-right:-33px;max-height:40px;position:absolute;right:33px;top:1px}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{background:inherit;margin-top:-1px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{margin-right:8px}}@media (max-width:759px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{margin-right:-6px}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapperLoggedIn{margin-right:13px;margin-top:2px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-watchlistWrapper{margin-left:-5px;margin-top:12.5px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-watchlistWrapper{margin-left:-12px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-notificationBellWrapper{margin-left:7px;margin-top:14px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-notificationBellWrapper{margin-left:-7px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signInMenuWrapper{margin-left:10px;margin-top:17px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signInMenuWrapper{margin-left:-1px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signUpMenuWrapper:not(:empty){margin-left:16px;margin-top:5px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signUpMenuWrapper:not(:empty){display:none}}.NotificationBell-notificationBellContainerSticky{display:none}.NotificationBell-notificationBellContainer{display:inline;margin-top:15px;z-index:1}@media (max-width:759px){.NotificationBell-notificationBellContainer{display:none}}.NotificationBell-notificationBellContainer:after{border-right:1px solid #fff;color:#fff;content:"";display:inline-block;font-size:14px;height:14px;margin:auto 5px auto 10px;position:relative;top:-5px}
.MarketsBanner-container{background-color:#f2f2f2;margin-bottom:15px;padding:15px 20px;position:relative}@media (min-width:760px){.MarketsBanner-container{margin-bottom:15px;padding:15px 40px;top:16px}}@media (min-width:1020px){.MarketsBanner-container{background-color:#fff;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 auto 30px;max-width:960px;padding:15px 0 0;top:16px;width:100%}}@media (min-width:1340px){.MarketsBanner-container{max-width:1290px;padding:15px 0 0}}.MarketsBanner-proMarketsBanner{top:0}@media (min-width:1340px){.MarketsBanner-proMarketsBanner{padding-bottom:8px;padding-top:8px}}@media (max-width:759px){.MarketsBanner-berkshireEvent{margin-bottom:0}}.MarketsBanner-main{border-top:1px solid #9b9b9b80;display:block;min-height:53px}.MarketsBanner-main h2{margin-bottom:0;margin-top:5px}@media (min-width:1020px){.MarketsBanner-main{flex:100%;min-height:59px}}.MarketsBanner-marketData{-webkit-overflow-scrolling:touch;align-items:flex-start;display:flex;flex-direction:row;flex-wrap:nowrap;margin:0 -20px;overflow-x:auto;overflow-y:hidden;padding:10px 0;position:relative;scrollbar-width:none}@media (min-width:760px){.MarketsBanner-marketData{margin-left:-40px;margin-right:-40px;padding:10px 0 0}}@media (min-width:1020px){.MarketsBanner-marketData{margin-left:0;margin-right:0}}.MarketsBanner-marketData::-webkit-scrollbar{display:none}.MarketsBanner-marketData.MarketsBanner-expanded{height:500px;z-index:101}.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton{color:#002f6c;font-size:11px;margin:0 10px 0 5px}.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton:disabled{color:#747474}@media (min-width:1340px){.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton{margin-left:-15px}}.MarketsBanner-teaserContainer{min-height:31px;min-width:1px}.MarketsBanner-teaser{display:block;height:auto;margin-left:-20px;margin-right:-20px;overflow:hidden;padding:0 20px;position:relative}.MarketsBanner-teaser a{color:#000;display:block;font-size:17px;font-weight:600;line-height:1.2}.MarketsBanner-teaser a:focus,.MarketsBanner-teaser a:hover{color:#000;text-decoration:underline}.MarketsBanner-container .MarketsBanner-teaser{padding-top:10px}@media (min-width:760px){.MarketsBanner-teaser{padding:15px 20px 0}.MarketsBanner-teaser a{height:auto}}.MarketsBanner-ad{height:0;margin-top:auto;overflow:hidden;width:0}@media (min-width:1020px){.MarketsBanner-ad{height:32px;margin-left:9px;width:89px}}@media (min-width:1340px){.MarketsBanner-ad{margin-left:25px}}.DeleteConfirmationModal-deleteConfirmation{display:flex;flex-direction:column;padding:40px}.DeleteConfirmationModal-buttons{display:flex;font-weight:500;justify-content:center;margin-top:15px}.DeleteConfirmationModal-buttons button{border-radius:4px;border-style:solid;border-width:1px;margin:0 8px;padding:10px 20px}.DeleteConfirmationModal-confirmationButton{background-color:#005594;border-color:#fff;color:#fff}.DeleteConfirmationModal-cancelButton{background-color:#fff;border-color:#005594;color:#005594}.AuthDropdown-container{align-content:center;align-items:center;background-color:#fff;box-shadow:0 1px 6px #00000040,0 -3px 0 #008456;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;justify-content:flex-start;padding:60px 20px 10px;position:fixed;text-align:center;z-index:9999}@media (min-width:760px){.AuthDropdown-container{justify-content:center;padding:10px 20px}}@media (max-width:1019px){.AuthDropdown-container{bottom:0;left:0;right:0;top:0}}@media (min-width:1020px){.AuthDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #008456;display:block;left:0;position:absolute;width:auto;z-index:999}.AuthDropdown-container.AuthDropdown-mini{left:0;right:auto}}.AuthDropdown-container .AuthDropdown-logoContainer{display:block;margin:15px auto;text-align:center}.AuthDropdown-container .AuthDropdown-logoContainerNew{display:flex;justify-content:center}.AuthDropdown-container .AuthDropdown-logoContainerNew img{height:48px}.AuthDropdown-container .AuthDropdown-simpleText{display:block;font-size:14px;font-weight:500;line-height:14px;margin:15px auto;text-align:center;width:231px}.AuthDropdown-container .AuthDropdown-signupButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:12px;font-weight:600;font-weight:700;height:40px;justify-content:center;letter-spacing:1px;letter-spacing:.1em;line-height:12px;margin:15px auto;padding:8px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:260px}.AuthDropdown-container .AuthDropdown-signupButton>span{display:block;line-height:12px}.AuthDropdown-container .AuthDropdown-signupButton [class*=" icon-"],.AuthDropdown-container .AuthDropdown-signupButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthDropdown-container .AuthDropdown-signupButton [class*=" icon-"]:before,.AuthDropdown-container .AuthDropdown-signupButton [class^=icon-]:before{line-height:12px}.AuthDropdown-container .AuthDropdown-signupButton:focus,.AuthDropdown-container .AuthDropdown-signupButton:hover{background-color:#00a857;border-color:#00a857;color:#fff}.AuthDropdown-container .AuthDropdown-signupButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthDropdown-container .AuthDropdown-signupButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}}@media (min-width:760px){.AuthDropdown-container .AuthDropdown-signupButton{padding:0 30px;width:auto}}.AuthDropdown-container .AuthDropdown-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}@media (min-width:1020px){.AuthDropdown-container .AuthDropdown-closeButton{display:none}}.AuthDropdown-container .AuthDropdown-newtocnbc{color:#071d39;font-size:10px;font-weight:600;line-height:12px;margin:15px auto;text-align:center}.AuthDropdown-container .AuthDropdown-signinButton{color:#008456;cursor:pointer;font-size:10px;font-weight:600;line-height:12px}.AuthDropdown-container .AuthDropdown-signinButton:hover{color:#00a857}.AuthDropdown-container .AuthDropdown-learnMoreButton{color:#008456;cursor:pointer;display:inline-block;font-size:12px;font-weight:700;letter-spacing:.1em;line-height:12px;margin:15px 0;width:auto}.AuthDropdown-container .AuthDropdown-learnMoreButton:hover{color:#00a857}.CustomBannerAdder-container{margin-right:10px;position:relative}@media only screen and (min-device-width:1200px){.CustomBannerAdder-container:hover .CustomBannerAdder-addTabtooltip{display:block}}.CustomBannerAdder-addButton{align-items:flex-end;display:flex;margin-top:6px;position:relative;z-index:112}@media (min-width:760px){.CustomBannerAdder-addButton{margin-top:4px}}.CustomBannerAdder-addTabtooltip{background:#fff;border:.2px solid #9e9e9e;box-shadow:0 2px 4px 0 #00000040;color:#424242;display:none;font-size:14px;font-weight:700;left:2px;letter-spacing:0;line-height:18px;padding:5px;position:absolute;text-align:center;top:25px;width:230px;z-index:111}.CustomBannerAdder-addTabtooltip:before{border:7px solid;border-color:#0000 #0000 #9e9e9e;content:"";left:0;margin-top:-14px;position:absolute;top:0}.CustomBannerAdder-addTabtooltip:after{border:7px solid;border-color:#0000 #0000 #fff;content:"";left:0;margin-top:-13px;position:absolute;top:0}.CustomBannerAdder-plusButton{height:17px;margin-right:4px;width:20px}.CustomBannerAdder-plusButton:after{background-color:#747474;bottom:auto;content:"";height:14px;position:absolute;right:0;top:1px;width:1px}@media (min-width:760px){.CustomBannerAdder-plusButton:after{top:2px}}.CustomBannerAdder-plusButton svg{fill:#2077b6;color:#2077b6}.CustomBannerAdder-plusButtonDisabled,.CustomBannerAdder-plusButtonDisabled path{fill:#747474;color:#747474}.CustomBannerAdder-dropdownContainer{position:relative;top:9px}.CustomBannerAdder-addTabContainer{background-color:#fff;position:absolute;width:100%;z-index:111}.MarketsBannerMenu-marketBannerMenuWrapper{display:flex;height:25px;width:100%}.MarketsBannerMenu-errorMessage{color:#ce2b2b;display:block;font-size:14px;font-weight:600;height:36px;line-height:18px;margin-bottom:5px;min-width:1px}@media (min-width:760px){.MarketsBannerMenu-errorMessage{height:18px}}.MarketsBannerMenu-container{align-items:flex-end;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:3px;overflow-x:auto;overflow-y:hidden;scrollbar-width:none}.MarketsBannerMenu-container::-webkit-scrollbar{display:none}@media (max-width:759px){.MarketsBannerMenu-container{margin-bottom:-2px;padding-bottom:5px}}@media (min-width:760px){.MarketsBannerMenu-container{justify-content:flex-start}}.MarketsBannerMenu-marketOption{color:#747474;font-size:14px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 10px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketsBannerMenu-marketOption:focus,.MarketsBannerMenu-marketOption:hover{color:#2e2e2e}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketsBannerMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketsBannerMenu-marketOption{margin:0 7px}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:16px}}.MarketsBannerMenu-cutomTabLabel{display:inline-block;max-width:120px;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.MarketsBannerMenu-activeMarket{color:#005594;font-weight:700}.MarketsBannerMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketsBannerMenu-activeMarket:focus,.MarketsBannerMenu-activeMarket:hover{color:#005594}@media (min-width:760px){.MarketsBannerMenu-activeMarket:after{bottom:auto;height:2px}}.MarketsBannerMenu-editButton{height:12px;margin-left:6px;width:12px}.MarketsBannerMenu-editButton img{display:inline-block}.MarketsBannerMenu-trashCan{align-self:start;height:16px;width:15px}.MarketsBannerMenu-trashCan img{display:inline-block}.MarketsBannerMenu-trashCan:disabled{cursor:wait}.MarketsBannerMenu-doneButton{align-self:start;height:16px;width:30px}.MarketsBannerMenu-doneButton img{display:inline-block}.MarketsBannerMenu-doneButton:disabled{cursor:wait}.MarketsBannerMenu-inputSizer{display:inline-grid;position:relative;vertical-align:top;width:max-content}.MarketsBannerMenu-inputSizer input{caret-color:#000;letter-spacing:inherit;max-height:19px;padding:0}.MarketsBannerMenu-inputSizer input:disabled{cursor:wait}.MarketsBannerMenu-inputSizer input,.MarketsBannerMenu-inputSizer textarea,.MarketsBannerMenu-inputSizer:after{-webkit-appearance:none;appearance:none;background:none;border:none;color:#747474;font:inherit;grid-area:1/2;margin:0;min-width:50px;resize:none;width:auto}.MarketsBannerMenu-inputSizer:after{color:#005594;content:attr(data-value);visibility:hidden;white-space:pre-wrap}.MarketsBannerMenu-inputSizer:focus-within input:focus,.MarketsBannerMenu-inputSizer:focus-within textarea:focus{outline:none}.MarketsBannerMenu-flexContainer{align-items:flex-start;display:flex;gap:5px;width:max-content}.MarketsBannerMenu-iconDoneDisabled,.MarketsBannerMenu-iconDoneDisabled rect,.MarketsBannerMenu-iconTabEditDisabled,.MarketsBannerMenu-iconTabEditDisabled path,.MarketsBannerMenu-iconTrashDisabled,.MarketsBannerMenu-iconTrashDisabled path{fill:#747474;color:#747474}.MarketCard-container{background-color:#9b9b9b;color:#fff;display:block;height:66px;margin:0 5px;max-width:152px;min-width:152px;position:relative}.MarketCard-container:focus,.MarketCard-container:hover{color:#ffffffe6}.MarketCard-container:first-child{margin-left:20px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-20px;width:20px}.MarketCard-container:last-child{box-sizing:initial;margin-right:0;padding-right:20px}@media (min-width:760px){.MarketCard-container{height:62px;margin-left:7px}.MarketCard-container:first-child{margin-left:40px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-40px;width:40px}.MarketCard-container:last-child{padding-right:40px}}@media (min-width:1020px){.MarketCard-container{height:66px;margin:0 7px;max-width:160px;min-width:160px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0;padding-right:0}}@media (min-width:1340px){.MarketCard-container{margin:0 25px;max-width:190px;min-width:190px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0}}.MarketCard-symbol{font-size:13px;font-weight:700;line-height:1.2}.MarketCard-stockPosition{font-size:13px;font-weight:600;line-height:1.2}.MarketCard-row{align-items:center;display:flex;flex-direction:row;height:33.33%;justify-content:space-between;padding:0 10px;width:100%}.MarketCard-row:first-child{transform:translateY(2px)}.MarketCard-row:last-child{transform:translateY(-2px)}.MarketCard-down{background-color:#ce2b2b}.MarketCard-up{background-color:#008456}.MarketCard-triangle-down,.MarketCard-triangle-up{border-left:5px solid #0000;border-right:5px solid #0000;height:0;width:0}.MarketCard-triangle-up{border-bottom:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-up,.MarketCard-container:hover .MarketCard-triangle-up{border-bottom:10px solid #ffffffe6}.MarketCard-triangle-down{border-top:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-down,.MarketCard-container:hover .MarketCard-triangle-down{border-top:10px solid #ffffffe6}.MarketCard-changeData{align-items:center;display:flex;flex-direction:row;margin-left:auto}.MarketCard-changesPct,.MarketCard-changesPts{font-size:13px;line-height:1.16;position:relative}.MarketCard-changesPct{font-weight:500;margin-left:5px}@media (min-width:1020px){.MarketCard-changesPct{margin-left:7px}}.MarketCard-changesPts{font-weight:600}.MarketCard-lastTime{font-size:9px;font-weight:600;opacity:.7}@media (max-width:759px){.MarketCard-container{height:86px;max-width:142px;min-width:142px}.MarketCard-row:first-child{align-items:flex-start;flex-direction:column;height:44%;justify-content:space-evenly;transform:translateY(2px)}.MarketCard-row:nth-child(2){height:28%;transform:translateY(2px)}.MarketCard-row:nth-child(3){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-changeData{flex-direction:column}.MarketCard-wrap .MarketCard-row:nth-child(2){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-triangle-down,.MarketCard-wrap .MarketCard-triangle-up{transform:translateY(2px)}}.AddSymbol-wrapper{display:block;margin:0 5px;position:relative}.AddSymbol-wrapper:first-child{margin-left:20px}.AddSymbol-wrapper:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-20px;width:20px}.AddSymbol-wrapper:last-child{box-sizing:initial;margin-right:0;padding-right:20px}@media (min-width:760px){.AddSymbol-wrapper{margin-left:7px}.AddSymbol-wrapper:first-child{margin-left:40px}.AddSymbol-wrapper:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-40px;width:40px}.AddSymbol-wrapper:last-child{padding-right:40px}}@media (min-width:1020px){.AddSymbol-wrapper{margin:0 7px}.AddSymbol-wrapper:first-child{margin-left:0}.AddSymbol-wrapper:last-child{margin-right:0;padding-right:0}}@media (min-width:1340px){.AddSymbol-wrapper{margin:0 25px}.AddSymbol-wrapper:first-child{margin-left:0}.AddSymbol-wrapper:last-child{margin-right:0}}.AddSymbol-addSymbolButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-size:17px;font-weight:500;gap:10px;height:66px;justify-content:center;letter-spacing:.5px;max-width:152px;min-width:152px;position:relative;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;text-underline-offset:4px}.AddSymbol-addSymbolButton:disabled{border-color:#747474;color:#747474;-webkit-text-decoration-color:#747474;text-decoration-color:#747474}.AddSymbol-addSymbolButton:focus,.AddSymbol-addSymbolButton:hover{color:#002f6c}.AddSymbol-addSymbolButton:focus:disabled,.AddSymbol-addSymbolButton:hover:disabled{border-color:#747474;color:#747474}@media (min-width:760px){.AddSymbol-addSymbolButton{height:62px}}@media (min-width:1020px){.AddSymbol-addSymbolButton{height:66px;max-width:160px;min-width:160px}}@media (min-width:1340px){.AddSymbol-addSymbolButton{max-width:190px;min-width:190px}}@media (max-width:759px){.AddSymbol-addSymbolButton{height:86px;max-width:142px;min-width:142px}}.AddSymbol-iconDisabled,.AddSymbol-iconDisabled path{fill:#747474;color:#747474}.AddSymbol-addingSymbol{border-bottom:none;padding-bottom:1px;z-index:1000}.AddSymbol-addingSymbol:after{background:#fff;border-left:1px solid #002f6c;border-right:1px solid #002f6c;bottom:0;content:"";height:5px;margin-bottom:-5px;margin-right:-1px;position:absolute;right:0;width:100%}.AddSymbol-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:97}.AddSymbol-dropdownWrapper{position:absolute;top:35px;width:100%;z-index:999}@media (min-width:760px){.AddSymbol-dropdownWrapper{top:31px}}@media (min-width:1020px){.AddSymbol-dropdownWrapper{top:35px}}@media (max-width:759px){.AddSymbol-dropdownWrapper{top:55px}}
.QuickLinks-container{display:block;margin-bottom:20px;margin-top:15px;position:relative}@media (min-width:1020px){.QuickLinks-container{display:flex;margin:0 auto 20px;overflow:hidden;padding-left:0;width:960px}}@media (min-width:1340px){.QuickLinks-container{width:1290px}}.QuickLinks-scrollableContainer{-ms-overflow-style:none;-webkit-overflow-scrolling:touch;overflow-x:scroll;overflow-y:hidden;padding-left:20px;scrollbar-width:none;white-space:nowrap}.QuickLinks-scrollableContainer::-webkit-scrollbar{display:none}@media (min-width:760px){.QuickLinks-scrollableContainer{margin-bottom:-15px;padding-bottom:15px;padding-left:45px;white-space:nowrap}}@media (min-width:1020px){.QuickLinks-scrollableContainer{-webkit-overflow-scrolling:auto;padding-left:0}}.QuickLinks-leftGradient:after{background-image:linear-gradient(270deg,#fff,#fff0 106%);content:"";height:40px;left:0;pointer-events:none;position:absolute;transform:rotate(-180deg);width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-leftGradient:after{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-leftGradient:after{background:#0000}}@supports (-ms-accelerator:true){.QuickLinks-leftGradient:after{background:#0000}}.QuickLinks-rightGradient:before{background-image:linear-gradient(270deg,#fff,#fff0 106%);content:"";height:40px;pointer-events:none;position:absolute;right:0;width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-rightGradient:before{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-rightGradient:before{background:#0000}}@supports (-ms-accelerator:true){.QuickLinks-rightGradient:before{background:#0000}}.QuickLinks-desktopHeader{color:#414042;display:none;font-size:14px;font-weight:600;letter-spacing:.154px;line-height:20px;padding-right:10px;white-space:nowrap}@media (min-width:1020px){.QuickLinks-desktopHeader{display:inline}}.QuickLinks-deviceHeader{display:block;margin-bottom:5px;padding-left:20px}@media (min-width:760px){.QuickLinks-deviceHeader{padding-left:45px}}@media (min-width:1020px){.QuickLinks-deviceHeader{display:none}}.QuickLinks-quickLink{background:#edeff3;border-radius:4px;font-size:15px;font-weight:600;letter-spacing:.2375px;line-height:35px;margin-right:10px;padding:6.5px 20px;text-align:center;white-space:nowrap}.QuickLinks-quickLink:last-child{margin-right:20px}@media (min-width:760px){.QuickLinks-quickLink:last-child{margin-right:45px}}@media (min-width:1020px){.QuickLinks-quickLink:last-child{margin-right:0}}.QuickLinks-quickLink a{color:#005594}@media (min-width:1020px){.QuickLinks-mobileOnly{display:none}}
.FeaturedThumbnail-mediaContainer{display:none}@media (min-width:760px){.FeaturedThumbnail-mediaContainer{bottom:14px;display:block;position:relative}}.FeaturedThumbnail-featuredVideoContainer{height:90px;position:absolute;width:119.01px}.FeaturedThumbnail-playButton{position:relative}.FeaturedThumbnail-videoBackdrop{background:linear-gradient(180deg,#fff0 56%,#0009 74%,#0009);height:100%;width:100%}.FeaturedThumbnail-videoText{bottom:0;color:#fcb700;font-size:10px;font-weight:800;letter-spacing:2px;line-height:12.18px;margin:0 0 10px 10px;position:absolute;text-transform:uppercase}.FeaturedThumbnail-videoDuration{color:#fff;font-size:10px;font-weight:700;letter-spacing:1.44px;line-height:12px;margin-left:10px;text-align:left}@media (max-width:1020px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}@media (max-width:360px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}.FeaturedThumbnail-promoImage{display:block;height:90px;width:119.01px}.ProIconWithBorder-container{display:none}@media (min-width:1020px){.ProIconWithBorder-container{display:flex}}.ProIconWithBorder-pcpContainer{display:none}@media (min-width:1020px){.ProIconWithBorder-pcpContainer{display:block;position:relative;top:7px}}.ProIconWithBorder-divider{border-bottom:1px dashed #747474;flex:1;margin:5px 18px 5px 0;max-width:94%}.ProIconWithBorder-proSvg{float:right;position:relative;top:-6px}.ProHeadline-headlineCard{border-bottom:1px dashed #747474;padding-bottom:12px}.ProHeadline-eyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadline-eyebrow a:focus,.ProHeadline-eyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadline-eyebrow{margin-top:16px}.ProHeadline-headline{margin-top:4px}.ProHeadline-headline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:4px 0}.ProHeadline-headline a:focus,.ProHeadline-headline a:hover{color:#171717;text-decoration:underline}@media (max-width:759px){.ProHeadline-headline a{font-size:14px;line-height:18px}}.ProHeadline-pcpUnderline{border-bottom:1px solid #d9d9d9}.ProHeadline-videoIndicatorImage{display:inline-block;height:14px;margin-left:5px;width:14px}.ProHeadlines-container{overflow:hidden;padding-top:0}@media (min-width:1020px){.ProHeadlines-container{padding-left:27px}.ProHeadlines-pcpProHeadlinesContainer{margin-top:-20px}}.ProHeadlines-collapsedContainer{display:flex;gap:30px}.ProHeadlines-proArticlesBelowVideoContainer{margin-top:20px;width:calc(55% - 15px)}.ProHeadlines-featuredCard{border-bottom:1px dashed #747474;display:block;padding-bottom:12px}.ProHeadlines-featuredVideo{border-bottom:1px dashed #747474;display:flex;padding-bottom:12px}.ProHeadlines-featuredEyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadlines-featuredEyebrow a:focus,.ProHeadlines-featuredEyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadlines-featuredEyebrow{margin-top:18px}@media (min-width:760px){.ProHeadlines-featuredEyebrow{margin-top:32px}}@media (min-width:1020px){.ProHeadlines-featuredEyebrow{margin-top:16px}}.ProHeadlines-featuredHeadline{margin-top:4px}.ProHeadlines-featuredHeadline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px}.ProHeadlines-featuredHeadline a:focus,.ProHeadlines-featuredHeadline a:hover{color:#171717;text-decoration:underline}@media (min-width:760px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}@media (min-width:1020px){.ProHeadlines-featuredHeadline a{font-size:18px;line-height:22px}}@media (min-width:1340px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}.ProHeadlines-summary{color:#171717;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:-.001em;line-height:24px;margin-top:4px;text-align:left}@media (max-width:1339px){.ProHeadlines-summary{font-size:16px;line-height:19.49px}}@media (max-width:1019px){.ProHeadlines-summary{display:none}}.ProHeadlines-featuredVideoImage{display:inline-block;height:14px;margin-left:5px;width:14px}@media (min-width:1020px){.ProHeadlines-featuredVideoImage{display:none}}.ProHeadlines-buttonContainer{position:relative}.ProHeadlines-collapseButton,.ProHeadlines-expandButton{color:#002f6c;display:flex;justify-content:center;margin-top:24px;width:100%;z-index:99}.ProHeadlines-collapseButton{background-image:url(https://static-redesign.cnbcfm.com/dist/510b37b77304b13eb511.svg);background-repeat:no-repeat;background-size:contain;height:30px;margin-left:auto;margin-right:auto;width:30px}@media (max-width:759px){.ProHeadlines-collapseButton{height:12px;margin-top:20px;width:20px}}.ProHeadlines-expandButton{border:1px solid #002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.09px;line-height:12px;padding-bottom:14px;padding-top:14px;text-transform:uppercase}.ProHeadlines-dropdownArrow{background:#002f6c;height:12px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);width:12px}.CNBCHomepageProWrapper-main:after{clear:both;content:"";display:table}@media (min-width:1340px){.CNBCHomepageProWrapper-main:after{display:none}}.CNBCHomepageProWrapper-loggedInContainer{margin:0 auto;max-width:1290px}.CNBCHomepageProWrapper-loggedInContainerCollapsable{display:flex;flex-direction:column}.CNBCHomepageProWrapper-videoContainer{border-top:none}@media (min-width:1020px){.CNBCHomepageProWrapper-videoContainer{float:left;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-videoContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-pcpVideoContainer{box-shadow:5px 5px 20px 0 #00000040}.CNBCHomepageProWrapper-pcpVideoContainerClosed{float:none}.CNBCHomepageProWrapper-content{display:flex;flex-direction:column;margin-top:20px;padding-bottom:105px;position:relative}@media (min-width:760px){.CNBCHomepageProWrapper-content{float:left;margin:0 0 0 30px;width:calc(50% - 15px)}}@media (min-width:1020px){.CNBCHomepageProWrapper-content{width:calc(44.44% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-content{width:calc(50% - 15px)}}@media (min-width:360px){.CNBCHomepageProWrapper-content{padding-bottom:25px}}.CNBCHomepageProWrapper-proicon{display:block;margin-bottom:15px;width:42px}.CNBCHomepageProWrapper-proicon img{max-width:100%}@media (min-width:760px){.CNBCHomepageProWrapper-proicon{width:37px}}@media (min-width:1020px){.CNBCHomepageProWrapper-proicon{width:52px}}.CNBCHomepageProWrapper-title{color:#002f6c;font-size:28px;font-weight:700;line-height:1.07;margin:0 0 10px}@media (min-width:760px){.CNBCHomepageProWrapper-title{font-size:30px;line-height:1.06;margin-bottom:20px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:15px}}@media (min-width:1020px){.CNBCHomepageProWrapper-title{font-size:40px;line-height:1.1;max-width:410px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:20px}}@media (min-width:1340px){.CNBCHomepageProWrapper-title{font-size:48px;line-height:1.02}}.CNBCHomepageProWrapper-description{color:#cfd8e2;font-size:18px;font-weight:500;line-height:1.375;margin:0}@media (min-width:360px){.CNBCHomepageProWrapper-description{font-size:16px}}.CNBCHomepageProWrapper-description span{color:#fff;font-weight:600;text-transform:uppercase}@media (min-width:1020px){.CNBCHomepageProWrapper-description{max-width:340px}}@media (min-width:1340px){.CNBCHomepageProWrapper-description{max-width:520px}}.CNBCHomepageProWrapper-description a{color:#002f6c}.CNBCHomepageProWrapper-description a:hover{color:#fcb700}.CNBCHomepageProWrapper-iframeContainer{border:none;height:470px;width:100%}.CNBCHomepageProWrapper-proliveCollapsableContainer{align-items:center;background:linear-gradient(181.49deg,#171717 1.27%,#17171700 427.68%);border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:5px 5px 20px 0 #00000040;display:flex}@media (min-width:1020px){.CNBCHomepageProWrapper-proliveCollapsableContainer{float:left;height:52px;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-proliveCollapsableContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-proliveCollapsedContainer{border-radius:4px}.CNBCHomepageProWrapper-liveIndicatorContainer{color:#fff;display:flex;font-size:14px;font-weight:700;left:20px;line-height:16px;position:relative}.CNBCHomepageProWrapper-liveIndicator{background:#e80101;border-radius:50%;content:"";height:8px;margin-right:6px;opacity:1;position:relative;top:4px;transition:opacity .15s cubic-bezier(0,.25,.25,1);width:8px}.CNBCHomepageProWrapper-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.CNBCHomepageProWrapper-dismissButton{height:16px;pointer-events:none;width:16px}.CNBCHomepageProWrapper-proLivePlayerClosed{transform:rotate(45deg)}.LegacyPlayerContainer-legacyPlayerContainer{background-color:#f7f7f7;margin-bottom:30px;padding:20px;width:100vw}@media (min-width:1340px){.LegacyPlayerContainer-legacyPlayerContainer{max-width:none}}@media (min-width:760px){.LegacyPlayerContainer-legacyPlayerContainer{padding:40px}}@media (min-width:1020px){.LegacyPlayerContainer-legacyPlayerContainer{margin-bottom:40px;padding-bottom:40px;padding-top:30px}}
.NewsHeroImage-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.NewsHeroImage-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.NewsHeroImage-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.NewsHeroImage-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.NewsHeroImage-videoTime{letter-spacing:1.44px}}.PackageItem-link:hover{color:#fff;text-decoration:underline}.PackageItem-container{margin-bottom:8px}.PackageItem-container a:hover{color:#fff;text-decoration:underline}.PackageItem-videoIcon{display:inline;max-width:20px;transform:translateY(4px)}.PackageItems-link:hover{color:#fff;text-decoration:underline}.PackageItems-container{margin-bottom:8px}.PackageItems-container a:hover{color:#fff;text-decoration:underline}.PackageItems-container li{border-top:1px solid #747474;font-size:14px;font-style:normal;font-weight:600;line-height:16px;padding:12px 0}@media (min-width:760px){.PackageItems-container li{font-size:16px;line-height:18px}}@media (min-width:1020px){.PackageItems-container li{font-size:14px;line-height:16px}}@media (min-width:1340px){.PackageItems-container li{font-size:16px}}.PackageItems-videoIcon{max-width:20px}.FeaturedCard-container{background-color:#071d39;cursor:pointer;height:auto;margin:0 -2px 32px 0;position:relative;width:auto}@media (min-width:360px){.FeaturedCard-container{height:440px;left:-1px;min-width:375px}}@media (min-width:760px){.FeaturedCard-container{height:auto;left:0;min-height:440px}}@media (min-width:1020px){.FeaturedCard-container{height:405px;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-container{height:515px;min-width:630px}}.FeaturedCard-container:hover .FeaturedCard-title a{color:#fff;text-decoration:underline}.FeaturedCard-container img{height:auto;width:100%}.FeaturedCard-container .FeaturedCard-content{background:#071d39;bottom:0;padding:0 32px;position:absolute;width:100%;z-index:2}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-contentText{position:relative;top:-12px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{color:#fff}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a:hover{text-decoration:underline}.FeaturedCard-container .FeaturedCard-content p{color:#fff;font-size:14px;line-height:16px;margin-top:8px}@media (min-width:360px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:27px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:24px;line-height:27px}}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content{contentText-top:-18px;padding:0 40px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:34px;line-height:38px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:20px;line-height:22px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:22px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:20px;line-height:22px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content{padding:0 32px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:32px;line-height:36px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}.FeaturedCard-container .FeaturedCard-content:before{background:linear-gradient(#0000,#071d39);content:"";height:65px;left:0;position:absolute;top:-65px;width:100%}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content:before{height:120px;top:-118px}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content:before{height:28px;top:-28px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content:before{height:63px;top:-63px}}.FeaturedCard-imageContainer{position:relative}.FeaturedCard-videoIcon{display:inline;margin-bottom:4px;max-width:48px;padding-right:5px;position:relative;top:1px}@media (min-width:760px){.FeaturedCard-videoIcon{margin-bottom:10px}}@media (min-width:1020px){.FeaturedCard-videoIcon{margin-bottom:4px}}@media (min-width:1340px){.FeaturedCard-videoIcon{margin-bottom:8px}}@media (min-width:360px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:270px;left:-1px;min-width:375px}}@media (min-width:760px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:530px;left:0;min-height:440px}}@media (min-width:1020px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:312px;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:354px;min-width:630px}}.FeaturedCard-standaloneContainerBerkshire{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 -2px 32px 0;position:relative;width:auto}@media (min-width:360px){.FeaturedCard-standaloneContainerBerkshire{height:auto;left:-1px;min-width:375px;padding:0 21px}}@media (min-width:760px){.FeaturedCard-standaloneContainerBerkshire{height:auto;left:0;min-height:440px;padding:0 21px}}@media (min-width:1020px){.FeaturedCard-standaloneContainerBerkshire{height:auto;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-standaloneContainerBerkshire{height:auto;min-width:630px}}.FeaturedCard-standaloneContainerBerkshire .jw-slider-time{display:none}.FeaturedNewsHero-container{display:block;height:auto;margin:0 -20px}@media (min-width:360px){.FeaturedNewsHero-container{display:block;margin:0 -20px}}@media (min-width:760px){.FeaturedNewsHero-container{left:-1px;margin-left:-45px;margin-right:-45px;min-width:768px;position:relative}}@media (min-width:1020px){.FeaturedNewsHero-container{display:flex;margin:0;min-width:0}}.SecondaryCard-container img{height:auto;width:100%}@media (min-width:1020px){.SecondaryCard-container{width:190px}}@media (min-width:1340px){.SecondaryCard-container{width:300px}}.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{color:#171717;font-size:17px;font-weight:600}.SecondaryCard-headline a:focus,.SecondaryCard-headline a:hover{color:#171717;text-decoration:underline}@media (min-width:360px){.SecondaryCard-headline a{font-size:18px;line-height:20px}}@media (min-width:1020px){.SecondaryCard-headline a{font-size:16px;line-height:18px}}@media (min-width:1340px){.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{font-size:18px;line-height:20px}}.SecondaryCard-headlineHovered a{text-decoration:underline}.SecondaryCard-imageContainer{position:relative}@media (min-width:360px){.SecondaryCard-imageContainer{min-width:318px}}@media (min-width:760px){.SecondaryCard-imageContainer{min-width:324px}}@media (min-width:1020px){.SecondaryCard-imageContainer{min-width:0;width:190px;width:unset}}.SecondaryCardContainer-container{padding:0 21px}@media (min-width:760px){.SecondaryCardContainer-container{float:left;padding:0 41px;width:100%}.SecondaryCardContainer-container ul>li:first-child{margin-right:30px}.SecondaryCardContainer-container ul>li{float:left;width:47%}}@media (min-width:1020px){.SecondaryCardContainer-container{padding:0 0 0 30px}.SecondaryCardContainer-container ul>li,.SecondaryCardContainer-container ul>ol{width:100%}}@media (min-width:1340px){.SecondaryCardContainer-container{min-width:330px;padding:0 0 0 30px}}.SecondaryCardContainer-container li,.SecondaryCardContainer-container ol,.SecondaryCardContainer-container ul{list-style:none;margin:0;padding:0}
.EventSignUp-confirmationTitle,.EventSignUp-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:28px;margin:0 0 10px}.EventSignUp-confirmationTitle:before,.EventSignUp-title:before{background-color:#002f6c;content:"";display:block;height:5px;margin:0 0 11px;width:100%}@media (min-width:760px) and (max-width:1019px){.EventSignUp-confirmationTitle,.EventSignUp-title{font-size:28px}}.EventSignUp-description{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:22px;margin:0 0 22px;text-align:left}@media (min-width:760px) and (max-width:1019px){.EventSignUp-description{font-size:18px;line-height:24px}}.EventSignUp-email{background-color:#fff;border:1px solid #424242;border-radius:3px;box-sizing:border-box;color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;height:50px;letter-spacing:.15px;margin:0 0 15px;padding:14px;width:100%}.EventSignUp-email::placeholder{color:#424242;font-weight:500}.EventSignUp-success{color:#39bb7a}.EventSignUp-emailError,.EventSignUp-error,.EventSignUp-success{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:.15px;line-height:16px;margin:0 0 15px}.EventSignUp-emailError,.EventSignUp-error{color:#ce2b2b}.EventSignUp-emailError{font-size:16px;font-weight:400}.EventSignUp-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;display:block;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 0 14px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.EventSignUp-submitButton>span{display:block;line-height:12px}.EventSignUp-submitButton [class*=" icon-"],.EventSignUp-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.EventSignUp-submitButton [class*=" icon-"]:before,.EventSignUp-submitButton [class^=icon-]:before{line-height:12px}.EventSignUp-submitButton:focus,.EventSignUp-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.EventSignUp-submitButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}@media (hover:hover){.EventSignUp-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.EventSignUp-submitButton{padding:0 30px;width:auto}}.EventSignUp-confirmation{margin:0 0 40px}.EventSignUp-confirmationTitle{margin:0 0 17px;text-align:center}.EventSignUp-confirmationTitle:before{display:none}.EventSignUp-confirmationText,.EventSignUp-confirmationTextBold{font-size:14px;margin:0;text-align:center}.EventSignUp-confirmationTextBold{font-weight:500}.EventSignUp-confirmationTextBold a{color:#005594;text-decoration:underline}.EventSignUp-berkshireHathaway{background-color:#f8f8f8;padding:20px}.EventSignUp-berkshireHathaway .EventSignUp-description,.EventSignUp-berkshireHathaway .EventSignUp-email::placeholder{font-weight:400}.EventSignUp-berkshireHathaway .EventSignUp-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:0;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.EventSignUp-berkshireHathaway .EventSignUp-submitButton>span{display:block;line-height:12px}.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class*=" icon-"],.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class*=" icon-"]:before,.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class^=icon-]:before{line-height:12px}.EventSignUp-berkshireHathaway .EventSignUp-submitButton:focus,.EventSignUp-berkshireHathaway .EventSignUp-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.EventSignUp-berkshireHathaway .EventSignUp-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#005594;color:#fff}@media (hover:hover){.EventSignUp-berkshireHathaway .EventSignUp-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.EventSignUp-berkshireHathaway .EventSignUp-submitButton{padding:0 30px;width:auto}}@media (max-width:1019px){.EventSignUp-berkshireHathaway{margin-bottom:76px}}@media (max-width:759px){.EventSignUp-berkshireHathaway{margin-bottom:25px}}.DisclosureAgreement-disclosures{align-items:start;display:grid;grid-template-columns:auto 1fr;margin:0 0 40px}.DisclosureAgreement-checkbox{border:2px solid #9e9e9e;border-radius:2px;height:15px;margin:0 5px 0 0;width:16px}.DisclosureAgreement-checkboxActive{background:#2077b6;border:2px solid #2077b6}.DisclosureAgreement-checkboxInput{opacity:0;position:absolute;visibility:hidden}.DisclosureAgreement-link,.DisclosureAgreement-text{color:#747474;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;letter-spacing:-.001em;line-height:14px}.DisclosureAgreement-link{color:#005594}.DisclosureAgreement-link:hover{text-decoration:underline}.DisclosureAgreement-uppercase{text-transform:uppercase}.DisclosureAgreement-berkshireHathaway .DisclosureAgreement-link{color:#747474}
.QuoteResult-resultContainer{border-bottom:1px dashed #9b9b9b;display:flex;font-size:12px;font-weight:500;justify-content:space-between;min-height:50px;padding:10px 0}.QuoteResult-resultContainer:focus{outline:1px solid #fcb700}.QuoteResult-container{padding:10px}.QuoteResult-container:nth-child(odd){background-color:#f8f8f8}.QuoteResult-leftSide{text-align:left}.QuoteResult-leftSideNotSearchResult{align-items:center;display:flex}.QuoteResult-rightSide{display:flex;flex-direction:column;justify-content:center;text-align:right}.QuoteResult-link{display:inline-block}.QuoteResult-symbol{color:#171717;font-size:14px;font-weight:700}.QuoteResult-symbol:focus,.QuoteResult-symbol:hover{color:#2077b6}.QuoteResult-name{color:#5d5d5d;font-size:12px;font-weight:500}.QuoteResult-unchanged{color:#5d5d5d;font-weight:500;text-transform:uppercase}.QuoteResult-value{color:#008456;font-size:12px;font-weight:500}.QuoteResult-negValue{color:#ce2b2b}.QuoteResult-price{color:#171717;font-size:14px;font-weight:600;line-height:114%}.QuoteResult-buttonContainer{position:relative}.AutoSuggestList-container{background-color:#fff;border:1px solid #979797;left:0;padding:10px 20px 20px;position:static;top:39px;width:100%}.AutoSuggestList-viewResults{color:#2077b6;font-size:12px;font-weight:500;letter-spacing:1px;padding-top:20px;text-transform:uppercase}.AutoSuggestList-viewResults:hover{text-decoration:underline}.QuoteList-title{border-bottom:1px dashed #9b9b9b;color:#071d39;font-size:14px;font-weight:500;letter-spacing:1.2px;margin:0;padding:20px 10px 18px}.QuoteFinder-container{margin-bottom:27px;position:relative}@media (min-width:360px) and (max-width:759px){.QuoteFinder-container{margin-bottom:20px}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-container{margin-bottom:20px}}.QuoteFinder-title{border-top:6px solid #002f6c;color:#002f6c;font-size:18px;font-weight:800;margin:0 0 8px;padding:10px 0 0;text-transform:uppercase}.QuoteFinder-form{display:block;position:relative}.QuoteFinder-form ::placeholder{color:#747474;margin-left:10px;text-transform:uppercase}input.QuoteFinder-searchInput[type=search]{-webkit-appearance:none;border:none;border-bottom:1px solid #071d39;border-radius:1px;color:#071d39;display:block;font-size:14px;font-weight:500;height:40px;letter-spacing:1.28px;padding-left:10px;text-transform:uppercase;width:100%}.QuoteFinder-submitBtn{background-color:#fff;bottom:0;height:0;margin-top:6px;overflow:hidden;padding:20px 10px 0 0;position:absolute;right:0;top:0;width:30px}.QuoteFinder-submitBtn:before{color:#2077b6;font-size:20px;height:100%;left:0;line-height:20px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:360px) and (max-width:759px){.QuoteFinder-hideOnMobile{display:none}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-hideOnMobile{display:none}}
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}.MarketMoverPlusTable-container{margin-bottom:15px;width:100%}@media (min-width:1020px){.MarketMoverPlusTable-container{margin-bottom:20px}}.MarketMoverPlusTable-tableContainer{width:100%}.MarketMoverPlusTable-dataContainer{background:#f8f8f8;padding:8px}.MarketMoverPlusTable-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.MarketMoverPlusTable-dataContainer{padding:8px 27px}}@media (min-width:1020px){.MarketMoverPlusTable-dataContainer{padding:8px}}.MarketMoverPlusTable-dataRow{display:flex;justify-content:space-between}.MarketMoverPlusTable-companyName{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;max-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:1020px){.MarketMoverPlusTable-companyName{font-size:12px;line-height:14px}}.MarketMoverPlusTable-tableHeader{color:#747474;font-size:14px;font-weight:600;letter-spacing:.35px;line-height:24px;padding-left:8px;text-transform:uppercase}@media (min-width:760px){.MarketMoverPlusTable-tableHeader{padding-left:27px}}@media (min-width:1020px){.MarketMoverPlusTable-tableHeader{padding-left:8px}}.MarketMoverPlusTable-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteGain{font-size:12px;line-height:10px}}.MarketMoverPlusTable-symbolName{display:flex}.MarketMoverPlusTable-addWatchlist{left:2px;position:relative;top:-6px}@media (min-width:1020px){.MarketMoverPlusTable-dropdownStyles{left:5px!important;width:150px!important}}.MarketMoverPlusTable-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteDecline{font-size:12px;line-height:10px}}.MarketMoverPlusTable-quoteDecline span:first-child,.MarketMoverPlusTable-quoteGain span:first-child{padding-left:8px;padding-right:5px}.MarketMoverPlusTable-lastPrice,.MarketMoverPlusTable-symbolName{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.MarketMoversPlus-container{border-top:6px solid #002f6c;display:none}@media (min-width:1020px){.MarketMoversPlus-container{display:block}}.MarketMoversPlus-containerPersistent{border-top:6px solid #002f6c;display:block}@media (min-width:1020px){.MarketMoversPlus-sponsorLogo{margin-top:0}}@media (min-width:1340px){.MarketMoversPlus-sponsorLogo{margin-top:-5px}}.MarketMoversPlus-decoration{background-color:#0089d0;display:block;height:6px;left:0;position:absolute;top:-5px;width:80px}@media (min-width:760px){.MarketMoversPlus-decoration{width:110px}}.MarketMoversPlus-header{display:flex;font-weight:800;justify-content:space-between;margin-top:10px}.MarketMoversPlus-header a{color:#002f6c;font-size:18px;letter-spacing:.5px;line-height:21px;text-transform:uppercase}@media (min-width:1020px){.MarketMoversPlus-header a{font-size:18px;line-height:15px}}@media (min-width:1340px){.MarketMoversPlus-header a{font-size:18px;line-height:21px}}.MarketMoversPlus-header a:hover{color:#2077b6}
.NativeRiver-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.RiverByline-bylineContainer{display:none}@media (min-width:760px){.RiverByline-bylineContainer{display:flex}}.RiverByline-mobileBylineContainer{border-bottom:1px solid #dedede;display:flex;padding-bottom:16px}@media (min-width:760px){.RiverByline-mobileBylineContainer{display:none}}.RiverByline-authorBylineContainer{display:flex}.RiverByline-hasSeparator{padding-bottom:5px}@media (min-width:760px){.RiverByline-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.RiverByline-hasSeparator{height:auto}}@media (min-width:1340px){.RiverByline-hasSeparator{height:14px}}.RiverByline-datePublished{margin-bottom:5px}.RiverByline-datePublished,.RiverByline-watchLive{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.RiverByline-breakerSeparator,.RiverByline-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-7px}.RiverByline-breakerSeparator{display:none}@media (min-width:760px){.RiverByline-breakerSeparator{display:block}}.RiverByline-authorByline{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.461538px;line-height:14px}.RiverByline-authorByline a{color:inherit}.RiverByline-authorByline a:focus,.RiverByline-authorByline a:hover{text-decoration:underline}.RiverByline-byText,.RiverByline-bylineComma{padding-right:4px}.RiverThumbnail-thumbnailContainer{margin-left:24px}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer{margin-left:40px}}.RiverThumbnail-thumbnailContainer img{height:auto;width:100px}@media (min-width:760px){.RiverThumbnail-thumbnailContainer img{width:120px}}@media (min-width:1020px){.RiverThumbnail-thumbnailContainer img{width:112px}}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer img{width:120px}}.RiverThumbnail-breakerImage{margin-bottom:16px}@media (min-width:760px){.RiverThumbnail-breakerImage{margin-bottom:none}}.RiverThumbnail-breakerImage img{height:auto;width:100%}.RiverThumbnail-imageThumbnail{position:relative}.RiverThumbnail-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.RiverThumbnail-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.RiverThumbnail-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.RiverThumbnail-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.RiverThumbnail-videoTime{letter-spacing:1.44px}}.RiverHeadline-headline{font-size:16px;font-weight:600;letter-spacing:.03px;line-height:18px;padding-bottom:24px}@media (min-width:760px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:32px}}@media (min-width:1020px){.RiverHeadline-headline{font-size:17px;line-height:19px;padding-bottom:32px;padding-right:24px}}@media (min-width:1340px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:56px}}.RiverHeadline-headline a{color:#171717}.RiverHeadline-headline a:focus,.RiverHeadline-headline a:hover{color:#171717;text-decoration:underline}.RiverHeadline-headlineHovered a{text-decoration:underline}.RiverHeadline-hasThumbnail{padding-bottom:0;padding-right:0}@media (min-width:760px){.RiverHeadline-hasThumbnail{padding-bottom:16px}}@media (min-width:1340px){.RiverHeadline-hasThumbnail{padding-bottom:8px}}.RiverPlusBreaker-container{border-bottom:1px solid #dedede;display:flex;justify-content:space-around}.RiverPlus-riverPlusContainer{padding-bottom:30px}
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}.MarketSymbolDropdown-dropdownButton.MarketSymbolDropdown-dropdownButton{padding:0 0 0 4px}@media (min-width:760px){.MarketTop-container{max-width:48%;width:48%}}.MarketTop-topTable{margin:10px 0}.MarketTop-topTable tr{padding:0}.MarketTop-topTable td{line-height:15px;padding:5px 10px 5px 0;white-space:nowrap}.MarketTop-name{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:15px;max-width:25%}.MarketTop-name div{max-height:20px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MarketTop-barContainer{width:23%}@media (min-width:760px){.MarketTop-barContainer{width:11%}}@media (min-width:1180px){.MarketTop-barContainer{width:21%}}@media (min-width:1340px){.MarketTop-barContainer{width:42%}}.MarketTop-title{color:#171717;font-size:16px;font-weight:600;letter-spacing:.4px;line-height:24px;margin:20px 0 10px;text-transform:uppercase}.MarketTop-fullWidthContainer,.MarketTop-fullWidthContainer .MarketTop-topTable{width:100%}.MarketTop-fullWidthContainer .MarketTop-title{margin:10px 0}@media (min-width:1020px){.MarketTop-fullWidthContainer .MarketTop-name div{max-width:200px}}.MarketTop-bar{background-color:pink;height:16px}.MarketTop-gainBar{background-color:#008456}.MarketTop-declineBar{background-color:#ce2b2b}.MarketTop-quoteChange{font-size:12px;font-weight:600;line-height:15px;text-align:right}.MarketTop-quoteGain{color:#008456}.MarketTop-quoteDecline{color:#ce2b2b}.MarketTop-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.MarketTop-symbol a:focus,.MarketTop-symbol a:hover{color:#2077b6}.MarketTop-value{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.MarketTop-desktopOnly{display:none}@media (min-width:1020px){.MarketTop-desktopOnly{display:inline-block;position:relative}}.PageBuilder-article .MarketMovers-container a{text-decoration:none}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a{color:#171717}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a:hover{color:#2077b6}.MarketMovers-container{background-color:#cfd8e21a;border:1px dashed #b9c7d5;border-top:6px solid #002f6c;margin-bottom:30px;padding:10px;width:100%}@media (min-width:760px){.MarketMovers-container{padding-left:20px;padding-top:15px}}@media (min-width:1340px){.MarketMovers-container{padding-left:30px;padding-top:25px}}.MarketMovers-fullWidthContainer{margin-bottom:0}.MarketMovers-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:0 0 20px;position:relative;text-transform:uppercase}.MarketMovers-title a{color:inherit}.MarketMovers-title a:focus,.MarketMovers-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketMovers-title{font-size:24px;line-height:29px}}.MarketMovers-title a{color:#002f6c!important}.MarketMovers-title a:hover{color:#2077b6!important}@media (min-width:760px){.MarketMovers-title{letter-spacing:.36px;margin:0 40px 0 0}}@media (min-width:1020px){.MarketMovers-title{font-size:24px;letter-spacing:.4px;line-height:29px}}.MarketMovers-marketTopContainer{min-height:110px}@media (min-width:760px){.MarketMovers-marketTopContainer{display:flex;justify-content:space-between}}.MarketMovers-fullWidthMarketTopContainer{min-height:110px;width:100%}.MarketMovers-marketTopContainerStacked{display:flex;flex-direction:column}@media (min-width:760px){.MarketMovers-titleContainer{display:flex;justify-content:flex-start}}.MarketMovers-loadingContainer{align-items:center;display:flex;height:100%;justify-content:center;padding:30px 0 20px;width:100%}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.MarketNews-container{border-top:6px solid #002f6c;flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}@media (min-width:760px){.MarketNews-container{margin-bottom:30px}}.MarketNews-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:10px 0;text-transform:uppercase}.MarketNews-title a{color:inherit}.MarketNews-title a:focus,.MarketNews-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketNews-title{font-size:24px;line-height:29px}}.MarketNews-authorBylineContainer{display:flex}.MarketNews-hasSeparator{padding-bottom:5px}@media (min-width:760px){.MarketNews-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.MarketNews-hasSeparator{height:auto}}@media (min-width:1340px){.MarketNews-hasSeparator{height:14px}}.MarketNews-datePublished,.MarketNews-watchLive{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.MarketNews-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-5px}.MarketNews-byText,.MarketNews-bylineComma{padding-right:4px}.MarketsModule-container{padding-top:5px;width:100%}.MarketsModule-title{border-top:1px solid #747474;display:flex;justify-content:space-between;margin:0;padding:10px 0 20px;position:relative}.MarketsModule-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}@media (min-width:760px){.MarketsModule-title{padding-top:15px}}@media (min-width:1340px){.MarketsModule-title{padding-top:20px}}.MarketsModule-title h2{margin:0;padding:0;width:93%}.MarketsModule-title h2 a{color:#002f6c;font-size:40px;font-weight:800;letter-spacing:.33px;line-height:37px;text-transform:uppercase}.MarketsModule-title h2 a:hover{color:#2077b6}@media (min-width:1020px){.MarketsModule-title h2 a{font-size:32px}.MarketsModule-title h2{font-size:40px;letter-spacing:.44px;line-height:40px}}.MarketsModule-sponsorLogo{height:0;overflow:hidden;width:0}@media (min-width:1020px){.MarketsModule-sponsorLogo{height:30px;width:auto}}@media (min-width:760px){.MarketsModule-row{display:flex}}@media (min-width:1020px){.MarketsModule-row{margin-right:-30px}.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1340px){.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.MarketsModule-leftColumn{margin-bottom:30px}@media (min-width:760px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}.MarketsModule-leftColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.MarketsModule-marketTable{margin-bottom:30px}.MarketsModule-marketTable:last-child{margin-bottom:0}@media (min-width:760px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(41.66667% - 30px);max-width:41.66667%;min-width:calc(41.66667% - 30px)}.MarketsModule-rightColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}
.NativeThreeUp-container,.NativeThreeUpStackv2-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}.NativeThreeUpStackv2-container{display:none}.NativeUltraDense-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}
.FeaturedVideoHeader-container{background-color:#171717;display:flex;justify-content:space-between;padding:23px 0 15px;width:100%}@media (min-width:760px){.FeaturedVideoHeader-container{padding:40px 0 0}}@media (min-width:1020px){.FeaturedVideoHeader-container{padding-top:44px}}.FeaturedVideoHeader-lightMode{background:#f7f7f7}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-title{border-color:#747474;color:#002f6c}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-callToAction{border-color:#002f6c;color:#002f6c}.FeaturedVideoHeader-title{border-top:1px solid #fff;color:#fff;font-size:30px;font-weight:800;letter-spacing:.33px;line-height:40px;margin-bottom:10px;padding-top:15px;position:relative;text-transform:uppercase;width:calc(100% - 146px)}.FeaturedVideoHeader-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.FeaturedVideoHeader-title:before{width:110px}.FeaturedVideoHeader-title{line-height:37px;width:calc(100% - 142px)}}@media (min-width:1020px){.FeaturedVideoHeader-titleWithTwoBtns{font-size:32px;letter-spacing:.44px;line-height:40px;padding-bottom:5px;width:calc(100% - 284px)}}.FeaturedVideoHeader-titleDecorator{height:6px;left:0;position:absolute;top:-6px;width:110px}.FeaturedVideoHeader-callToAction{border:1px solid #fff;border-radius:0;color:#fff;font-size:12px;font-weight:600;height:40px;letter-spacing:1px;width:120px}.FeaturedVideoHeader-callToAction:focus,.FeaturedVideoHeader-callToAction:hover{background-color:#fcb700;border-color:#fcb700;color:#000}.FeaturedVideoHeader-wideOnly{display:none}@media (min-width:1020px){.FeaturedVideoHeader-wideOnly{display:inline-block}}.VideoRecirculationLinks-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.VideoRecirculationLinks-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.VideoRecirculationLinks-mobileWrapper{margin:0}.VideoRecirculationLinks-mobileWrapper:after{content:none}}.VideoRecirculationLinks-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.VideoRecirculationLinks-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.VideoRecirculationLinks-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.VideoRecirculationLinks-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}@media (max-width:1019px){.VideoRecirculationLinks-container{padding-top:0}}.VideoRecirculationLinks-card{margin-bottom:40px;margin-right:30px;width:190px}.VideoRecirculationLinks-card:hover{cursor:pointer}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title{color:#fff;text-decoration:underline}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-card{margin-right:57px}}@media (min-width:760px){.VideoRecirculationLinks-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.VideoRecirculationLinks-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.VideoRecirculationLinks-card{margin:0;padding:15px 0;position:relative;width:100%}.VideoRecirculationLinks-mobileWrapper .VideoRecirculationLinks-card:last-child{padding-right:0}}.VideoRecirculationLinks-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-watchVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-playingVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #fff;border-top:8px solid #0000;left:-20px;top:45%}}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage{border:2px solid #000}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #000;border-top:8px solid #0000;left:-20px;top:45%}}.VideoRecirculationLinks-title{color:#7b7b7b;color:#000;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title{color:#fff}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-title{padding-top:18px}}@media (min-width:1020px){.VideoRecirculationLinks-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.VideoRecirculationLinks-title{margin-left:186px}}@media (min-width:1340px){.VideoRecirculationLinks-title{font-size:18px;margin-left:240px}}.VideoRecirculationLinks-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.VideoRecirculationLinks-buttonWrapper{width:146px}}@media (min-width:1180px){.VideoRecirculationLinks-buttonWrapper{width:168px}}@media (min-width:1340px){.VideoRecirculationLinks-buttonWrapper{width:208px}}.VideoRecirculationLinks-toutTime{background:none;bottom:2px;color:#fffc;font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.VideoRecirculationLinks-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}.FeaturedLiveTvModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedLiveTvModule-container{display:flex}}@media (max-width:759px){.FeaturedLiveTvModule-mobileWrapper .FeaturedLiveTvModule-container{margin-right:0}}.FeaturedLiveTvModule-lightMode{background:#f7f7f7}.FeaturedLiveTvModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedLiveTvModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedLiveTvModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedLiveTvModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedLiveTvModule-content{padding-bottom:80px}}.FeaturedLiveTvModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedLiveTvModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedLiveTvModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedLiveTvModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedLiveTvModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}.FeaturedLiveTvModule-videoPlaceholder{background-color:gray;height:100%;width:100%}@media (min-width:360px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:20px;padding:0 20px}}@media (min-width:1020px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}.VideoPlayer-container{display:block;position:relative}.VideoPlayer-container:hover~.VideoPlayer-title{text-decoration:underline}.VideoPlayer-image{padding-bottom:56.2%;position:relative;width:100%}.VideoPlayer-title{color:#fff;cursor:pointer;font-size:22px;font-weight:600;line-height:26px;max-height:150px;min-height:100px;padding:20px}.VideoPlayer-title:hover{text-decoration:underline}@media (min-width:760px){.VideoPlayer-title{font-size:24px;line-height:28px;padding:20px 0}}@media (min-width:1340px){.VideoPlayer-title{padding-bottom:40px}}@media (min-width:1020px){.VideoPlayer-title{font-size:30px;max-height:200px;min-height:120px}}.Playlist-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.Playlist-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.Playlist-mobileWrapper{margin:0}.Playlist-mobileWrapper:after{content:none}}.Playlist-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.Playlist-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.Playlist-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.Playlist-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}.Playlist-card{margin-bottom:40px;margin-right:30px;width:190px}.Playlist-card:hover{cursor:pointer}.Playlist-card:hover .Playlist-title{color:#fff;text-decoration:underline}.Playlist-card:hover .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-card{margin-right:57px}}@media (min-width:760px){.Playlist-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.Playlist-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.Playlist-card{margin:0;padding:15px 0;position:relative;width:100%}.Playlist-mobileWrapper .Playlist-card:last-child{padding-right:0}}.Playlist-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-watchVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-playingVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #fff;border-top:8px solid #0000;left:-20px;top:45%}}.Playlist-lightMode.Playlist-playingVideoImage{border:2px solid #000}.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-lightMode.Playlist-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #000;border-top:8px solid #0000;left:-20px;top:45%}}.Playlist-title{color:#7b7b7b;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.Playlist-playing .Playlist-title{color:#fff}.Playlist-playing .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-title{padding-top:18px}}@media (min-width:1020px){.Playlist-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.Playlist-title{margin-left:186px}}@media (min-width:1340px){.Playlist-title{font-size:18px;margin-left:240px}}.Playlist-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.Playlist-buttonWrapper{width:146px}}@media (min-width:1180px){.Playlist-buttonWrapper{width:168px}}@media (min-width:1340px){.Playlist-buttonWrapper{width:208px}}.Playlist-toutTime{background:none;bottom:2px;color:#fffc;font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.Playlist-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}@media (min-width:1020px){.Playlist-liveEventContainer .Playlist-container{flex-direction:row;height:unset;margin:0 -15px;padding-left:unset;padding-top:25px}.Playlist-liveEventContainer .Playlist-card{flex-grow:1;margin-bottom:40px;margin-left:0;margin-right:0;min-width:0;padding:0 15px;position:unset;width:33.33%}.Playlist-liveEventContainer .Playlist-buttonWrapper{width:100%}.Playlist-liveEventContainer .Playlist-title{font-size:17px;font-weight:600;line-height:18px;margin-left:unset;margin-top:unset;padding-top:10px;position:unset;top:unset}.Playlist-liveEventContainer .Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-20px;width:0}.Playlist-liveEventContainer .Playlist-card:last-child{padding:0 15px}}.FeaturedVideoModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedVideoModule-container{display:flex}}@media (max-width:759px){.FeaturedVideoModule-mobileWrapper .FeaturedVideoModule-container{margin-right:0}}.FeaturedVideoModule-lightMode{background:#f7f7f7}.FeaturedVideoModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedVideoModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedVideoModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedVideoModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedVideoModule-content{padding-bottom:80px}}.FeaturedVideoModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedVideoModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedVideoModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedVideoModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedVideoModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}@media (min-width:760px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-playlistContainer{max-width:unset;min-width:unset}.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{display:block}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1340px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-videoPlayerContainer{max-width:unset;min-width:unset}}.SmallStockQuote-container{display:block;height:100%;position:relative;width:100%}.SmallStockQuote-container a,.SmallStockQuote-container a:focus,.SmallStockQuote-container a:hover{text-decoration:none!important}.SmallStockQuote-articleContainer{flex-shrink:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif}.SmallStockQuote-articleContainer a,.SmallStockQuote-articleContainer a:focus,.SmallStockQuote-articleContainer a:hover{text-decoration:none!important}@media (min-width:760px){.SmallStockQuote-articleContainer{width:442px}}@media (min-width:1020px){.SmallStockQuote-articleContainer{margin-left:0!important;width:460px}}@media (min-width:1340px){.SmallStockQuote-articleContainer{width:410px}}.SmallStockQuote-watchListContainer a,.SmallStockQuote-watchListContainer a:focus,.SmallStockQuote-watchListContainer a:hover{text-decoration:none!important}.SmallStockQuote-main{background-color:#fff;border:1px dashed #b9c7d5;border-top:6px solid #9b9b9b;padding:10px 20px 20px}.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-top:25px}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-bottom:15px}}.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:199px;padding-top:20px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:161px;padding-top:10px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}}.SmallStockQuote-top{display:flex;justify-content:space-between;margin-bottom:10px;min-height:41px}.SmallStockQuote-data{color:#000;display:flex;flex-wrap:wrap;justify-content:space-between}.SmallStockQuote-last{min-height:55px;width:100%}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-last{width:auto}}.SmallStockQuote-articleContainer .SmallStockQuote-last{width:auto}.SmallStockQuote-change,.SmallStockQuote-percChange{min-height:43px}.SmallStockQuote-posMain{border-top:6px solid #008456}.SmallStockQuote-negMain{border-top:6px solid #ce2b2b}.SmallStockQuote-marketInfo{display:flex;justify-content:flex-start;max-width:262px}@media (min-width:760px){.SmallStockQuote-marketInfo{max-width:none}}.SmallStockQuote-marketValue{font-size:28px;font-weight:600}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:39px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:36px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:32px}}.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid #0000;border-right:13px solid #0000;height:0;margin-left:5px;overflow:hidden;position:relative;top:5px;width:0}@media (min-width:760px){.SmallStockQuote-arrow{border-bottom:36px solid #008456;border-left:20px solid #0000;border-right:20px solid #0000}}@media (min-width:1020px){.SmallStockQuote-arrow{border-bottom:30px solid #008456;border-left:16px solid #0000;border-right:16px solid #0000}}@media (min-width:1340px){.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid #0000;border-right:13px solid #0000}}.SmallStockQuote-label{color:#8b8b8b;font-size:10px;font-weight:600;letter-spacing:1px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:14px;letter-spacing:1.39px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:12px;letter-spacing:1.2px}}.SmallStockQuote-value{color:#008456;font-size:20px;font-weight:400}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27.8px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:24.7px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27px}}.SmallStockQuote-negValue{color:#ce2b2b}.SmallStockQuote-negArrow{border-bottom:0;border-top:25px solid #ce2b2b;bottom:0}@media (min-width:760px){.SmallStockQuote-negArrow{border-top:36px solid #ce2b2b}}@media (min-width:1020px){.SmallStockQuote-negArrow{border-top:30px solid #ce2b2b}}@media (min-width:1340px){.SmallStockQuote-negArrow{border-top:25px solid #ce2b2b}}.SmallStockQuote-symbol{color:#000;font-size:28px;font-weight:700;letter-spacing:1.75px;text-transform:uppercase}.SmallStockQuote-symbol:hover,a:focus .SmallStockQuote-symbol,a:hover .SmallStockQuote-symbol{color:#2077b6}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:39px;letter-spacing:2.43px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:36px;letter-spacing:2.24px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:32px;letter-spacing:2px}}.SmallStockQuote-name{color:#000;flex:0 1 auto;font-size:16px;font-weight:400;letter-spacing:.84px;margin-left:10px;margin-top:12px;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:760px){.SmallStockQuote-name{font-size:22px;letter-spacing:1.17px;margin-top:20px;max-width:175px}}@media (min-width:1020px){.SmallStockQuote-name{font-size:21px;letter-spacing:1.12px;margin-top:12px;max-width:200px}}@media (min-width:1340px){.SmallStockQuote-name{font-size:19px;letter-spacing:1px;max-width:150px}}.PeopleCard-card{display:block;height:100%;position:relative;width:100%}.PeopleCard-peopleImage{background-position:50%;background-size:cover;height:0;padding-bottom:75%;width:100%}.PeopleCard-name{background-color:#071d39;bottom:0;color:#fff;font-size:10px;font-weight:700;line-height:10px;min-height:35px;padding:10px;position:absolute;width:100%}@media (min-width:760px){.PeopleCard-name{font-size:16px;line-height:16px}}@media (min-width:1340px){.PeopleCard-name{font-size:20px;line-height:20px}}.PeopleCard-card:hover .PeopleCard-description{color:#fff;max-height:160px;padding-top:10px;transition:max-height 1s ease-out,color .5s ease-out}.PeopleCard-description{color:#fff0;font-size:12px;font-weight:500;line-height:14px;max-height:0;overflow:hidden;transition:all .3s}.ClipCard-container{width:100%}.ClipCard-mediaContainer{position:relative}.ClipCard-mediaContainer:before{background-color:#fcb700;content:"";height:6px;left:0;position:absolute;top:0;width:100%}.ClipCard-image{padding-bottom:56%;width:100%}.ClipCard-image:after{content:"";display:block;left:0;padding-bottom:25%}.ClipCard-image:after,.ClipCard-timeContainer{background:linear-gradient(0deg,#000,#0000);bottom:0;position:absolute;width:100%}.ClipCard-timeContainer{height:30px;letter-spacing:1.44px;padding-left:10px;padding-top:10px}.ClipCard-time{color:#fff9;font-weight:600}.ClipCard-time,.ClipCard-timeLabel{bottom:10px;font-size:12px;position:relative}.ClipCard-timeLabel{color:#fcb700;font-weight:800;margin-right:10px}.ClipCard-title{background-color:#fff;color:#000;font-size:18px;font-weight:600;line-height:22px;padding-top:17px}a:focus .ClipCard-title,a:hover .ClipCard-title{font-weight:700;text-decoration:underline}.WatchListCard-description{color:#000;display:block;font-size:14px;font-weight:500;line-height:18px;padding-top:20px;text-align:left}.WatchListCard-description:hover{color:#000;text-decoration:underline}.VideoBreakerFeatured-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.VideoBreakerFeatured-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-containerFluidWidths{max-width:1290px}}.VideoBreakerFeatured-containerWidth100{width:100%}.VideoBreakerFeatured-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.VideoBreakerFeatured-page{margin-bottom:28px}}.VideoBreakerFeatured-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.VideoBreakerFeatured-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:678px}}@media (min-width:1020px){.VideoBreakerFeatured-pageWrapper{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-pageWrapper{max-width:1290px}}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:100%!important}}.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.VideoBreakerFeatured-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 45px}}.VideoBreakerFeatured-pageRowFlex{display:flex}.VideoBreakerFeatured-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.VideoBreakerFeatured-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.VideoBreakerFeatured-rowUnderAd{margin-top:-44px}}.VideoBreakerFeatured-rowWithBackground{background:#cfd8e2;position:relative}.VideoBreakerFeatured-rowWithBackground:after,.VideoBreakerFeatured-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.VideoBreakerFeatured-rowWithBackground:before{right:100%;top:0}.VideoBreakerFeatured-rowWithBackground:after{left:100%;top:0}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:2}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:1}}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:1}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:2}}.VideoBreakerFeatured-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.VideoBreakerFeatured-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.VideoBreakerFeatured-containerFluidWidths .VideoBreakerFeatured-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.VideoBreakerFeatured-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.VideoBreakerFeatured-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.VideoBreakerFeatured-col-9:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.VideoBreakerFeatured-col-9.VideoBreakerFeatured-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-12:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.VideoBreakerFeatured-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.VideoBreakerFeatured-col-full .MyComponentName-container{max-width:none}}.VideoBreakerFeatured-col-full:last-child{margin-right:0}.VideoBreakerFeatured-clear-col-padding{padding-bottom:0;padding-top:0}.VideoBreakerFeatured-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-paddedWrapper{padding-bottom:20px;padding-top:25px}.VideoBreakerFeatured-hasBanner{margin-bottom:130px}}.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebar{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebarLeft{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarPro{margin-left:0;margin-right:30px}.VideoBreakerFeatured-col{margin-bottom:30px;padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-col{padding-bottom:20px;padding-top:25px}}@media (max-width:759px){.VideoBreakerFeatured-col{overflow:hidden}}@media (min-width:760px){.VideoBreakerFeatured-col-9{padding-bottom:5px}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{padding-bottom:20px}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}
.FeaturedBreaker-featuredBreaker{margin-bottom:30px;overflow:hidden;position:relative;width:100%}.FeaturedBreaker-wrapper{position:relative}@media (min-width:760px){.FeaturedBreaker-wrapper{margin:initial}}@media (min-width:1020px){.FeaturedBreaker-wrapper{padding:initial}}.FeaturedBreaker-heading{border-top:6px solid #002f6c;margin-left:20px;padding-top:15px;width:calc(100% - 20px)}@media (min-width:760px){.FeaturedBreaker-heading{margin-left:0;padding-left:40px;padding-top:15px;width:calc(75% - 75px)}}@media (min-width:1020px){.FeaturedBreaker-heading{font-size:30px;width:45%}}@media (min-width:1180px){.FeaturedBreaker-heading{font-size:30px;padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-heading{margin-bottom:50px;padding-left:calc(50vw - 645px)}}.FeaturedBreaker-headingLink{color:#002f6c}.FeaturedBreaker-headingLink:hover{color:#2077b6}.FeaturedBreaker-headingText{color:#002f6c;font-size:28px;font-weight:800;line-height:1.24;margin:0;overflow-wrap:break-word;padding-right:40px;text-transform:uppercase}@media (min-width:760px){.FeaturedBreaker-headingText{line-height:30px;padding-right:0}}@media (min-width:1020px){.FeaturedBreaker-headingText{font-size:32px}}@media (min-width:1340px){.FeaturedBreaker-headingText{max-width:320px}}.FeaturedBreaker-headingImage{max-height:32px;max-width:200px}.FeaturedBreaker-headingImage img{max-height:32px;max-width:100%}@media (min-width:760px){.FeaturedBreaker-headingImage,.FeaturedBreaker-headingImage img{max-height:65px}}.FeaturedBreaker-airTime{color:#2e2e2e;display:block;font-size:14px;font-weight:500;letter-spacing:1.17px;line-height:17px;margin-top:10px}@media (min-width:760px){.FeaturedBreaker-airTime{margin-top:10px}}.FeaturedBreaker-eventTime{color:#747474;font-size:14px;font-weight:600;letter-spacing:.77px;line-height:1.2;margin:10px 0 0}.FeaturedBreaker-eventTime time{color:#002f6c;letter-spacing:.88px}@media (min-width:760px){.FeaturedBreaker-eventTime{margin-top:10px}}.FeaturedBreaker-arrowContainer{height:16px;margin-top:20px;padding-left:20px;position:relative;text-align:left;z-index:99}@media (min-width:760px){.FeaturedBreaker-arrowContainer{margin-bottom:0;padding-left:40px;width:440px}}@media (min-width:1020px){.FeaturedBreaker-arrowContainer{padding-left:40px}}@media (min-width:1340px){.FeaturedBreaker-arrowContainer{left:calc(50vw - 315px);margin-top:0;position:absolute;top:30px;width:auto}}.FeaturedBreaker-arrow{color:#071d39;font-size:70px;height:100%;overflow:hidden;transition:opacity .2s ease-in-out}.FeaturedBreaker-arrow:hover{color:#fcb700}.FeaturedBreaker-arrow span{display:block;height:100%}.FeaturedBreaker-arrow span:before{display:block;line-height:16px}.FeaturedBreaker-prevArrow{margin-right:15px}@media (min-width:760px){.FeaturedBreaker-prevArrow{margin-right:25px}}.FeaturedBreaker-prevArrowInactive,.FeaturedBreaker-prevArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-nextArrow{margin-left:15px}@media (min-width:760px){.FeaturedBreaker-nextArrow{margin-left:25px}}.FeaturedBreaker-nextArrowInactive,.FeaturedBreaker-nextArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-slideContainer{margin-top:20px;position:relative;white-space:nowrap}@media (min-width:1020px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1180px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1340px){.FeaturedBreaker-slideContainer{margin-top:0;width:100vw}}.FeaturedBreaker-slideRail{transition:transform .5s;white-space:nowrap}.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{display:inline-block;height:185px;overflow:hidden;position:relative;width:75%}@media (min-width:760px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px;width:50%}}@media (min-width:1340px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:225px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 645px)}}.FeaturedBreaker-rightSlide{top:-27px}@media (min-width:760px){.FeaturedBreaker-rightSlide{top:-112px}}@media (min-width:1340px){.FeaturedBreaker-rightSlide{top:-100px}}@media (min-width:1020px){.FeaturedBreaker-rightSlide>div>div{padding-left:67.5px;padding-right:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-rightSlide>div>div{padding-left:77.25px;padding-right:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-rightSlide>div>div{padding-left:125px;padding-right:calc(50vw - 645px)}}.FeaturedBreaker-item{background-color:#071d39;background-position:20px;background-position-x:0;background-position-y:0;background-size:cover;display:inline-block;height:185px;padding:20px 45px;position:relative;vertical-align:top;white-space:normal;width:100%}@media (min-width:760px){.FeaturedBreaker-item{background-position-x:100px}}@media (min-width:1340px){.FeaturedBreaker-item{background-position-x:145px}}.FeaturedBreaker-item:hover .FeaturedBreaker-itemTitle{text-decoration:underline}.FeaturedBreaker-item>div:first-child{border-top:0}.FeaturedBreaker-item:after{background:linear-gradient(90deg,#071d39 0,#071d39 30%,#071d3930);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.FeaturedBreaker-item .PlayButton-container{border:none;top:0;z-index:2}@media (min-width:760px){.FeaturedBreaker-item{height:215px;padding:20px 40px}}@media (min-width:1020px){.FeaturedBreaker-item{height:215px}}@media (min-width:1340px){.FeaturedBreaker-item{height:225px;padding:20px 75px}}.FeaturedBreaker-itemWrapper{display:flex;flex-direction:column;height:100%;justify-content:center}.FeaturedBreaker-itemTitle{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;line-height:23px;max-height:130px;position:relative;text-shadow:0 0 6px #333;z-index:2}@media (min-width:760px){.FeaturedBreaker-itemTitle{font-size:22px;font-weight:600;line-height:28px;margin-top:0;max-height:100%;max-width:70%}}@media (min-width:1340px){.FeaturedBreaker-itemTitle{font-size:26px;line-height:38px;max-width:60%}}.FeaturedBreaker-itemAuthor{color:#fcb700;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:500;letter-spacing:.46px;line-height:12px;margin-top:20px;position:relative;text-shadow:0 0 6px #333;z-index:2}
@media (min-width:360px) and (max-width:759px){.Layout-layout{width:100%}}@media (min-width:760px){.Layout-layout{display:flex;flex-wrap:wrap}}
.CNBCFooter-footer{background:#001e5a;padding:18px 20px 63px;position:relative;z-index:99}@media (min-width:760px){.CNBCFooter-footer{padding:20px 0 25px}}@media (min-width:1020px){.CNBCFooter-footer{padding:36px 0 25px}}.CNBCFooter-wrapper{display:grid;grid-template-columns:repeat(2,1fr);margin:0 auto;max-width:100%}@media (min-width:760px){.CNBCFooter-wrapper{max-width:678px}}@media (min-width:1020px){.CNBCFooter-wrapper{max-width:960px}}@media (min-width:1340px){.CNBCFooter-wrapper{max-width:1290px}}@media (min-width:760px){.CNBCFooter-wrapper{grid-template-columns:repeat(3,1fr)}}@media (min-width:1340px){.CNBCFooter-wrapper{grid-template-columns:repeat(2,.67fr) .65fr repeat(2,1fr)}}.CNBCFooter-border{border-bottom:1px solid #ffffff80;grid-column:1/-1;margin:0 0 30px;padding:0 0 14px}@media (min-width:760px){.CNBCFooter-border{margin:0 0 32px;padding:0 0 12px}}@media (min-width:1020px){.CNBCFooter-border{margin:0 0 25px}}.CNBCFooter-logo{display:inline-block}.CNBCFooter-logoImg{width:130px}.CNBCFooter-social{display:flex;grid-area:4/1/auto/-1;justify-content:center;margin:0 0 55px}@media (min-width:760px){.CNBCFooter-social{grid-area:auto/2/auto/-1;justify-content:end;margin:0}}.CNBCFooter-socialItem{align-items:center;display:flex;font-size:22px;margin:0 10px}.icon-social_apple_news:before{font-size:25px}.CNBCFooter-list{display:grid;grid-column:1/-1;grid-template-columns:subgrid;margin:0 0 45px;row-gap:10px}@media (min-width:760px){.CNBCFooter-list{grid-auto-rows:19px;margin:0 0 30px}}@media (min-width:1020px){.CNBCFooter-list{grid-auto-rows:26px}}@media (min-width:1340px){.CNBCFooter-list{grid-auto-rows:36px;grid-column:span 3;row-gap:0}}.CNBCFooter-listItem{font-size:16px;font-weight:500}@media (min-width:1020px){.CNBCFooter-listItem{font-size:14px}}.CNBCFooter-section{color:#fff;display:grid;grid-column:1/-1;margin:0 0 40px;row-gap:18px}@media (min-width:760px){.CNBCFooter-section{column-gap:70px;grid-template-columns:repeat(2,1fr)}}@media (min-width:1020px){.CNBCFooter-section{grid-column:span 3;grid-template-columns:subgrid}}@media (min-width:1340px){.CNBCFooter-section{grid-column:4/-1;margin:-10px 0 40px;row-gap:22px}}@media (min-width:1020px) and (max-width:1339px){.CNBCFooter-sectionItem:first-child{grid-area:1/1/auto/span 2}}.CNBCFooter-sectionItem:nth-child(2){grid-area:3/auto}@media (min-width:760px){.CNBCFooter-sectionItem:nth-child(2){grid-area:1/2/span 2/-1;justify-self:end}}.CNBCFooter-sectionTitle{align-items:center;display:flex;font-size:18px;font-weight:700;margin:0}.CNBCFooter-sectionTitle:has(+.CNBCFooter-sectionText){margin:0 0 3px}.CNBCFooter-sectionTitle:has(+.CNBCFooter-sectionLink){margin:0 0 10px}@media (min-width:760px){.CNBCFooter-sectionTitle{height:40px}}@media (min-width:1020px){.CNBCFooter-sectionTitle{font-size:24px}}.CNBCFooter-sectionIcon{font-size:40px;margin:0 8px 0 0}@media (min-width:760px){.CNBCFooter-sectionIcon{margin:0 8px 0 -50px}}.CNBCFooter-sectionText{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42;margin:0 0 20px}.CNBCFooter-sectionLink{align-items:center;border:1px solid #fff;display:inline-flex;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1.1px;padding:0 28px;text-transform:uppercase;width:100%}.CNBCFooter-sectionLink:has(+.CNBCFooter-sectionSubText){margin:0 0 15px}@media (min-width:1020px){.CNBCFooter-sectionLink{width:auto}}.CNBCFooter-sectionLink:hover{background:#fcb700;border:1px solid #fcb700;color:#071d39}.CNBCFooter-legal{margin:0 0 25px}@media (min-width:760px){.CNBCFooter-legal{align-items:center;display:flex;grid-column:1/-1}}.CNBCFooter-info,.CNBCFooter-reutersInfo,.CNBCFooter-sectionSubText{color:#ffffffb3;font-size:10px;grid-column:1/-1;letter-spacing:.5px;margin:0 0 15px}.CNBCFooter-info:has(a),.CNBCFooter-reutersInfo:has(a),.CNBCFooter-sectionSubText:has(a){align-items:center;display:flex}.CNBCFooter-info:last-child,.CNBCFooter-reutersInfo:last-child,.CNBCFooter-sectionSubText:last-child{margin:0}.CNBCFooter-info a,.CNBCFooter-info a:hover,.CNBCFooter-reutersInfo a,.CNBCFooter-reutersInfo a:hover,.CNBCFooter-sectionSubText a,.CNBCFooter-sectionSubText a:hover{color:currentcolor}.CNBCFooter-reutersInfo{margin:0 0 10px}.CNBCFooter-reutersLink{display:inline-block;font-size:14px;font-weight:500;grid-column:1/-1;margin:0 0 8px}.CNBCFooter-reutersLogo{width:65px}@media (min-width:760px){.CNBCFooter-legal{align-items:center;display:flex}}.CNBCFooter-legalItem{align-items:center;display:flex;font-size:14px;font-weight:500;margin:0 0 10px}@media (min-width:760px){.CNBCFooter-legalItem{margin:0}.CNBCFooter-legalItem:not(:last-child):after{color:#fff;content:"|";font-size:15px;margin:0 10px -1px}}.CNBCFooter-legalIcon{display:none;margin:0 5px -1px 0;width:26px}.CNBCFooter-legalIcon.CNBCFooter-US{display:initial}
@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;-webkit-hyphens:auto;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#ce2b2b;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioCalendarEventFields-eventLabel{font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{box-shadow:0 2px #fff}.PortfolioCalendarEventFields-fieldText:first-child{padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;padding-left:5px}.PortfolioCalendarEventDetails-header{font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioHeader-container{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioHeader-pageHeaderContainer{margin-top:30px}.PortfolioHeader-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioHeader-boldTextTitle{font-size:28px;font-weight:800;letter-spacing:-.5px;line-height:32px}.PortfolioHeader-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioHeader-ctaLinkContainer:hover .PortfolioHeader-chevronDownImage{fill:#fcb700}.PortfolioHeader-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioHeader-chevronDownImage{fill:#0053cf}.InvestingClubCtaLink-cta{align-items:center;display:flex;flex-direction:row;justify-content:flex-end;padding:0}.InvestingClubCtaLink-ctaComponentMargin{margin-bottom:40px;margin-top:40px}.InvestingClubCtaLink-ctaLink{align-items:center;display:flex;flex-direction:row;gap:12px;justify-content:flex-end;white-space:nowrap}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{color:#fcb700;text-decoration:underline}@media (max-width:759px){.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{text-decoration:unset}}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-chevronDownImage{background-color:#fcb700}.InvestingClubCtaLink-ctaTitle{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:22px;white-space:nowrap}@media (max-width:759px){.InvestingClubCtaLink-ctaTitle{font-size:16px;line-height:20px}}.InvestingClubCtaLink-dashboardCtaLink{font-size:16px;line-height:20px}.InvestingClubCtaLink-chevronDownImage{background-color:#005594;height:24px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:24px}.InvestingClubHeader-sectionDivider{display:flex;flex-direction:column;width:100%}.InvestingClubHeader-smallSpan{background-color:#0496ff;display:block;height:6px;width:110px}@media (max-width:360px){.InvestingClubHeader-smallSpan{width:88px}}.InvestingClubHeader-border{background-color:#747474;display:block;height:1px;width:100%}.InvestingClubHeader-sectionHeader{display:flex;flex-direction:row;justify-content:space-between;margin:10px 0 20px}@media (max-width:759px){.InvestingClubHeader-sectionHeader{display:block}}.InvestingClubHeader-title{color:#071d39;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:39px;text-transform:uppercase}@media (min-width:760px){.InvestingClubHeader-title{font-size:24px}}@media (min-width:1020px){.InvestingClubHeader-title{font-size:32px}}.SectionNewsWithFilters-sectionNewsWithFiltersContainer{margin:10px 0 20px}.SectionNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:0 0 20px;overflow:auto}.SectionNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.SectionNewsWithFilters-filterButton:last-child{margin-right:0}.SectionNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.SectionNewsWithFilters-filterButtonActive{background-color:#002f6c}.SectionNewsWithFilters-filterButtonActive span{color:#fff}.SectionNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:column;gap:20px}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer{flex-direction:row}.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:1010px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:820px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:620px}}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:675px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:720px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:495px}}@media (min-width:1340px){.SectionNewsWithFilters-firstAsset{width:81%}}.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:360px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:760px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:30px;line-height:36px}}@media (max-width:759px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-descriptionContainer{width:100%}}@media (min-width:1340px){.SectionNewsWithFilters-firstAssetWithThumbnails{width:50%!important}}.SectionNewsWithFilters-remainingAssets{display:flex;flex-direction:row;gap:20px;overflow-x:auto;overflow-y:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets{flex-direction:column;margin-bottom:20px;margin-top:0;width:38%}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-right:.5px dashed #bababa;padding-right:5px}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-right:none;padding-right:none}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-bottom:.5px dashed #bababa;border-right:none;padding-bottom:15px;padding-right:none}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-bottom:none}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails{width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-thumbnailWrapper{padding-bottom:28.125%!important;width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-content{display:flex;flex-basis:100%;flex-direction:row;width:100%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{border-bottom:.5px dashed #bababa;height:170px;justify-content:space-between;padding-bottom:5px;position:relative;width:54%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:1020px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:18px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:24px}}.SectionNewsWithFilters-content{align-items:flex-start;display:flex;flex-basis:100%;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.SectionNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.SectionNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.SectionNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.SectionNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.SectionNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.SectionNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:12px;padding:0}@media (max-width:759px){.SectionNewsWithFilters-descriptionContainer{width:200px}}.SectionNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.SectionNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.SectionNewsWithFilters-tag:hover{color:#fcb700}.SectionNewsWithFilters-articleTitle{color:#071d39;font-weight:600;letter-spacing:.03px;overflow:hidden;overflow-wrap:anywhere}@media (min-width:360px){.SectionNewsWithFilters-articleTitle{font-size:18px;line-height:22px}}@media (min-width:1020px){.SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}.SectionNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.SectionNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.SectionNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.SectionNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.SectionNewsWithFilters-author:after{content:","}.SectionNewsWithFilters-author:nth-last-child(2):after{content:""}.SectionNewsWithFilters-author:hover{color:#fcb700}.SectionNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNewsWithFilters-sectionNewsWithFiltersContainer{border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:12px}.PortfolioNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:20px 0;overflow:auto}.PortfolioNewsWithFilters-filterButton{background-color:#fff;border:1px solid #071d39;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.PortfolioNewsWithFilters-filterButton:last-child{margin-right:0}.PortfolioNewsWithFilters-filterButton span{color:#071d39;display:block;font-size:12px;font-weight:400;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.PortfolioNewsWithFilters-filterButtonActive{background-color:#071d39}.PortfolioNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:row;gap:20px}@media (min-width:1340px){.PortfolioNewsWithFilters-firstAsset{width:50%}}.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;font-size:24px;line-height:28px;max-width:100%;overflow:hidden}@media (max-width:759px){.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-descriptionContainer{width:100%}}.PortfolioNewsWithFilters-remainingAssets{display:flex;flex-direction:column;overflow-x:auto;overflow-y:hidden}@media (max-width:1339px){.PortfolioNewsWithFilters-remainingAssets{gap:20px}}@media (min-width:760px){.PortfolioNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets{margin-bottom:20px;margin-top:0;width:48%}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-right:5px}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content:last-child{padding-right:none}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-bottom:15px;padding-right:none}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;font-size:18px;line-height:22px;max-width:100%;overflow:hidden}.PortfolioNewsWithFilters-content{align-items:flex-start;display:flex;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.PortfolioNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.PortfolioNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.PortfolioNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.PortfolioNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.PortfolioNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.PortfolioNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:10px;padding:0}@media (max-width:759px){.PortfolioNewsWithFilters-descriptionContainer{width:200px}}.PortfolioNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.PortfolioNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNewsWithFilters-tag:hover{color:#fcb700}.PortfolioNewsWithFilters-articleTitle{color:#071d39;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px;overflow:hidden;overflow-wrap:anywhere}.PortfolioNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.PortfolioNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:10px;justify-content:flex-end;padding:0}.PortfolioNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.PortfolioNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.PortfolioNewsWithFilters-author:after{content:","}.PortfolioNewsWithFilters-author:nth-last-child(2):after{content:""}.PortfolioNewsWithFilters-author:hover{color:#fcb700}.PortfolioNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioMovers-container{border:.5px solid #bababa;border-radius:4px;margin-bottom:30px;padding:12px;width:100%}.PortfolioMovers-header{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioMovers-date{color:#747474;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;white-space:normal;width:100%}.PortfolioMovers-tableHeader{color:#747474;font-size:14px;font-weight:600;line-height:18px;padding-bottom:20px;padding-top:15px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.PortfolioMovers-dataContainer{padding:8px 27px}}@media (min-width:1020px){.PortfolioMovers-dataContainer{padding:8px}}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-triangle-down,.PortfolioMovers-triangle-up{border-left:4px solid #0000;border-right:4px solid #0000;height:0;width:0}.PortfolioMovers-triangle-up{border-bottom:8px solid #008456}.PortfolioMovers-triangle-down{border-top:8px solid #ce2b2b}.PortfolioMovers-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteGain{font-size:12px;line-height:10px}}.PortfolioMovers-symbolName{color:#171717;display:flex;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-dropdownStyles{left:5px!important;width:150px!important}}.PortfolioMovers-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteDecline{font-size:12px;line-height:10px}}.PortfolioMovers-quoteDecline span:first-child,.PortfolioMovers-quoteGain span:first-child{padding-left:8px;padding-right:5px}.PortfolioMovers-lastPrice{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendarEvent-symbol{display:inline-block;font-weight:600;padding:0 10px;width:80px}.PortfolioCalendarEvent-label{overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:earningsCalendar;border:.5px solid #bababa;border-radius:4px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:10px;font-weight:600;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container earningsCalendar (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#005594;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#002f6c}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableHeaderContent-headerRow .TableHeaderContent-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableBodyContent-contentCell{border:0;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:0 4px 16px 0 #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}@media (max-width:1019px){.CustomColumnsTable-container{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-container{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}.PortfolioHoldingsTable-tableContainer{margin-bottom:30px}.PortfolioLinkAccountButton-linkAccountButton{background-color:blue;border-radius:8px;color:#fff;cursor:pointer;font-size:16px;line-height:20px;padding:14px;width:200px}.PortfolioList-listContainer{display:flex;gap:15px;margin-bottom:20px;margin-top:20px;width:100%}.PortfolioList-aggregateContainer{background:#fff;border:1px solid grey;border-radius:8px;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:10px;max-width:350px;padding:12px;width:100%}.PortfolioList-portfolioCardContainer{background:#fff;border:1px solid grey;border-radius:8px;cursor:pointer;display:block;height:100px;margin-bottom:10px;padding:10px;text-align:left;width:350px}.PortfolioList-aggregateHeader{font-size:20px;font-weight:600px;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioList-aggmarketValue,.PortfolioList-aggmarketValueText{display:flex;flex-wrap:wrap;justify-content:flex-end}.PortfolioList-portfolioHeader{font-size:20px;padding-bottom:16px}.PortfolioList-portfolioValue{font-size:18px;line-height:22px}.PortfolioList-portfolioChangePercent{float:right;font-size:14px;line-height:18px}.PortfolioList-portfolioChangePercentText{float:right}.PortfolioList-marketRow{padding-bottom:4px}.PortfolioList-portfolioChangePercentText,.PortfolioList-portfoliomarketValueText{font-size:14px;line-height:18px}.PortfolioList-aggmarketValue{font-size:28px;font-weight:500;letter-spacing:1.1px;line-height:36px}.PortfolioList-aggmarketValueText{font-size:14px;letter-spacing:.03px;line-height:16px;padding-bottom:30px}.PortfolioList-aggChangePercent{font-size:12px;line-height:14px;padding-bottom:4px}.PortfolioList-aggChangePercentText{font-size:12px;line-height:14px;padding-bottom:8px}.PortfolioOverview-container{background:#f2f2f2;border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:30px}.PortfolioOverview-headerContainer{display:block;position:relative}.PortfolioOverview-header{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:700;letter-spacing:.03px;line-height:26px;padding-right:40px}.PortfolioOverview-disclaimerText{display:inline-block;font-size:10px;line-height:14px}.PortfolioOverview-timeContainer{font-size:16px;line-height:20px;margin-top:15px}.PortfolioOverview-linkButtonContainer{height:50px}.PortfolioOverview-floatRight{float:right}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PortfolioContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PortfolioContainer-col-9.PortfolioContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}@media (max-width:1019px){.PortfolioPage-container{padding:0 30px}}@media (max-width:759px){.PortfolioPage-container{padding:0 20px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;margin-top:30px;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:2}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}.FullEpisodePlayer-PlayButton{position:relative}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:0;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:1px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}.EpisodePlayListItem-activeEpisodeContainer{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{color:#fff;font-size:10px;font-weight:700;line-height:16px;padding-left:8px;text-align:left}.FullEpisodeVideoList-container{height:500px;margin-bottom:20px;margin-top:20px;overflow-y:scroll}.ShowsListDropdown-showContainer{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:20px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{background:#fff;border-radius:18px;display:flex;padding:8px 16px 8px 12px;text-align:left}.ShowsListDropdown-showName{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;line-height:18px;text-transform:uppercase}.ShowsListDropdown-chevron{border-style:solid;border-width:.25em .25em 0 0;bottom:-2px;height:.7em;left:6px;position:relative;transform:rotate(135deg);vertical-align:top;width:.7em}.ShowsListDropdown-chevronOpen{margin-top:3px;transform:rotate(315deg)}.ShowsListDropdown-dropdownContainer{background:#000;box-shadow:0 0 20px #030;padding:10px;position:absolute;top:61px;width:300px;z-index:999}.ShowsListDropdown-dropdownItem{border-bottom:1px solid #ccc;cursor:pointer;font-size:16px;padding:8px}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;text-align:justify;width:100%}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/726b9cd5c1192cf89091.svg);background-repeat:no-repeat;display:inline-block;height:11px;margin-right:8px;position:relative;width:11px}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodePage-container{min-height:500px}@media (min-width:1020px){.FullEpisodePage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodePage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodePage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodePage-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodePage-container{padding:0 30px}}@media (max-width:759px){.FullEpisodePage-container{margin-top:-1px;padding:0 20px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px 10px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(6,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:2}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;top:0;z-index:100}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:#00081a;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#9e9e9e;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:17px;transition:color .2s ease-in;white-space:nowrap;width:98px;z-index:1}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:1px solid #f8f8f8;color:#f8f8f8}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasisIcon{fill:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-rightContainer #ProPlayerTabs-audioOnlyLink>.ProPlayerTabs-withEmphasis{justify-content:flex-start}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{background-color:#000;display:flex;flex-direction:column;height:100%}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVPage-container{min-height:500px}@media (min-width:1020px){.LiveTVPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVPage-container{max-width:1290px}}@media (max-width:1019px){.LiveTVPage-container{padding:0 30px}}@media (max-width:759px){.LiveTVPage-container{margin-top:-1px;padding:0 20px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
.BrandPageWrapper-contentWrapper{margin-top:45px;overflow:visible;position:relative}@media (min-width:1020px){.BrandPageWrapper-contentWrapper{overflow:visible}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:89px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings{margin-top:130px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:152px}@media (min-width:760px){.BrandPageWrapper-contentWrapper{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:114px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity{margin-top:156px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:156px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-darkTheme{background:#00081a;color:#fff}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:129px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:169px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:209px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:154px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:165px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:194px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:236px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:85px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:128px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:236px}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:165px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-liveAlertAd{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:192px}@media (max-width:759px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:205px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:236px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:209px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:234px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:276px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:232px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:276px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:125px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:120px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:124px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:122px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:164px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:162px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:204px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:246px}}.BrandPageWrapper-contentWrapperClock{margin-top:112px}.BrandPageWrapper-mobileWebview{margin-bottom:100px;margin-top:0}
.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{align-items:center;background-color:#001e5a;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;position:fixed;z-index:99}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{padding:0 20px}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{background-color:initial;height:35px;padding:0 15px 0 30px}}.nav-menu-navMenuAllAccess{background-color:#002f6c;transition:background-color .5s ease}.nav-menu-navMenuPro{background-color:#27313c;transition:background-color .5s ease}.nav-menu-navMenuIC{background-color:#071d39;transition:background-color .5s ease}.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{bottom:0;padding-left:8px;position:fixed;transition:background-color .25s;width:100%}@media (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{padding-left:28px}}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{background-color:initial;height:36px;overflow:visible;position:absolute;top:45px;transition:top .25s,height .25s,width .25s}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{position:absolute;top:45px;width:70%;z-index:999}.nav-menu-navMenu.nav-menu-navMenuSticky,.nav-menu-navMenu.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenu.nav-menu-navMenuStickyIC,.nav-menu-navMenu.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenu.nav-menu-navMenuStickyPro,.nav-menu-navMenuAllAccess.nav-menu-navMenuSticky,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyIC,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyPro,.nav-menu-navMenuIC.nav-menu-navMenuSticky,.nav-menu-navMenuIC.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuIC.nav-menu-navMenuStickyIC,.nav-menu-navMenuIC.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuIC.nav-menu-navMenuStickyPro,.nav-menu-navMenuPro.nav-menu-navMenuSticky,.nav-menu-navMenuPro.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuPro.nav-menu-navMenuStickyIC,.nav-menu-navMenuPro.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuPro.nav-menu-navMenuStickyPro{padding-bottom:19px}}@media (min-width:1340px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{top:45px}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{margin-bottom:0;overflow:visible}.nav-menu-navMenu:after,.nav-menu-navMenuAllAccess:after,.nav-menu-navMenuIC:after,.nav-menu-navMenuPro:after{background:#001e5a;bottom:-20px;content:"";height:21px;left:0;position:absolute;transition:background-color .25s;width:100%}}@media (min-width:760px) and (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{z-index:0}}.nav-menu-navMenuLoggedIn{background-color:#00081a;bottom:0;padding-left:8px;position:fixed;transition:background-color .25s;width:100%}@media (max-width:1019px){.nav-menu-navMenuLoggedIn{padding-left:28px}}@media (min-width:760px){.nav-menu-navMenuLoggedIn{background-color:initial;height:36px;overflow:visible;position:absolute;top:45px;transition:top .25s,height .25s,width .25s}}@media (min-width:1020px){.nav-menu-navMenuLoggedIn{position:absolute;top:45px;width:70%;z-index:999}.nav-menu-navMenuLoggedIn.nav-menu-navMenuSticky,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyIC,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyPro{padding-bottom:19px}}@media (min-width:1340px){.nav-menu-navMenuLoggedIn{top:45px}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenuLoggedIn{margin-bottom:0;overflow:visible}.nav-menu-navMenuLoggedIn:after{background:#005594;bottom:-20px;content:"";height:21px;left:0;position:absolute;transition:background-color .25s;width:100%}}@media (min-width:760px) and (max-width:1019px){.nav-menu-navMenuLoggedIn{z-index:0}}@media (min-width:760px){.nav-menu-navMenuArticle{pointer-events:auto}}.nav-menu-navMenuSticky{background:#001e5a}.nav-menu-navMenuStickyLoggedIn{background:#00081a}.nav-menu-navMenuStickyAllAccess{background:#002f6c}.nav-menu-navMenuStickyPro{background:#27313c}.nav-menu-navMenuStickyIC{background:#071d39}.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{z-index:1000}@media (min-width:760px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{height:45px;top:0}}@media (min-width:1020px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{height:45px;top:0}}.nav-menu-navMenuSticky.nav-menu-withOpenSearch,.nav-menu-navMenuStickyAllAccess.nav-menu-withOpenSearch,.nav-menu-navMenuStickyIC.nav-menu-withOpenSearch,.nav-menu-navMenuStickyLoggedIn.nav-menu-withOpenSearch,.nav-menu-navMenuStickyPro.nav-menu-withOpenSearch{z-index:1000}.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyAllAccess .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyLoggedIn .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:6px;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyAllAccess .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyLoggedIn .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:15px}}.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyAllAccess,.nav-menu-navMenuArticleStickyOneAccess{background:#fff;color:#000}@media (min-width:760px){.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyAllAccess,.nav-menu-navMenuArticleStickyOneAccess{background:#0000;width:100%;z-index:999}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenuArticleSticky:after,.nav-menu-navMenuArticleStickyAllAccess:after,.nav-menu-navMenuArticleStickyOneAccess:after{background:#fff}}.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyAllAccess .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyOneAccess .nav-menu-logoStickyContainer{margin-right:5%}@media (min-width:1020px){.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyAllAccess .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyOneAccess .nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-buttonAllAccess{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonAllAccess:focus,.nav-menu-buttonAllAccess:hover{color:#cfd8e2}.nav-menu-buttonAllAccess .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonAllAccess .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonAllAccess .icon-markets,.nav-menu-buttonAllAccess .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonAllAccess:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonAllAccess+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonAllAccess+.nav-menu-subLinks{left:15px}}.nav-menu-buttonAllAccess+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonAllAccess+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonAllAccess{font-size:23px}}@media (min-width:760px){.nav-menu-buttonAllAccess{order:0;padding:0 8px}.nav-menu-buttonAllAccess span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonAllAccess{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonAllAccess{padding-left:15px;padding-right:8px}}.nav-menu-buttonPro{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonPro:focus,.nav-menu-buttonPro:hover{color:#00a857}.nav-menu-buttonPro .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonPro .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonPro .icon-markets,.nav-menu-buttonPro .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonPro:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonPro+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonPro+.nav-menu-subLinks{left:15px}}.nav-menu-buttonPro+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonPro+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonPro+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonPro+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonPro+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonPro{font-size:23px}}@media (min-width:760px){.nav-menu-buttonPro{order:0;padding:0 8px}.nav-menu-buttonPro span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonPro{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonPro{padding-left:15px;padding-right:8px}}.nav-menu-buttonIC{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonIC:focus,.nav-menu-buttonIC:hover{color:#0496ff}.nav-menu-buttonIC .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonIC .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonIC .icon-markets,.nav-menu-buttonIC .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonIC:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonIC+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonIC+.nav-menu-subLinks{left:15px}}.nav-menu-buttonIC+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonIC+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonIC+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonIC+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonIC+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonIC{font-size:23px}}@media (min-width:760px){.nav-menu-buttonIC{order:0;padding:0 8px}.nav-menu-buttonIC span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonIC{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonIC{padding-left:15px;padding-right:8px}}.nav-menu-button{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0;position:relative}.nav-menu-button .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-button .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-button .icon-markets,.nav-menu-button .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-button:focus .nav-menu-buttonText{color:#fff}.nav-menu-button+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-button+.nav-menu-subLinks{left:15px}}.nav-menu-button+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-button+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-button+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-button+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-button+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-button+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-button+.nav-menu-subLinks li:hover:before{color:#005594;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-button+.nav-menu-subLinks .nav-menu-subLink{color:#005594;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-button{font-size:23px}}@media (min-width:760px){.nav-menu-button{order:0;padding:0 8px}.nav-menu-button span:first-child{display:none}}@media (min-width:1020px){.nav-menu-button{padding:0 6px}}@media (min-width:1340px){.nav-menu-button{padding-left:15px;padding-right:8px}}.nav-menu-hamburgerIC{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerIC:hover{color:#0496ff}.nav-menu-hamburgerIC span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerIC{top:0}}.nav-menu-hamburgerAllAccess{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-hamburgerAllAccess span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerAllAccess{top:0}}.nav-menu-hamburgerPro{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerPro:hover{color:#00a857}.nav-menu-hamburgerPro span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerPro{top:0}}.nav-menu-hamburger{font-size:19px;position:relative;top:3px}.nav-menu-hamburger:hover{color:#ffbc05}.nav-menu-hamburger span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburger{top:0}}.nav-menu-articleHamburger{color:#005594}.nav-menu-articleHamburgerAllAccess,.nav-menu-articleHamburgerPro{color:#002f6c}.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{color:#fff;font-size:16px;font-weight:700;margin-right:7px;position:relative;top:4px;transition:top .25s}@media (min-width:760px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:13px;transform:none}}@media (max-width:759px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{display:none}}@media (min-width:1020px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:7px}}.nav-menu-desktopHamburger span[class=icon-menu],.nav-menu-desktopHamburgerAllAccess span[class=icon-menu],.nav-menu-desktopHamburgerIC span[class=icon-menu],.nav-menu-desktopHamburgerPro span[class=icon-menu]{display:inline}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:focus{color:#fff}.nav-menu-desktopHamburger.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburger{display:block;padding-left:0}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:hover:after,.nav-menu-desktopHamburger:hover:before{background:#fcb700}}.nav-menu-desktopHamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-desktopHamburgerAllAccess:focus{color:#fff}.nav-menu-desktopHamburgerAllAccess.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerAllAccess{display:block;padding-left:0}.nav-menu-desktopHamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-desktopHamburgerAllAccess:hover:after,.nav-menu-desktopHamburgerAllAccess:hover:before{background:#cfd8e2}}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:focus{color:#fff}.nav-menu-desktopHamburgerPro.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerPro{display:block;padding-left:0}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:hover:after,.nav-menu-desktopHamburgerPro:hover:before{background:#00a857}}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:focus{color:#fff}.nav-menu-desktopHamburgerIC.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerIC{display:block;padding-left:0}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:hover:after,.nav-menu-desktopHamburgerIC:hover:before{background:#0496ff}}@media (min-width:1020px){.nav-menu-desktopHamburgerSticky{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyAllAccess{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyPro{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyIC{transform:translateY(7px)}}.nav-menu-desktopHamburgerArticleSticky{color:#005594}.nav-menu-desktopHamburgerArticleSticky:after,.nav-menu-desktopHamburgerArticleSticky:before{background:#001e5a}.nav-menu-desktopHamburgerArticleSticky:focus{color:#005594}.nav-menu-desktopHamburgerArticleSticky:focus:after,.nav-menu-desktopHamburgerArticleSticky:focus:before{background:#001e5a}.nav-menu-desktopHamburgerArticleStickyAllAccess{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:after,.nav-menu-desktopHamburgerArticleStickyAllAccess:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:focus:after,.nav-menu-desktopHamburgerArticleStickyAllAccess:focus:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:after,.nav-menu-desktopHamburgerArticleStickyOneAccess:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:focus:after,.nav-menu-desktopHamburgerArticleStickyOneAccess:focus:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:after,.nav-menu-desktopHamburgerArticleStickyIC:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus:after,.nav-menu-desktopHamburgerArticleStickyIC:focus:before{background:#002f6c}.nav-menu-buttonText{color:#e8e8e8;font-size:9px;font-weight:600;letter-spacing:1px;margin-top:5px;opacity:.75;text-align:center;text-transform:uppercase}@media (min-width:760px){.nav-menu-buttonText{color:#fff;font-size:12px;font-weight:700;opacity:1}}@media (min-width:1020px){.nav-menu-buttonText{font-size:14px;font-weight:600;letter-spacing:.5px}}@media (min-width:1340px){.nav-menu-buttonText{letter-spacing:.8px}}.nav-menu-articleButtonText{color:#005594}.nav-menu-articleButtonTextAllAccess,.nav-menu-articleButtonTextPro{color:#002f6c}.nav-menu-articleButtonTextIC{color:#071d39}.nav-menu-logoStickyContainer{margin-right:9%}@media (min-width:760px){.nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-logo{height:100%;opacity:0;overflow:hidden;width:34px}@media (min-width:760px){.nav-menu-logo{transform:translate(-100%,-100%)}}.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{height:31px;opacity:1;width:41px;z-index:1}@media (min-width:760px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{margin-right:20px;transform:translate(9px)}}@media (min-width:1020px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{transform:translate(9px,9px)}}@media (max-width:759px){.nav-menu-logoStickyMobileAllAccess,.nav-menu-logoStickyMobilePro{height:20px;width:122px}}.nav-menu-logoStickyMobileIC{width:150px}.nav-menu-mainLinks{flex:1;margin-left:-35px;margin-right:0;overflow:hidden;text-align:left;transition:all .25s;white-space:nowrap;width:100%;z-index:2}@media (min-width:760px){.nav-menu-mainLinks{align-items:center;display:flex;flex:100;flex-direction:row;height:auto;overflow:visible}}.nav-menu-mainLinksSticky{margin-left:0}@media (min-width:1020px){.nav-menu-mainLinksSticky{transform:translateY(10px)}}.nav-menu-mainLinksWrapper{position:relative}.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{content:"";display:none;height:100%;position:absolute;top:0;width:44px}@media (min-width:760px){.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{display:none}}.nav-menu-mainLinksWrapper:before{background:linear-gradient(270deg,#0000,#005594);opacity:1;transition:all .25s}.nav-menu-mainLinksWrapper:after{background:linear-gradient(270deg,#005594,#0000);right:0}.nav-menu-mainLinksWrapperStart{display:flex;justify-content:space-between}.nav-menu-mainLinksWrapperStart:before{opacity:0}.nav-menu-articleMainWrapper{flex:1;height:32px}@media (min-width:760px){.nav-menu-articleMainWrapper{height:auto}}.nav-menu-articleContent{align-items:center;display:flex;justify-content:flex-end;width:100%}@media (min-width:1020px){.nav-menu-articleContent{justify-content:space-between;width:calc(100% - 54px)}}@media (min-width:1340px){.nav-menu-articleContent{width:100%}}.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:none;font-size:14px;font-weight:700;line-height:2;text-overflow:ellipsis;transform:translateY(2px);width:70%}@media (min-width:1020px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:block;overflow:hidden;padding-right:30px}}@media (max-width:1179px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:auto}}@media (max-width:1339px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:540px}}@media (min-width:1340px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{padding-left:5px}}.nav-menu-articleSocial{display:contents}.nav-menu-articleTitleWithoutShareComponent{margin-bottom:15px}@media (min-width:1020px){.nav-menu-articleTitleWithoutShareComponent{width:912px}}.nav-menu-articleHidden{display:none}.nav-menu-linksSticky,.nav-menu-navLinks{display:flex;flex:1;justify-content:space-between}@media (min-width:760px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonAllAccess,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 5px}}@media (min-width:1020px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonAllAccess,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 12px}}.nav-menu-linksSticky .nav-menu-subLinks{left:12px;position:absolute;top:34px}.nav-menu-articleNavLinks{display:none}@media (min-width:760px){.nav-menu-articleNavLinks{display:flex}.nav-menu-articleNavLinks.nav-menu-linksSticky{display:none}.nav-menu-articleNavLinks.nav-menu-linksSticky .nav-menu-primaryLink{margin-bottom:0}}.nav-menu-primaryLink{display:inline-block;font-size:14px;font-weight:700;letter-spacing:.85px;margin-right:4px;position:relative;text-transform:uppercase}@media (min-width:760px){.nav-menu-primaryLink{line-height:30px}.nav-menu-primaryLink:not(.markets):not(.business_news):not(.investing):not(.tech):not(.politics):not(.cnbc_tv):not(.investing_club):not(.pro):not(.video){display:none}}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger){display:none}@media (min-width:760px){.nav-menu-primaryLink{font-size:12px;margin-right:0}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger){display:block}.nav-menu-primaryLink:last-child{display:none}}.nav-menu-primaryLink.nav-menu-active{position:relative}.nav-menu-primaryLink.nav-menu-active:after{background-color:#fff;bottom:-10px;content:"";height:3px;left:0;position:absolute;width:100%}@media (min-width:1020px){.nav-menu-primaryLink:hover~.nav-menu-navUnderline,.nav-menu-primaryLink:hover~.nav-menu-navUnderlineAllAccess,.nav-menu-primaryLink:hover~.nav-menu-navUnderlineIC,.nav-menu-primaryLink:hover~.nav-menu-navUnderlinePro{opacity:1}}@media (min-width:760px){.nav-menu-progressBarContainer{display:none}}.nav-menu-logoContainer{pointer-events:none;width:34px}.nav-menu-navDropdownWrap{animation-fill-mode:forwards;background-color:#fff;box-shadow:0 1px 3px 1px #00000014;height:100px;left:0;opacity:1;pointer-events:none;position:absolute;top:4px;transform:matrix(0,0,0,0,0,0);transform-origin:0 0;z-index:-1}.nav-menu-navUnderlineAllAccess{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlineAllAccess:after{border-bottom:4px solid #cfd8e2;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderlinePro{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlinePro:after{border-bottom:4px solid #00a857;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderlineIC{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlineIC:after{border-bottom:4px solid #0496ff;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderline{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderline:after{border-bottom:4px solid #fcb700;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-subLinks-enter{background-color:initial;opacity:.01!important}.nav-menu-subLinks-enter.nav-menu-subLinks-enter-active{background-color:#fff;opacity:1!important;transition:all .2s ease-in .14s}.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{background:#fff;height:11px;margin-left:-4px;margin-top:14px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:10px}@media (max-width:759px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{display:none}}@media (min-width:1020px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{margin-top:15px}}.nav-menu-investingClubLockIcon{margin-left:0}@media (min-width:1020px){.nav-menu-investingClubLockIcon{margin-left:2px}}@media (min-width:1340px){.nav-menu-investingClubLockIcon{margin-left:0}}.nav-menu-investingClubPillIcon,.nav-menu-proPillIcon{background:linear-gradient(135deg,#047e2eb3,#19ba50b3 20%,#047e2eb3);border-radius:10px;color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:8px;font-weight:500;height:13px;line-height:8px;margin-left:-10px;margin-top:4px;padding:3px 4px 2px;text-align:center;text-transform:uppercase;-webkit-user-select:none;user-select:none}@media (max-width:759px){.nav-menu-investingClubPillIcon,.nav-menu-proPillIcon{display:none}}.nav-menu-investingClubPillIcon{background:linear-gradient(135deg,#0053cfb3,#5284cfb3 20%,#0053cfb3);margin-left:-9px}.nav-menu-berkshireWatchLive{font-size:11px}@media (min-width:760px){.nav-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.nav-menu-berkshireWatchLive{display:flex;margin-right:12px}.nav-menu-berkshireWatchLive a{display:-webkit-flex}}@media (min-width:1340px){.nav-menu-berkshireWatchLive{margin-right:44px}}.nav-menu-berkshireWatchLive a{color:#005594;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-berkshireWatchLive a:hover{color:#d1bb7e}.nav-menu-berkshireWatchLive span{font-weight:600}.nav-menu-berkshireWatchLive span.nav-menu-liveText{background-color:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-berkshireWatchLive:before{animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}.nav-menu-watchLive{font-size:11px;margin-right:25px}@media (min-width:1020px){.nav-menu-watchLive{display:flex}.nav-menu-watchLive a{display:-webkit-flex}}.nav-menu-watchLive a{color:#005594;font-weight:600;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-watchLive span{font-weight:600}.nav-menu-watchLive span.nav-menu-liveText{background-color:#001e5a;color:#fff;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-watchLive span.nav-menu-showTitle{background-color:#fff;color:#071d39;letter-spacing:.4px;margin-left:8px;text-transform:none}.nav-menu-watchLive:before{animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}@keyframes nav-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.nav-menu-wrapperButton{padding-right:14px}.nav-menu-signupBtnStickyNav{background-color:#001e5a;border-radius:2px;color:#fff;display:flex;font-size:11px;font-weight:600;letter-spacing:1px;margin-left:-58px;margin-right:14px;padding:3px 10px;text-transform:uppercase}.nav-menu-signupBtnStickyNav:hover{background-color:#002f6c}@media screen and (max-width:1339px){.nav-menu-signupBtnStickyNav{margin-left:0;margin-right:-40px}.nav-menu-watchLive{margin-right:-24px}}@media screen and (max-width:759px){.nav-menu-signupBtnStickyNav{display:none}}.nav-menu-WatchLiveWithSignUpBtn{display:flex;margin-right:0}@media (min-width:1020px){.nav-menu-WatchLiveWithSignUpBtn{padding-right:1px}}@media (min-width:1340px){.nav-menu-WatchLiveWithSignUpBtn{padding-right:14px}}@media screen and (max-width:1019px){.nav-menu-signupBtnStickyNav{margin-right:24px}.nav-menu-watchLive{display:flex;margin-right:35px}}.nav-menu-menuPromotion,.nav-menu-subMenuPromotion{align-items:center;background:#e8802a;border-radius:3px;color:#fff;display:inline-flex;font-size:8px;font-weight:500;gap:10px;justify-content:center;line-height:10px;margin-left:5px;padding:3px 4px 2px;text-transform:uppercase}.nav-menu-menuPromotion{display:none;margin:13px auto auto 3px}.nav-menu-menuPromotion.nav-menu-menuPromotionNoLockIcon{margin-left:-5px}@media (min-width:760px) and (max-width:1019px){.nav-menu-menuPromotion{display:inline-flex}}@media (min-width:1340px){.nav-menu-menuPromotion{display:inline-flex}}
.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{background:inherit;border-radius:0;color:#fff;margin-top:3px;padding:6px;position:relative;z-index:0}.SearchToggle-button.SearchToggle-closeButtonText,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-closeButtonText{font-size:16px;font-weight:600;margin-left:-50px;right:14px;width:auto}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{display:block}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:24px;transition:font-size .25s}.SearchToggle-button .icon-close:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-close:before{font-size:18px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{color:#7a7a7a;color:#fff;display:none;font-size:12px;font-weight:600;left:10px;letter-spacing:.785px;opacity:1;position:absolute;top:5px;transition:opacity .25s}.SearchToggle-button.SearchToggle-searchOpen,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-searchOpen{background:inherit;position:absolute}@media (min-width:760px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;background:#fff;background:#ffffff21;display:flex;flex-direction:row;height:30px;justify-content:flex-end;margin-right:28px;margin-top:10px;padding:0 20px 0 15px;width:205px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{display:block;font-size:9px;left:12px;top:7px}.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{left:30px;top:10px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;color:#fff;height:20px;margin:auto;position:absolute;right:10px;top:0}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:20px}.SearchToggle-button:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn:before{background-color:#6699be80;content:"";height:calc(100% - 30px);left:0;position:absolute;top:50%;transform:translateY(-50%)}}@media (min-width:1020px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;bottom:auto;height:30px;margin-top:10px;padding-left:20px;padding-right:0;transition:transform .25s,height .25s;width:250px}.SearchToggle-button span,.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{font-size:12px;left:10px;top:5px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;color:#fff;right:10px}}.SearchToggle-mega-menu
.SearchToggle-signinButton .SearchToggle-signinButtonBtn,.SearchToggle-mega-menu .SearchToggle-button{position:relative;width:auto}@media (min-width:1340px){.SearchToggle-mega-menu .SearchToggle-button,.SearchToggle-mega-menu .SearchToggle-signinButton .SearchToggle-signinButtonBtn{margin:0 75px;padding:0}}.SearchToggle-articleButton.SearchToggle-buttonSticky{background:inherit;border-left:1px solid #e8e8e8;color:#005594;padding-left:43px;width:39px;z-index:999}.SearchToggle-articleButton.SearchToggle-buttonSticky .icon-search{color:#005594!important;color:#2077b6!important}@media (min-width:760px){.SearchToggle-articleButton.SearchToggle-buttonSticky{padding-left:22px}}@media (min-width:1020px){.SearchToggle-articleButton.SearchToggle-buttonSticky{display:block;line-height:1px;padding-left:43px}.SearchToggle-articleButton.SearchToggle-buttonSticky:before{background:none;bottom:0;content:"";display:block;height:30px;left:0;position:absolute;width:1px}}.SearchToggle-buttonSticky{background:inherit;right:-47px;transform:translateY(-100%);z-index:1000}@media (max-width:759px){.SearchToggle-buttonSticky{opacity:0}}@media (min-width:760px){.SearchToggle-buttonSticky{height:26px;transform:translateY(0);transition:width 0s .25s;width:45px}.SearchToggle-buttonSticky:before{display:none}.SearchToggle-buttonSticky span{opacity:0;transition:opacity .25s}.SearchToggle-buttonSticky .icon-search{color:#fff!important;height:26px}.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (min-width:1020px){.SearchToggle-buttonSticky{right:-68px}.SearchToggle-buttonSticky .icon-search,.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.SearchToggle-buttonSticky{height:35px}}.SearchToggle-megaMenuButton{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButton{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButton span{border-radius:3px;color:#005594;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButton span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButton span{margin-top:1px}}.SearchToggle-megaMenuButton .icon-search{color:#071d39;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButton .icon-search:before{color:#005594;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButton:hover .icon-search,.SearchToggle-megaMenuButton:hover .icon-search:before,.SearchToggle-megaMenuButton:hover span{color:#fcb700}}.SearchToggle-megaMenuButtonAllAccess{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonAllAccess span{border-radius:3px;color:#071d39;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonAllAccess span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess span{margin-top:1px}}.SearchToggle-megaMenuButtonAllAccess .icon-search{color:#fff;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonAllAccess .icon-search:before{color:#002f6c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess:focus .icon-search,.SearchToggle-megaMenuButtonAllAccess:focus .icon-search:before,.SearchToggle-megaMenuButtonAllAccess:focus span,.SearchToggle-megaMenuButtonAllAccess:hover .icon-search,.SearchToggle-megaMenuButtonAllAccess:hover .icon-search:before,.SearchToggle-megaMenuButtonAllAccess:hover span{color:#002f6c}}.SearchToggle-megaMenuButtonPro{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonPro span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonPro span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro span{margin-top:1px}}.SearchToggle-megaMenuButtonPro .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonPro .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro:focus .icon-search,.SearchToggle-megaMenuButtonPro:focus .icon-search:before,.SearchToggle-megaMenuButtonPro:focus span,.SearchToggle-megaMenuButtonPro:hover .icon-search,.SearchToggle-megaMenuButtonPro:hover .icon-search:before,.SearchToggle-megaMenuButtonPro:hover span{color:#00a857}}.SearchToggle-megaMenuButtonIC{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonIC span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonIC span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC span{margin-top:1px}}.SearchToggle-megaMenuButtonIC .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonIC .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC:focus .icon-search,.SearchToggle-megaMenuButtonIC:focus .icon-search:before,.SearchToggle-megaMenuButtonIC:focus span,.SearchToggle-megaMenuButtonIC:hover .icon-search,.SearchToggle-megaMenuButtonIC:hover .icon-search:before,.SearchToggle-megaMenuButtonIC:hover span{color:#0496ff}}
.PageBuilder-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PageBuilder-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PageBuilder-containerFluidWidths{max-width:1290px}}.PageBuilder-containerWidth100{width:100%}.PageBuilder-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PageBuilder-page{margin-bottom:28px}}.PageBuilder-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.PageBuilder-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:678px}}@media (min-width:1020px){.PageBuilder-pageWrapper{max-width:960px}}@media (min-width:1340px){.PageBuilder-pageWrapper{max-width:1290px}}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:100%!important}}.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PageBuilder-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 45px}}.PageBuilder-pageRowFlex{display:flex}.PageBuilder-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.PageBuilder-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.PageBuilder-rowUnderAd{margin-top:-44px}}.PageBuilder-rowWithBackground{background:#cfd8e2;position:relative}.PageBuilder-rowWithBackground:after,.PageBuilder-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.PageBuilder-rowWithBackground:before{right:100%;top:0}.PageBuilder-rowWithBackground:after{left:100%;top:0}.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:2}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:1}}.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:1}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:2}}.PageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PageBuilder-containerFluidWidths .PageBuilder-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PageBuilder-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PageBuilder-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PageBuilder-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PageBuilder-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PageBuilder-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PageBuilder-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PageBuilder-col-9.PageBuilder-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PageBuilder-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PageBuilder-col-full .MyComponentName-container{max-width:none}}.PageBuilder-col-full:last-child{margin-right:0}.PageBuilder-clear-col-padding{padding-bottom:0;padding-top:0}.PageBuilder-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.PageBuilder-paddedWrapper{padding-bottom:20px;padding-top:25px}.PageBuilder-hasBanner{margin-bottom:130px}}.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebar{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebarLeft{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.PageBuilder-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.PageBuilder-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarPro{margin-left:0;margin-right:30px}
.SponsorLogo-container>div>div{align-items:center;align-self:center;display:flex;justify-content:center;margin:0;width:88px}
.TopBanner-container{overflow:hidden;text-align:center;width:100%}@media (min-width:760px){.TopBanner-container{margin:15px auto 0;min-height:120px;min-width:728px;padding:15px 0}}@media (min-width:1020px){.TopBanner-container{margin-left:auto;margin-right:auto}}.TopBanner-berkshireEvent{display:none}@media (max-width:759px){.TopBanner-berkshireEvent{display:block;margin:20px auto;max-width:318px;width:100%}}
@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;-webkit-hyphens:auto;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#ce2b2b;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioCalendarEventFields-eventLabel{font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{box-shadow:0 2px #fff}.PortfolioCalendarEventFields-fieldText:first-child{padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;padding-left:5px}.PortfolioCalendarEventDetails-header{font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;-webkit-appearance:none;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;-webkit-appearance:none;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;-webkit-appearance:none;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioHeader-container{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioHeader-pageHeaderContainer{margin-top:30px}.PortfolioHeader-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioHeader-boldTextTitle{font-size:28px;font-weight:800;letter-spacing:-.5px;line-height:32px}.PortfolioHeader-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioHeader-ctaLinkContainer:hover .PortfolioHeader-chevronDownImage{fill:#fcb700}.PortfolioHeader-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioHeader-chevronDownImage{fill:#0053cf}.InvestingClubCtaLink-cta{align-items:center;display:flex;flex-direction:row;justify-content:flex-end;padding:0}.InvestingClubCtaLink-ctaComponentMargin{margin-bottom:40px;margin-top:40px}.InvestingClubCtaLink-ctaLink{align-items:center;display:flex;flex-direction:row;gap:12px;justify-content:flex-end;white-space:nowrap}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{color:#fcb700;text-decoration:underline}@media (max-width:759px){.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-ctaTitle{text-decoration:unset}}.InvestingClubCtaLink-ctaLink:hover .InvestingClubCtaLink-chevronDownImage{background-color:#fcb700}.InvestingClubCtaLink-ctaTitle{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:22px;white-space:nowrap}@media (max-width:759px){.InvestingClubCtaLink-ctaTitle{font-size:16px;line-height:20px}}.InvestingClubCtaLink-dashboardCtaLink{font-size:16px;line-height:20px}.InvestingClubCtaLink-chevronDownImage{background-color:#005594;height:24px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6223730fa2b46e64d46b.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:24px}.InvestingClubHeader-sectionDivider{display:flex;flex-direction:column;width:100%}.InvestingClubHeader-smallSpan{background-color:#0496ff;display:block;height:6px;width:110px}@media (max-width:360px){.InvestingClubHeader-smallSpan{width:88px}}.InvestingClubHeader-border{background-color:#747474;display:block;height:1px;width:100%}.InvestingClubHeader-sectionHeader{display:flex;flex-direction:row;justify-content:space-between;margin:10px 0 20px}@media (max-width:759px){.InvestingClubHeader-sectionHeader{display:block}}.InvestingClubHeader-title{color:#071d39;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:39px;text-transform:uppercase}@media (min-width:760px){.InvestingClubHeader-title{font-size:24px}}@media (min-width:1020px){.InvestingClubHeader-title{font-size:32px}}.SectionNewsWithFilters-sectionNewsWithFiltersContainer{margin:10px 0 20px}.SectionNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:0 0 20px;overflow:auto}.SectionNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.SectionNewsWithFilters-filterButton:last-child{margin-right:0}.SectionNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.SectionNewsWithFilters-filterButtonActive{background-color:#002f6c}.SectionNewsWithFilters-filterButtonActive span{color:#fff}.SectionNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:column;gap:20px}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer{flex-direction:row}.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:1010px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:820px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainerWithThumbnails{min-height:620px}}@media (min-width:1340px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:575px}}@media (max-width:1339px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:675px}}@media (max-width:1019px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:720px}}@media (max-width:759px){.SectionNewsWithFilters-sectionAssetContainer:not(.SectionNewsWithFilters-sectionAssetContainerWithThumbnails){min-height:495px}}@media (min-width:1340px){.SectionNewsWithFilters-firstAsset{width:81%}}.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:360px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:760px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-articleTitle{font-size:30px;line-height:36px}}@media (max-width:759px){.SectionNewsWithFilters-firstAsset .SectionNewsWithFilters-descriptionContainer{width:100%}}@media (min-width:1340px){.SectionNewsWithFilters-firstAssetWithThumbnails{width:50%!important}}.SectionNewsWithFilters-remainingAssets{display:flex;flex-direction:row;gap:20px;overflow-x:auto;overflow-y:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets{flex-direction:column;margin-bottom:20px;margin-top:0;width:38%}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-right:.5px dashed #bababa;padding-right:5px}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-right:none;padding-right:none}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content{border-bottom:.5px dashed #bababa;border-right:none;padding-bottom:15px;padding-right:none}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-content:last-child{border-bottom:none}}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:760px){.SectionNewsWithFilters-remainingAssets:not(.SectionNewsWithFilters-remainingAssetsWithThumbnails) .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails{width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-thumbnailWrapper{padding-bottom:28.125%!important;width:50%!important}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-content{display:flex;flex-basis:100%;flex-direction:row;width:100%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer{border-bottom:.5px dashed #bababa;height:170px;justify-content:space-between;padding-bottom:5px;position:relative;width:54%}}.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;max-width:100%;overflow:hidden}@media (min-width:1020px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:18px}}@media (min-width:1340px){.SectionNewsWithFilters-remainingAssetsWithThumbnails .SectionNewsWithFilters-descriptionContainer .SectionNewsWithFilters-articleTitle{font-size:24px}}.SectionNewsWithFilters-content{align-items:flex-start;display:flex;flex-basis:100%;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.SectionNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.SectionNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.SectionNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.SectionNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.SectionNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.SectionNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:12px;padding:0}@media (max-width:759px){.SectionNewsWithFilters-descriptionContainer{width:200px}}.SectionNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.SectionNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.SectionNewsWithFilters-tag:hover{color:#fcb700}.SectionNewsWithFilters-articleTitle{color:#071d39;font-weight:600;letter-spacing:.03px;overflow:hidden;overflow-wrap:anywhere}@media (min-width:360px){.SectionNewsWithFilters-articleTitle{font-size:18px;line-height:22px}}@media (min-width:1020px){.SectionNewsWithFilters-articleTitle{font-size:22px;line-height:26px}}.SectionNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.SectionNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.SectionNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.SectionNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.SectionNewsWithFilters-author:after{content:","}.SectionNewsWithFilters-author:nth-last-child(2):after{content:""}.SectionNewsWithFilters-author:hover{color:#fcb700}.SectionNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNewsWithFilters-sectionNewsWithFiltersContainer{border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:12px}.PortfolioNewsWithFilters-filterContainer{display:flex;flex-direction:row;margin:20px 0;overflow:auto}.PortfolioNewsWithFilters-filterButton{background-color:#fff;border:1px solid #071d39;border-radius:20px;height:28px;margin-right:12px;white-space:nowrap;width:-moz-fit-content;width:fit-content}.PortfolioNewsWithFilters-filterButton:last-child{margin-right:0}.PortfolioNewsWithFilters-filterButton span{color:#071d39;display:block;font-size:12px;font-weight:400;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;text-transform:uppercase}.PortfolioNewsWithFilters-filterButtonActive{background-color:#071d39}.PortfolioNewsWithFilters-filterButtonActive span{color:#fff}.PortfolioNewsWithFilters-sectionAssetContainer{display:flex;flex-direction:row;gap:20px}@media (min-width:1340px){.PortfolioNewsWithFilters-firstAsset{width:50%}}.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;font-size:24px;line-height:28px;max-width:100%;overflow:hidden}@media (max-width:759px){.PortfolioNewsWithFilters-firstAsset .PortfolioNewsWithFilters-descriptionContainer{width:100%}}.PortfolioNewsWithFilters-remainingAssets{display:flex;flex-direction:column;overflow-x:auto;overflow-y:hidden}@media (max-width:1339px){.PortfolioNewsWithFilters-remainingAssets{gap:20px}}@media (min-width:760px){.PortfolioNewsWithFilters-remainingAssets{overflow-x:hidden;overflow-y:hidden}}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets{margin-bottom:20px;margin-top:0;width:48%}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-right:5px}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content:last-child{padding-right:none}@media (min-width:1340px){.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-content{padding-bottom:15px;padding-right:none}}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer{height:100%;justify-content:space-between}.PortfolioNewsWithFilters-remainingAssets .PortfolioNewsWithFilters-descriptionContainer .PortfolioNewsWithFilters-articleTitle{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;font-size:18px;line-height:22px;max-width:100%;overflow:hidden}.PortfolioNewsWithFilters-content{align-items:flex-start;display:flex;flex-direction:column;gap:8px;min-width:200px;overflow:hidden;padding:0}.PortfolioNewsWithFilters-thumbnailWrapper{padding-bottom:56.25%;position:relative;width:100%}.PortfolioNewsWithFilters-thumbnail{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.PortfolioNewsWithFilters-thumbnailImage{height:auto;left:50%;position:relative;top:50%;transform:translate(-50%,-50%);width:100%}.PortfolioNewsWithFilters-videoText{bottom:10px;color:#fcb700;font-size:12px;font-weight:800;left:10px;letter-spacing:2px;line-height:15px;position:absolute;text-transform:uppercase}.PortfolioNewsWithFilters-videoDuration{color:#fff;letter-spacing:1.44px;margin-left:7.7px}.PortfolioNewsWithFilters-descriptionContainer{align-items:flex-start;display:flex;flex-direction:column;gap:10px;padding:0}@media (max-width:759px){.PortfolioNewsWithFilters-descriptionContainer{width:200px}}.PortfolioNewsWithFilters-contentBody{align-items:flex-start;display:flex;flex-direction:column;gap:8px;padding:0}.PortfolioNewsWithFilters-tag{align-items:flex-end;color:#002f6c;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNewsWithFilters-tag:hover{color:#fcb700}.PortfolioNewsWithFilters-articleTitle{color:#071d39;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px;overflow:hidden;overflow-wrap:anywhere}.PortfolioNewsWithFilters-articleTitle:hover{color:#071d39;text-decoration:underline}.PortfolioNewsWithFilters-contentFooter{align-items:flex-start;display:flex;flex-direction:column;gap:10px;justify-content:flex-end;padding:0}.PortfolioNewsWithFilters-authorLine{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;padding:0}.PortfolioNewsWithFilters-author{align-items:flex-end;color:#005594;display:flex;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:16px;white-space:nowrap}.PortfolioNewsWithFilters-author:after{content:","}.PortfolioNewsWithFilters-author:nth-last-child(2):after{content:""}.PortfolioNewsWithFilters-author:hover{color:#fcb700}.PortfolioNewsWithFilters-date{align-items:flex-end;color:#828599;display:flex;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioMovers-container{border:.5px solid #bababa;border-radius:4px;margin-bottom:30px;padding:12px;width:100%}.PortfolioMovers-header{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioMovers-date{color:#747474;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;white-space:normal;width:100%}.PortfolioMovers-tableHeader{color:#747474;font-size:14px;font-weight:600;line-height:18px;padding-bottom:20px;padding-top:15px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.PortfolioMovers-dataContainer{padding:8px 27px}}@media (min-width:1020px){.PortfolioMovers-dataContainer{padding:8px}}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-triangle-down,.PortfolioMovers-triangle-up{border-left:4px solid #0000;border-right:4px solid #0000;height:0;width:0}.PortfolioMovers-triangle-up{border-bottom:8px solid #008456}.PortfolioMovers-triangle-down{border-top:8px solid #ce2b2b}.PortfolioMovers-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteGain{font-size:12px;line-height:10px}}.PortfolioMovers-symbolName{color:#171717;display:flex;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-dropdownStyles{left:5px!important;width:150px!important}}.PortfolioMovers-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.PortfolioMovers-quoteDecline{font-size:12px;line-height:10px}}.PortfolioMovers-quoteDecline span:first-child,.PortfolioMovers-quoteGain span:first-child{padding-left:8px;padding-right:5px}.PortfolioMovers-lastPrice{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendarEvent-symbol{display:inline-block;font-weight:600;padding:0 10px;width:80px}.PortfolioCalendarEvent-label{overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:earningsCalendar;border:.5px solid #bababa;border-radius:4px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:10px;font-weight:600;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container earningsCalendar (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#005594;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#002f6c}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableHeaderContent-headerRow .TableHeaderContent-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableBodyContent-contentCell{border:0;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:0 4px 16px 0 #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}@media (max-width:1019px){.CustomColumnsTable-container{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-container{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-container .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}.PortfolioHoldingsTable-tableContainer{margin-bottom:30px}.PortfolioLinkAccountButton-linkAccountButton{background-color:blue;border-radius:8px;color:#fff;cursor:pointer;font-size:16px;line-height:20px;padding:14px;width:200px}.PortfolioList-listContainer{display:flex;gap:15px;margin-bottom:20px;margin-top:20px;width:100%}.PortfolioList-aggregateContainer{background:#fff;border:1px solid grey;border-radius:8px;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:10px;max-width:350px;padding:12px;width:100%}.PortfolioList-portfolioCardContainer{background:#fff;border:1px solid grey;border-radius:8px;cursor:pointer;display:block;height:100px;margin-bottom:10px;padding:10px;text-align:left;width:350px}.PortfolioList-aggregateHeader{font-size:20px;font-weight:600px;letter-spacing:.03px;line-height:26px;padding-bottom:20px}.PortfolioList-aggmarketValue,.PortfolioList-aggmarketValueText{display:flex;flex-wrap:wrap;justify-content:flex-end}.PortfolioList-portfolioHeader{font-size:20px;padding-bottom:16px}.PortfolioList-portfolioValue{font-size:18px;line-height:22px}.PortfolioList-portfolioChangePercent{float:right;font-size:14px;line-height:18px}.PortfolioList-portfolioChangePercentText{float:right}.PortfolioList-marketRow{padding-bottom:4px}.PortfolioList-portfolioChangePercentText,.PortfolioList-portfoliomarketValueText{font-size:14px;line-height:18px}.PortfolioList-aggmarketValue{font-size:28px;font-weight:500;letter-spacing:1.1px;line-height:36px}.PortfolioList-aggmarketValueText{font-size:14px;letter-spacing:.03px;line-height:16px;padding-bottom:30px}.PortfolioList-aggChangePercent{font-size:12px;line-height:14px;padding-bottom:4px}.PortfolioList-aggChangePercentText{font-size:12px;line-height:14px;padding-bottom:8px}.PortfolioOverview-container{background:#f2f2f2;border:.5px solid #bababa;border-radius:4px;margin:30px 0;padding:30px}.PortfolioOverview-headerContainer{display:block;position:relative}.PortfolioOverview-header{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:700;letter-spacing:.03px;line-height:26px;padding-right:40px}.PortfolioOverview-disclaimerText{display:inline-block;font-size:10px;line-height:14px}.PortfolioOverview-timeContainer{font-size:16px;line-height:20px;margin-top:15px}.PortfolioOverview-linkButtonContainer{height:50px}.PortfolioOverview-floatRight{float:right}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PortfolioContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PortfolioContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PortfolioContainer-col-9.PortfolioContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}@media (max-width:1019px){.PortfolioPage-container{padding:0 30px}}@media (max-width:759px){.PortfolioPage-container{padding:0 20px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;margin-top:30px;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:2}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}.FullEpisodePlayer-PlayButton{position:relative}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:0;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:1px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}.EpisodePlayListItem-activeEpisodeContainer{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{color:#fff;font-size:10px;font-weight:700;line-height:16px;padding-left:8px;text-align:left}.FullEpisodeVideoList-container{height:500px;margin-bottom:20px;margin-top:20px;overflow-y:scroll}.ShowsListDropdown-showContainer{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:20px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{background:#fff;border-radius:18px;display:flex;padding:8px 16px 8px 12px;text-align:left}.ShowsListDropdown-showName{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;line-height:18px;text-transform:uppercase}.ShowsListDropdown-chevron{border-style:solid;border-width:.25em .25em 0 0;bottom:-2px;height:.7em;left:6px;position:relative;transform:rotate(135deg);vertical-align:top;width:.7em}.ShowsListDropdown-chevronOpen{margin-top:3px;transform:rotate(315deg)}.ShowsListDropdown-dropdownContainer{background:#000;box-shadow:0 0 20px #030;padding:10px;position:absolute;top:61px;width:300px;z-index:999}.ShowsListDropdown-dropdownItem{border-bottom:1px solid #ccc;cursor:pointer;font-size:16px;padding:8px}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;text-align:justify;width:100%}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/726b9cd5c1192cf89091.svg);background-repeat:no-repeat;display:inline-block;height:11px;margin-right:8px;position:relative;width:11px}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodePage-container{min-height:500px}@media (min-width:1020px){.FullEpisodePage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodePage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodePage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodePage-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodePage-container{padding:0 30px}}@media (max-width:759px){.FullEpisodePage-container{margin-top:-1px;padding:0 20px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px 10px;grid-template-columns:repeat(2,auto) 1fr repeat(2,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(6,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:2}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-column:1/-1;grid-row:1;height:35px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:32px;width:32px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;top:0;z-index:100}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:#00081a;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#9e9e9e;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:17px;transition:color .2s ease-in;white-space:nowrap;width:98px;z-index:1}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:1px solid #f8f8f8;color:#f8f8f8}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:active .ProPlayerTabs-withEmphasisIcon{fill:#171717}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-rightContainer #ProPlayerTabs-audioOnlyLink>.ProPlayerTabs-withEmphasis{justify-content:flex-start}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{background-color:#000;display:flex;flex-direction:column;height:100%}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVPage-container{min-height:500px}@media (min-width:1020px){.LiveTVPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVPage-container{max-width:1290px}}@media (max-width:1019px){.LiveTVPage-container{padding:0 30px}}@media (max-width:759px){.LiveTVPage-container{margin-top:-1px;padding:0 20px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
.BoxInline-container{margin:30px auto auto;max-width:300px}@media (max-width:359px){.BoxInline-container{margin-bottom:20px}}@media (min-width:1020px){.BoxInline-container{margin:0}}.BoxInline-container [id*=div-gpt-boxinline]>div{margin-bottom:40px}
.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{flex:1 1 auto;position:relative;width:100%}@media only screen and (min-width:760px) and (max-width:1019px){.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{left:calc(6.66667% + 26px)}.BoxRail-container-right{left:0}}.BoxRail-container-left{right:30px}.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:30px}@media (min-width:360px){.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:40px}}.BoxRail-adWrapperSticky,.BoxRail-adWrapperStickyNewsAlert{position:fixed;top:130px}.BoxRail-ad{align-items:center;align-self:center;display:flex;justify-content:center;margin:0 auto;max-width:300px;width:250px}@media (min-width:760px){.BoxRail-ad{max-width:768px;min-height:150px;width:100%}}
.TableHeader-container{border-top:6px solid #002f6c;margin-bottom:5px;min-height:6px;width:100%}@media (min-width:760px){.TableHeader-container{margin-bottom:10px}}.TableHeader-title{color:#002f6c;display:inline-block;font-size:20px;font-weight:800;line-height:24px;margin-bottom:0;margin-top:10px;text-transform:uppercase}@media (min-width:1020px){.TableHeader-title{font-size:24px;line-height:29px}}.TableHeader-themeTitle{color:#000}.TableHeader-link{text-decoration:none}.TableHeader-link:hover .TableHeader-title{color:#2077b6}@media (prefers-color-scheme:dark){.webview .TableHeader-themeTitle{background-color:#000;color:#dce0e4}}
.BasicTable-basicTable,.BasicTable-tableWrapper{position:relative}@media (max-width:1019px){.BasicTable-tableWrapper{overflow-x:auto;overflow-y:visible}}.BasicTable-portfolioTableWrapper{position:relative}.BasicTable-table{width:100%}.BasicTable-tableHeadingSortable{cursor:pointer}.BasicTable-portfolioTd{text-align:center!important}.BasicTable-portfolioHeader{display:flex}.BasicTable-portfolioHeaderJustify{justify-content:center}.BasicTable-watchlistTableHeaderJustify{justify-content:end}.BasicTable-portfolioHeaderName{text-align:center}.BasicTable-portfolioHeaderSortIcon{margin-bottom:auto;margin-top:auto}.BasicTable-articleContainer{overflow-x:auto;overflow-y:visible}.BasicTable-articleContainer .BasicTable-tableHeading{border-bottom:1px dotted #e8e8e8}.BasicTable-articleContainer .BasicTable-tableHeading th{color:#747474;cursor:pointer;font-size:12px;font-weight:600;letter-spacing:.9px;padding:8px 15px 8px 5px;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableHeading th{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody{margin-top:10px}.BasicTable-articleContainer .BasicTable-tableBody td{color:#747474;font-size:12px;font-weight:600;padding:12px 15px 12px 5px}.BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#000;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableBody td{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody tr:first-child td{padding-top:15px}.BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background:#f8f8f8}@media (max-width:1019px){.BasicTable-container{overflow-x:auto;overflow-y:hidden}}@media (min-width:1020px){.BasicTable-container .BasicTable-portfolioTableHeading{background:#fff;position:sticky;top:50px;z-index:200}}.BasicTable-container .BasicTable-portfolioTableHeading:after{top:unset!important}.BasicTable-container .BasicTable-tableHeading{border-bottom:none}.BasicTable-container .BasicTable-tableHeading:after{border-bottom:1px dashed #9b9b9b;content:"";display:block;height:1px;left:0;position:absolute;width:100%}.BasicTable-container .BasicTable-tableHeading th{color:#747474;font-size:12px;font-weight:600;letter-spacing:1.2px;line-height:15px;padding:8px 5px;text-transform:uppercase;white-space:nowrap}.BasicTable-container .BasicTable-tableHeading .BasicTable-portfolioHeaderTh{padding-right:0;white-space:unset!important}.BasicTable-container .BasicTable-tableHeading th:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableHeading th:last-child{padding-right:10px}.BasicTable-container .BasicTable-tableBody tr:nth-child(2n){background-color:#f8f8f8}.BasicTable-container .BasicTable-tableBody td{height:30px;padding:5px;white-space:nowrap}.BasicTable-container .BasicTable-tableBody tr:first-child td{padding-top:20px}.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}@media (min-width:760px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:8px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:8px}}@media (min-width:1340px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}}.BasicTable-container .BasicTable-textData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right;text-align:left}.BasicTable-container .BasicTable-numData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-container::-webkit-scrollbar{height:6px}.BasicTable-container::-webkit-scrollbar-track{background:none;border-top:1px dashed #9b9b9b}.BasicTable-container::-webkit-scrollbar-thumb{background:#cfd8e2}.BasicTable-floatingTable{background:linear-gradient(90deg,#fff,#fff 80%,#fff0);left:0;position:absolute;top:0;z-index:2}.BasicTable-floatingTable .BasicTable-tableHeading:after{width:99%}.BasicTable-floatingTable th{text-align:left}.BasicTable-floatingTable .BasicTable-tableBody tr:nth-child(2n){background:none}.BasicTable-portfolioScroll{width:15px!important}.BasicTable-scrollGradient{background:linear-gradient(270deg,#fff 10%,#ffffff80 60%,#fff0);height:calc(100% - 6px);pointer-events:none;position:absolute;right:0;top:0;width:60px}@supports (-ms-high-contrast:none){.BasicTable-scrollGradient{background:#0000}}@supports (-ms-accelerator:true){.BasicTable-scrollGradient{background:#0000}}@media (min-width:760px){.BasicTable-scrollGradient{width:80px}}.BasicTable-quoteGain{color:#008456}.BasicTable-quoteDecline,.BasicTable-quoteGain{font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-quoteDecline{color:#ce2b2b}.BasicTable-watchlistTableQuote{text-align:center!important}.BasicTable-changePositive{border-bottom:11px solid #008456;border-left:6px solid #0000;border-right:6px solid #0000;bottom:14px;height:0;margin-left:5px;overflow:hidden;position:relative;width:0}.BasicTable-changeNegative{border-bottom:0;border-top:11px solid #ce2b2b;bottom:0;top:12px}.BasicTable-symbol{text-align:left}.BasicTable-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.BasicTable-symbol a:focus,.BasicTable-symbol a:hover{color:#2077b6}.BasicTable-name{font-size:12px;font-weight:700;letter-spacing:0;line-height:15px}.BasicTable-unchanged{color:#747474;text-transform:uppercase}.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{color:#000;font-size:14px!important;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px!important;padding-top:6px!important;text-align:center;text-transform:none!important}@media (max-width:759px){.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{font-size:12px!important;letter-spacing:0!important;line-height:16px!important}}.BasicTable-portfolioSummaryPositive{color:#008456}.BasicTable-portfolioSummaryNegative{color:#ce2b2b}@media (prefers-color-scheme:dark){.webview .BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#fff}.webview .BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background-color:#272727}.webview .BasicTable-scrollGradient{background:linear-gradient(270deg,#000 10%,#00000080 60%,#0000)}}.BasicTable-symbolName{display:-webkit-box}.BasicTable-addWatchlist{left:2px;position:relative;top:2px}.BasicTable-desktopOnly{display:none}@media (min-width:1020px){.BasicTable-desktopOnly{display:inline-block}.BasicTable-dropdownStyles{width:150px!important}}@media (max-width:1019px){.BasicTable-dropdownStyles a{align-self:center;font-size:14px;max-width:-moz-fit-content;max-width:fit-content;text-transform:none;width:-moz-fit-content;width:fit-content}}.BasicTable-dataRow{display:flex;justify-content:space-between}.BasicTable-fairValueQuote .BasicTable-tableBody tr:first-child td{padding:4px}.BasicTable-fairValueQuote .BasicTable-numData{text-align:left}.BasicTable-fairValueQuote .BasicTable-numData span{font-size:10px}
.Card-card{border-top:1px dashed #8b8b8b80;box-sizing:border-box;display:block;font-weight:600;padding:15px 0}.Card-card .Card-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (min-width:760px){.Card-card{padding:0}}@media (min-width:1020px){.Card-card{padding:30px 0}}.Card-buffett:hover .title{text-decoration:underline}.Card-package{border-color:#ffffff80}.Card-package .Card-title{color:#fff}.Card-title{color:#2e2e2e}.Card-title:focus,.Card-title:hover{color:#2e2e2e;text-decoration:underline}.Card-titleAndFooter{display:flex;flex-direction:column;justify-content:space-between}.Card-leftSquareMedia .Card-titleAndFooter,.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{height:auto}.Card-mediaContainer{display:block;line-height:0;margin-bottom:10px;position:relative;width:100%}.Card-mediaContainer:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-mediaContainer:hover .Card-aboveImageTitle a{color:#fff;text-decoration:underline}@media (min-width:760px){.Card-mediaContainer{margin-bottom:20px}}.Card-buffett .mediaContainer:hover+.textContent .title{text-decoration:underline}.Card-mediaContainerPackage{display:block;margin:0 -20px 20px;position:relative}.Card-mediaContainerPackage:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-rectangleMediaContainer,.Card-squareMediaContainer{background-position:50%;height:100%;width:100%}@media (max-width:759px){.Card-rectangleMediaContainer{margin-bottom:8px}}.Card-imageGradient{background:linear-gradient(180deg,#071d3900 0,#071d3980 46%,#071d39 97%,#071d39);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#00071d39",endColorstr="#071d39",GradientType=0);height:50%;position:absolute;width:100%}.Card-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:10px;position:absolute;width:100%}@media (min-width:1340px){.Card-videoFooter{height:50px;padding-top:25px}}.Card-videoFooterContent{bottom:10px;left:10px;position:absolute}@media (min-width:1020px){.Card-videoFooterContent{bottom:20px;left:20px}.Column-squareLeadRight .Card-videoFooterContent,.Column-threeUp .Card-videoFooterContent{bottom:10px;left:10px}}.Card-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.Card-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.Card-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.Card-videoTime{letter-spacing:1.44px}}.Card-totalTime{padding-left:5px}.Card-totalTime:before{content:"|";display:inline-block;margin-right:5px}.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.15;margin-right:10px}.Card-byline a,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a{color:inherit}.Card-byline a:hover,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a:hover{text-decoration:underline}@media (min-width:1020px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{font-size:12px}}@media (min-width:1340px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin-top:1px}}.Card-bylinePackage{color:#fcb700}.Card-time{color:#747474;font-size:10px;font-weight:600;letter-spacing:1px;line-height:15px;text-transform:uppercase}@media (min-width:1020px){.Card-time{font-size:11px}}.Card-timePackage{color:#b9c7d5}.Card-sponsoredLogo{color:#53c;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.4;margin:0 0 10px;margin-top:17px!important}@media (min-width:360px){.Card-sponsoredLogo{font-size:12px}}@media (min-width:760px){.Card-sponsoredLogo{font-size:14px;margin:8px 0 10px!important;padding-top:3px}}@media (min-width:1020px){.Card-sponsoredLogo{font-size:14px;margin-top:0!important;padding-top:11px}}@media (min-width:1340px){.Card-sponsoredLogo{font-size:16px;margin-top:0;padding-top:9px}}.Card-sponsoredLogo img{bottom:-2px;display:inline-block;margin-left:10px;max-height:20px;max-width:calc(100% - 80px);position:relative}@media (min-width:1020px){.Card-sponsoredLogo img{max-width:calc(100% - 85px)}}.Card-sponsoredLogo:hover{text-decoration:underline}.Card-packageTitle{bottom:0;color:#fcb700;font-size:12px;font-weight:700;left:20px;letter-spacing:.5px;line-height:1.25;position:absolute;text-transform:uppercase}.Card-packageTitle:hover{text-decoration:underline}.Card-live img{height:12px;margin-bottom:10px;max-height:12px;max-width:42px;width:42px}.Card-titleOnly{font-size:17px;font-weight:600;line-height:1.2;line-height:22px;padding:15px 0}@media (min-width:760px){.Card-titleOnly{font-size:17px}}@media (min-width:1020px){.Card-titleOnly{font-size:16px}}@media (min-width:1340px){.Card-titleOnly{font-size:18px;line-height:24px;padding:20px 0}}.Card-pro{margin-bottom:-6px;position:relative;top:-7px}@media (min-width:760px){.Card-pro{margin-top:8px;max-height:none}}.Card-titleOnlyUltraDense{font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;max-height:100px;padding:16px 0}@media (min-width:760px){.Card-titleOnlyUltraDense{font-size:17px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{font-size:16px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{font-size:18px}}@media (min-width:760px){.Card-titleOnlyUltraDense{font-weight:600;height:140px;max-height:140px;padding-top:15px}.Card-titleOnlyUltraDense:last-child{border-bottom:1px dashed #8b8b8b80}}@media (min-width:760px) and (min-width:760px){.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{height:140px;max-height:140px;padding-top:20px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{height:130px;line-height:24px;max-height:130px}.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-23px}}@media (max-width:759px){.Card-titleOnlyImageDense{font-size:17px;font-weight:600;line-height:24px}}@media (min-width:760px){.Card-titleOnlyTopBorder{border-top:none;padding-top:0}}.Card-titleOnlyNoBorder{border-top:none;font-weight:600;padding-top:20px}@media (min-width:760px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:29px;padding-top:0}}@media (min-width:1020px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:27px}}@media (min-width:1340px){.Card-titleOnlyNoBorder{height:100px;line-height:24px;max-height:100px;padding-bottom:34px}}.Card-titleOnlyTopSolidBorder{border-top:1px solid #e8e8e8}@media (min-width:760px){.Card-titleOnlyTopSolidBorder{border-top:none;padding-top:0}}.Card-titleOnlyHalf{float:left;padding-right:30px;width:50%}@media (min-width:1020px){.Card-titleOnlyHalf{width:100%}}@media (min-width:1340px){.Card-titleOnlyHalf{width:50%}}.Card-titleOnlyHalf:last-child{padding-right:0}.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:30px}@media (min-width:1020px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:none;padding-left:0}}@media (min-width:1340px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:30px}}.Card-titleOnlyHalfPackage:last-child .Card-textContent{border-color:#ffffff80}.Card-titleByline{font-size:16px;line-height:1.2}@media (min-width:760px){.Card-titleByline{font-size:16px}}@media (min-width:1020px){.Card-titleByline{font-size:16px}}@media (min-width:1340px){.Card-titleByline{font-size:24px}}.Card-titleBylinePackage{border-top:1px dashed #ffffff80}.Card-titleBylineNoBorder{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-titleBylineNoBorder{font-size:18px}}@media (min-width:1020px){.Card-titleBylineNoBorder{font-size:21px}}@media (min-width:1340px){.Card-titleBylineNoBorder{font-size:24px}}.Card-titleBylineRight{border-top:1px dashed #8b8b8b80;font-size:16px;line-height:1.2;width:100%}@media (min-width:760px){.Card-titleBylineRight{font-size:16px}}@media (min-width:1020px){.Card-titleBylineRight{font-size:22px}}@media (min-width:1340px){.Card-titleBylineRight{font-size:24px}}@media (min-width:760px){.Card-titleBylineRight{border-top:none;padding-top:0}}.Card-titleBylineRight .Card-textContent{padding-left:0}@media (min-width:760px){.Card-titleBylineRight .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:15px}}@media (min-width:1340px){.Card-titleBylineRight .Card-textContent{padding-left:30px}}.Card-largeTitleByline{border-top:1px dashed #8b8b8b80;font-size:16px;line-height:1.2}@media (min-width:760px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1020px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1340px){.Card-largeTitleByline{font-size:36px}.Card-largeTitleByline .Card-investingClubPill,.Card-largeTitleByline .Card-proPill,.Card-largeTitleByline .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}.Card-largeTitleByline{line-height:40px}}.Card-titleBylineHalf{flex:1 0 40%;font-size:16px;line-height:1.2;max-width:50%}@media (min-width:760px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1020px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1340px){.Card-titleBylineHalf{font-size:16px}}.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:block}@media (min-width:760px){.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:inline-block}}.Card-featuredRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-bottom:9px;padding-top:0;width:100%}@media (min-width:760px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredRectangleMedia{font-size:30px}.Card-featuredRectangleMedia .Card-investingClubPill,.Card-featuredRectangleMedia .Card-proPill,.Card-featuredRectangleMedia .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredRectangleMedia .Card-imageContainer{position:relative}.Card-featuredRectangleMedia .Card-mediaContainer{margin:initial;width:100%}@media (min-width:760px){.Card-featuredRectangleMedia{padding-bottom:14px}}.Card-specialReportsRiver{border-bottom:1px dashed #8b8b8b80;border-top:none;font-size:17px;line-height:1.2;margin:0 0 18px;padding:0}@media (min-width:760px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1020px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1340px){.Card-specialReportsRiver{font-size:18px}}.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:18px;width:auto}@media (min-width:760px){.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:24px}}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{font-size:12px;line-height:12px;margin-bottom:9px;margin-top:9px}@media (min-width:360px){.Card-specialReportsRiver{display:flex;line-height:20px}}@media (min-width:760px){.Card-specialReportsRiver{line-height:22px;margin-bottom:24px;max-height:422px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:15px;margin-top:15px}}@media (min-width:1020px){.Card-specialReportsRiver{max-height:428px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:16px;margin-top:16px}}@media (min-width:1340px){.Card-specialReportsRiver{max-height:218px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:18px;margin-top:18px}}@media (min-width:360px){.Card-specialReportsRiver .Card-bylineContainer{display:none}}@media (min-width:760px){.Card-specialReportsRiver .Card-bylineContainer,.Card-specialReportsRiver .Card-bylineContainer .Card-byline,.Card-specialReportsRiver .Card-bylineContainer .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-specialReportsRiver .Card-bylineContainer .Card-threeUpBylineStyle{display:inline}}.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{position:relative}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:100px;margin-right:15px;width:100px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:116px;margin-right:32px;width:206px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:107px;margin-right:30px;width:190px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:169px;width:300px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-bylineDivider{color:#b2b2b2;font-size:12px;margin:0 -5px 0 5px}}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:90px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{font-size:22px;line-height:26px;min-height:140px}}.Card-featuredRectangleMediaImagedense{font-size:22px;line-height:26px}.Card-featuredRectangleMediaImagedense .Card-mediaContainer{margin-bottom:15px}@media (min-width:760px){.Card-featuredRectangleMediaImagedense{line-height:28px;max-height:422px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense{font-size:28px;line-height:34px;max-height:428px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense{font-size:30px;line-height:36px;max-height:520px}.Card-featuredRectangleMediaImagedense .Card-investingClubPill,.Card-featuredRectangleMediaImagedense .Card-proPill,.Card-featuredRectangleMediaImagedense .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:760px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:310px}}.Card-featuredRectangleMediaPackage{display:block}.Card-featuredSecondaryRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredSecondaryRectangleMedia{font-size:24px}}.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:auto}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:100%}}.Card-featuredSecondaryRectangleMediaPackage{display:block}@media (min-width:1340px){.Card-featuredSecondaryRectangleMediaPackage{line-height:28px}}.Card-cardFooter,.Card-threeUpCardFooterStyle{display:flex;flex-flow:row wrap;margin:15px 0}.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:3px}@media (max-width:1020px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}}@media (max-width:759px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1340px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:0}}.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}.Card-rectangleMedia{border-top:none;font-size:16px;line-height:1.2;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1020px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleMedia{font-size:24px;margin-top:0}}.Card-rectangleMedia.Card-standardBreakerCard{margin-top:0;padding-bottom:0}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard{height:390px;max-height:390px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard{height:360px;max-height:360px}}.Card-rectangleMedia.Card-standardBreakerCard .Card-title{display:inline;font-size:18px;line-height:1.2}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:19px;height:133px;max-height:133px}}@media (min-width:1020px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{height:190px;max-height:190px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:24px;height:150px;max-height:150px}}@media (min-width:760px){.Card-rectangleMedia{margin-top:0}}.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{display:inline;position:relative;top:-15px}}@media (max-width:1339px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:30px}}@media (max-width:1019px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:50px}}@media only screen and (min-width:1000px) and (max-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:35px}}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:0}}@media (min-width:760px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:30px}}@media (min-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-15px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-30px}}@media (min-width:760px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:26px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:30px}}.Card-rectangleMediaPackage{display:block;font-size:22px;line-height:1.2;margin-top:0}@media (min-width:760px){.Card-rectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-rectangleMediaPackage{font-size:24px}}.Card-rectangleMediaHalf{float:left;font-size:16px;line-height:1.2;padding-right:15px;width:50%}@media (min-width:760px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleMediaHalf{font-size:24px}}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalf{border-top:none;line-height:20px;padding-top:0}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1020px){.Card-rectangleMediaHalf{line-height:1.2}}.Card-rectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}.Card-rectangleMediaHalfNoBorder{border-top:none;float:left;font-size:14px;line-height:1.2;padding-top:0;width:calc(50% - 15px)}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1020px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1340px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:inline-block}}@media only screen and (max-width:759px){.Card-imageContainer{position:relative}}.Card-leftRectangleToTopMedia{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1020px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1340px){.Card-leftRectangleToTopMedia{font-size:24px}}@media (min-width:760px){.Card-leftRectangleToTopMedia{display:flex;flex-direction:row;flex-grow:1}}.Card-leftRectangleToTopMedia .Card-mediaContainer{position:relative}@media (min-width:760px){.Card-leftRectangleToTopMedia .Card-mediaContainer{flex:1 1 0;margin-bottom:0;margin-right:30px}.Card-leftRectangleToTopMedia .Card-textContent{flex:1 1 0}}.Card-rectangleToRectangleMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleToRectangleMediaHalf{font-size:24px}}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}@media (min-width:760px){.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:0}}.Card-recToRecMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-recToRecMediaHalf{font-size:18px}}@media (min-width:760px){.Card-recToRecMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-squareMedia{border-top:none;display:flex;flex-direction:row;font-size:16px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareMedia{font-size:16px}}@media (min-width:1020px){.Card-squareMedia{font-size:16px}}@media (min-width:1340px){.Card-squareMedia{font-size:24px}}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}.Card-squareMedia .Card-mediaContainer{margin-bottom:0;margin-right:30px;width:50%}.Card-squareMedia .Card-textContent{width:50%}@media (min-width:760px){.Card-squareMedia{border-top:none;flex-direction:column;margin-top:0}.Card-squareMedia .Card-mediaContainer{margin-bottom:30px;margin-right:0;width:100%}.Card-squareMedia .Card-textContent{width:100%}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}}@media (min-width:360px) and (max-width:759px){.Card-squareMediaImageDense{border-bottom:1px dashed #8b8b8b;border-top:1px dashed #8b8b8b;padding-bottom:15px;padding-top:15px}.Card-squareMediaImageDense .Card-byline,.Card-squareMediaImageDense .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMediaImageDense .Card-time,.Card-threeUpCardFooterStyle .Card-squareMediaImageDense .Card-threeUpBylineStyle{display:inline-block}.Card-squareMediaImageDense .Card-mediaContainer{display:none}.Card-squareMediaImageDense .Card-textContent{width:100%}}@media (min-width:760px){.Card-squareMediaImageDense{font-size:20px;max-height:402px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:18px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-squareMediaImageDense{font-size:20px;max-height:418px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:16px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media only screen and (min-width:1180px) and (max-width:1339px){.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-squareMediaImageDense{font-size:24px;line-height:28px;max-height:510px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:17px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:310px}}.Card-leftSquareMedia{display:flex;font-size:16px;line-height:1.2}@media (min-width:760px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1020px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-leftSquareMedia{font-size:24px}}.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:block}.Card-leftSquareMedia .Card-mediaContainer{margin-bottom:0;width:30%}.Card-leftSquareMedia .Card-textContent{display:flex;flex-direction:column;padding-left:30px;width:70%}.Card-leftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:inline-block}}.Card-rectangleToLeftSquareMedia{border-top:none;display:flex;flex-direction:row;font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{font-size:17px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{font-size:18px}}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:103px;margin-bottom:0;margin-right:30px;min-width:103px;width:103px}@media (min-width:760px){.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:auto}}.Card-rectangleToLeftSquareMedia .Card-textContent{display:flex;flex-direction:column;margin-top:-6px}.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{border-bottom:none;flex-direction:column;margin-top:0}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{margin-bottom:10px;margin-right:0;width:100%}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{line-height:1.2}}.Card-rectangleToLeftSquareMediaUltraDense{font-weight:600}@media (min-width:360px) and (max-width:759px){.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainer{display:none}.Card-rectangleToLeftSquareMediaUltraDense .Card-threeUpCardFooterStyle{align-items:baseline;flex-direction:row}}@media (min-width:760px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px;padding:0}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:103px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:18px;line-height:24px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:150px}}.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border-bottom:1px dashed #8b8b8b80;border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:22px}}@media (min-width:1020px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:26px}}@media (min-width:1340px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:30px}.Card-featuredSquareToRectangleMedia .Card-investingClubPill,.Card-featuredSquareToRectangleMedia .Card-proPill,.Card-featuredSquareToRectangleMedia .Card-watchLivePill,.Card-squareLeadMediaLeft .Card-investingClubPill,.Card-squareLeadMediaLeft .Card-proPill,.Card-squareLeadMediaLeft .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 -20px 20px;width:auto}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border:none}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 20px}}.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 10px}.Card-squareToRectangleMediaPackage{border-top:0;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareToRectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-squareToRectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-squareToRectangleMediaPackage{font-size:24px}}.Card-placeholder{background-color:#d7e1e4}div:focus{outline:none}.Card-mediaContainerInner{height:auto;width:100%}.Card-eyebrow{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600}@media (max-width:759px){.Card-eyebrow{font-size:13px}}.Card-eyebrowContainer{letter-spacing:.8px;padding:0 0 10px;text-transform:uppercase}@media (min-width:760px){.Card-eyebrowContainer{padding:10px 0}}.Card-titleOnlyFourUp{padding-top:11px;width:100%}@media (min-width:760px){.Card-titleOnlyFourUp{padding-top:9px;width:353px}}@media (min-width:1020px){.Card-titleOnlyFourUp{padding:11px 0;width:219px}}@media (min-width:1340px){.Card-titleOnlyFourUp{height:135px;padding:15px 0;width:300px}}.Card-titleOnlyFourUp.Card-cnbcvideo .Card-title:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}.Card-titleOnlyFourUp.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{line-height:1;margin:0;top:-2px}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:99px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:92px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{display:block;height:19px;margin:0 0 7px;position:unset;width:35px}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{height:23px;margin:0 0 2px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proIcon{color:#3cb878;line-height:17px;position:relative}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{line-height:1;margin:0 0 7px;padding:0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:18px;margin:0 0 5px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;font-size:12px;line-height:18px;overflow-y:hidden}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:16px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:18px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{line-height:1}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:73px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:69px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{color:#171717;font-size:17px;font-weight:600;line-height:21px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{line-height:22px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;line-height:18px;text-align:left}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:7px 0 0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:11px 0 0}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:3px 0 0}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:9px 0 0}}.Card-threeUpCardFooterStyle .Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0;padding:0}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{font-size:11px}.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:auto!important}.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-description{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;line-height:19px}.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{display:block;position:relative;width:100%}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:1px dashed #8b8b8b80;margin-top:0}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2),.Card-threeUpStackRectangleSquareMedia:nth-child(n+2){border-bottom:none;width:50%}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{height:72px;width:145px}}@media (min-width:360px) and (max-width:759px) and (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{margin:0 auto 10px}}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2){border-right:1px dashed #8b8b8b80;border-top:none;margin:14px 0 0;padding:0 15px 0 0}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(3),.Card-threeUpStackRectangleSquareMedia:nth-of-type(3){border-top:none;margin:14px 0 0;padding:0 0 0 15px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px;padding:0}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.8px;line-height:18px}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0}.Card-threeUpRectangleSquareMediaDescription .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 5px;position:relative;top:0;width:35px}.Card-threeUpRectangleSquareMediaDescription .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-proIcon{color:#3cb878;position:absolute;top:-5px}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainerInner{height:72px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:none;margin-right:30px;padding:0 0 10px;width:calc(33.33333% - 20px)}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2n),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2n){border-right:none}.Card-threeUpRectangleSquareMediaDescription:nth-child(3n),.Card-threeUpStackRectangleSquareMedia:nth-child(3n){margin-right:0}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:106px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:190px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:300px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:169px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:119px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:100px}}.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-title div:after,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:auto;margin:0 0 15px;width:100%}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:169px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:146px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:127px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter{display:block}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proIcon{line-height:.2}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{display:block;font-size:11px;letter-spacing:.1em;margin-top:10px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription{width:calc(100% - 60px)}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription{width:190px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription{width:300px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpRectangleSquareMediaDescription .Card-titleContainer a{height:auto!important}.Card-titleOnlyThreeUpStack{border-top:1px dashed #8b8b8b80;margin:0;padding:15px 0;width:100%}@media (min-width:360px) and (max-width:759px){.Card-titleOnlyThreeUpStack:nth-of-type(4n){margin:14px 0 0}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{display:block}}@media (min-width:760px){.Card-titleOnlyThreeUpStack{border-bottom:1px dashed #8b8b8b80;margin-right:30px;width:calc(33.33333% - 20px)}.Card-titleOnlyThreeUpStack:nth-child(3n){margin-right:0}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack{width:190px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack{font-size:18px;line-height:22px;width:300px}}.Card-titleOnlyThreeUpStack.Card-cnbcvideo .Card-title:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}@media (min-width:760px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:124px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:110px}}.Card-titleOnlyThreeUpStack.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyThreeUpStack .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent{height:146px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent{height:127px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter{display:block}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{color:#3cb878;position:absolute;top:-8px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{top:5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:72px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{display:block;font-size:11px;letter-spacing:.1em;margin:10px 0 0}.Card-titleOnlyThreeUpStackLast{border-bottom:none}.Card-proIcon{line-height:.8}@media (min-width:760px){.Card-proIcon{line-height:0}}.Card-videoIcon{display:none}.Card-description{font-size:12px;font-weight:400;margin-bottom:10px;margin-top:10px}.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 31.19%,#071d39 69.16%);bottom:0;padding:0 22px 20px 21px;position:absolute;width:100%}@media (min-width:360px){.Card-aboveImageContent{padding:48px 46px 30px}}@media (min-width:760px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 20.19%,#071d39 69.16%);padding:24px 46px 30px}}@media (min-width:1020px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 4.19%,#071d39 69.16%);padding:19px 46px 30px}}@media (min-width:1340px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 29.19%,#071d39 69.16%);padding:70px 70px 30px}}.Card-aboveImageTitle{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-style:normal;font-weight:700;line-height:22px;margin:0}@media (min-width:760px){.Card-aboveImageTitle{font-size:30px;font-weight:800;line-height:32px;width:580px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.Card-aboveImageTitle{width:538px}}@media (min-width:1340px){.Card-aboveImageTitle{font-size:38px;font-weight:800;line-height:40px;width:820px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-aboveImageTitle a{color:#fff}.Card-aboveImageTitle a:focus,.Card-aboveImageTitle a:hover{color:#fff;text-decoration:underline}@media (max-width:1339px){.Card-rectangleToRectangleMediaHalf .Card-pro{margin:0;top:0}}@media (prefers-color-scheme:dark){.webview .Card-titleContainer a{color:#b2b2b2}}@media (max-width:1020px){.Card-specialReportTimestamp{font-size:11px}}
@media (max-width:759px){.MidResponsive-midResponsiveContainer iframe{max-width:300px}}[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin:40px auto 0;position:sticky}@media (min-width:760px){[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin-top:0}}[id*=MidResponsive]>div,[id*=dart_wrapper_midresponsive]>div{margin-bottom:40px;text-align:center}
.TrendingNowBreaker-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TrendingNowBreaker-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-containerFluidWidths{max-width:1290px}}.TrendingNowBreaker-containerWidth100{width:100%}.TrendingNowBreaker-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TrendingNowBreaker-page{margin-bottom:28px}}.TrendingNowBreaker-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TrendingNowBreaker-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:678px}}@media (min-width:1020px){.TrendingNowBreaker-pageWrapper{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-pageWrapper{max-width:1290px}}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:100%!important}}.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TrendingNowBreaker-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 45px}}.TrendingNowBreaker-pageRowFlex{display:flex}.TrendingNowBreaker-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TrendingNowBreaker-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TrendingNowBreaker-rowUnderAd{margin-top:-44px}}.TrendingNowBreaker-rowWithBackground{background:#cfd8e2;position:relative}.TrendingNowBreaker-rowWithBackground:after,.TrendingNowBreaker-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TrendingNowBreaker-rowWithBackground:before{right:100%;top:0}.TrendingNowBreaker-rowWithBackground:after{left:100%;top:0}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:2}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:1}}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:1}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:2}}.TrendingNowBreaker-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TrendingNowBreaker-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TrendingNowBreaker-containerFluidWidths .TrendingNowBreaker-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TrendingNowBreaker-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TrendingNowBreaker-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TrendingNowBreaker-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TrendingNowBreaker-col-9.TrendingNowBreaker-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TrendingNowBreaker-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TrendingNowBreaker-col-full .MyComponentName-container{max-width:none}}.TrendingNowBreaker-col-full:last-child{margin-right:0}.TrendingNowBreaker-clear-col-padding{padding-bottom:0;padding-top:0}.TrendingNowBreaker-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TrendingNowBreaker-paddedWrapper{padding-bottom:20px;padding-top:25px}.TrendingNowBreaker-hasBanner{margin-bottom:130px}}.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebar{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebarLeft{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarPro{margin-left:0;margin-right:30px}.TrendingNowBreaker-pageRow{margin-bottom:50px}@media (max-width:759px){.TrendingNowBreaker-pageRow{padding:0}}@media (min-width:760px){.TrendingNowBreaker-col-9{padding-bottom:5px}}@media (min-width:1020px){.TrendingNowBreaker-col-9{padding-bottom:20px}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}
.TrendingNow-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.TrendingNow-container{padding-left:0;padding-right:0}}.TrendingNow-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:10px;margin-top:0;padding-top:15px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.TrendingNow-heading{padding-top:15px}}@media (min-width:1020px){.TrendingNow-heading{font-size:32px;line-height:40px;padding-top:20px}}.TrendingNow-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.TrendingNow-storyContainer{display:flex;flex-wrap:wrap}@media (min-width:1020px){.TrendingNow-storyContainer{flex-wrap:nowrap;justify-content:space-between}}
.TrendingNowItem-linkWrap{line-height:18px}.TrendingNowItem-linkWrap .TrendingNowItem-title{color:#000;display:inline}.TrendingNowItem-linkWrap .TrendingNowItem-title:hover{color:#000;text-decoration:underline}.TrendingNowItem-number{color:#cfd8e2;font-size:46px;font-weight:800;line-height:46px;margin-bottom:8px}.TrendingNowItem-storyItem{border-left:6px solid #f3f5f7;font-size:17px;font-weight:500;line-height:21px;list-style:none;margin:15px 0;padding:0 30px 5px 15px;width:50%}@media (min-width:760px){.TrendingNowItem-storyItem{font-size:16px;line-height:20px;width:33.33333%}}@media (min-width:1020px){.TrendingNowItem-storyItem{font-size:16px;padding-right:55px;width:100%}.TrendingNowItem-storyItem:last-child{padding-right:0}}
.TwoColumnImageDense-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TwoColumnImageDense-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-containerFluidWidths{max-width:1290px}}.TwoColumnImageDense-containerWidth100{width:100%}.TwoColumnImageDense-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TwoColumnImageDense-page{margin-bottom:28px}}.TwoColumnImageDense-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TwoColumnImageDense-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:678px}}@media (min-width:1020px){.TwoColumnImageDense-pageWrapper{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-pageWrapper{max-width:1290px}}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:100%!important}}.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TwoColumnImageDense-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 45px}}.TwoColumnImageDense-pageRowFlex{display:flex}.TwoColumnImageDense-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TwoColumnImageDense-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TwoColumnImageDense-rowUnderAd{margin-top:-44px}}.TwoColumnImageDense-rowWithBackground{background:#cfd8e2;position:relative}.TwoColumnImageDense-rowWithBackground:after,.TwoColumnImageDense-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TwoColumnImageDense-rowWithBackground:before{right:100%;top:0}.TwoColumnImageDense-rowWithBackground:after{left:100%;top:0}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:2}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:1}}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:1}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:2}}.TwoColumnImageDense-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TwoColumnImageDense-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TwoColumnImageDense-containerFluidWidths .TwoColumnImageDense-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TwoColumnImageDense-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TwoColumnImageDense-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TwoColumnImageDense-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TwoColumnImageDense-col-9.TwoColumnImageDense-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TwoColumnImageDense-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TwoColumnImageDense-col-full .MyComponentName-container{max-width:none}}.TwoColumnImageDense-col-full:last-child{margin-right:0}.TwoColumnImageDense-clear-col-padding{padding-bottom:0;padding-top:0}.TwoColumnImageDense-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-paddedWrapper{padding-bottom:20px;padding-top:25px}.TwoColumnImageDense-hasBanner{margin-bottom:130px}}.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebar{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebarLeft{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarPro{margin-left:0;margin-right:30px}.TwoColumnImageDense-col{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-col{padding-bottom:20px;padding-top:25px}}@media (min-width:760px){.TwoColumnImageDense-col-9{padding-bottom:5px}}@media (min-width:1020px){.TwoColumnImageDense-col-9{padding-bottom:20px}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.TwoColumnImageDense-imageDense{margin-right:0;padding:0 0 32px}@media (min-width:360px){.TwoColumnImageDense-imageDense{padding-bottom:10px}}@media (min-width:760px){.TwoColumnImageDense-imageDense{padding-bottom:24px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-imageDense{margin:0 auto;width:678px}}@media (max-width:359px){.TwoColumnImageDense-imageDense{padding:0}}
.SectionWrapper-container{display:flex;flex-direction:column;padding-top:5px;position:relative;width:100%}.SectionWrapper-container .SectionHeader-container{display:none}.SectionWrapper-container .MustWatchVideo-container{flex-grow:1;margin-right:-30px;max-width:none}@media (min-width:760px){.SectionWrapper-container{flex-direction:row;flex-wrap:wrap}}@media (min-width:1020px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(150% - 30px);min-width:calc(150% - 30px)}}@media (min-width:1020px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);min-width:calc(225% - 30px)}}@media (min-width:1340px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}.SectionWrapper-header{border-top:1px solid #747474;order:1;position:relative}@media (min-width:760px){.SectionWrapper-header{flex-grow:1}}.SectionWrapper-decoration{background-color:#fcb700;display:block;height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.SectionWrapper-decoration{width:110px}}.SectionWrapper-title{color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:1;margin:15px 0;text-transform:uppercase}.SectionWrapper-title a{color:inherit}.SectionWrapper-title a:focus,.SectionWrapper-title a:hover{color:#2077b6}@media (min-width:1020px){.SectionWrapper-title{font-size:32px;margin-top:20px}}.SectionWrapper-titleImage{height:30px;margin:15px 0;max-width:100%;width:auto}@media (min-width:1020px){.SectionWrapper-titleImage{height:40px;margin-top:20px}}.SectionWrapper-sponsorIcon{display:none}@media (min-width:1020px){.SectionWrapper-sponsorIcon{bottom:0;display:block;height:31px;margin:auto;position:absolute;right:0;top:0}}.SectionWrapper-link{border:1px solid #002f6c;color:#002f6c;display:flex;flex-direction:column;flex-direction:center;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;line-height:12px;order:3;text-align:center;text-transform:uppercase;transition:all .15s ease-out;width:100%}.SectionWrapper-link:focus,.SectionWrapper-link:hover{background-color:#fcb700;border-color:#fcb700;color:#002f6c}@media (min-width:760px){.SectionWrapper-link{margin-left:30px;max-width:168px;min-width:168px;order:2}}@media (min-width:1020px){.SectionWrapper-link{margin-left:25px}}@media (min-width:1340px){.SectionWrapper-link{margin-left:30px}}.SectionWrapper-content{display:block;flex-grow:1;order:2;width:100%}.SectionWrapper-content.SectionWrapper-latestContent{margin-bottom:30px}@media (min-width:1020px){.SectionWrapper-content.SectionWrapper-latestContent{height:-webkit-fill-available;height:-moz-available;height:stretch}}@media (min-width:760px){.SectionWrapper-content{order:3}}@media screen and (max-width:1020px){.SectionWrapper-latestNews{max-height:none}}@media screen and (min-width:1019px){.SectionWrapper-latestNews{height:604px}}@-moz-document url-prefix(){.SectionWrapper-latestNews:hover{overflow-y:scroll;padding-right:0}}@media (prefers-color-scheme:dark){.webview .SectionWrapper-title,.webview .SectionWrapper-title a{color:#dce0e4}}
.Column-cardRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.Column-cardRow{padding-left:0;padding-right:0}}.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:last-child{margin-right:0}.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dualLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-right:30px}.Column-dualLeadLeftPackage:last-child{margin-right:0}.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:last-child{margin-right:0}.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-dualLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRightPackage{margin-right:30px}.Column-dualLeadRightPackage:last-child{margin-right:0}.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-dualLeadRightPackage{margin-left:0;margin-right:30px}}.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:last-child{margin-right:0}.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:last-child{margin-right:0}.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}.Column-dynamicContentRight:last-child{margin-left:auto}}@media (min-width:1020px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:last-child{margin-right:0}.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModRight{margin-right:0}}@media (min-width:760px){.Column-imageDenseModRight{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-imageDenseModRight .Column-featuredRectangleMedia{height:476px}.Column-singleLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-right:30px}.Column-singleLeadLeftPackage:last-child{margin-right:0}.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:last-child{margin-right:0}.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModLeft{margin-right:0}}@media (min-width:760px){.Column-imageDenseModLeft{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-imageDenseModLeft .Column-standardBreakerCard .Column-squareMedia .Column-card{height:451px}.Column-singleLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRightPackage{margin-right:30px}.Column-singleLeadRightPackage:last-child{margin-right:0}.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.Column-singleLeadRightPackage{margin-left:0;margin-right:30px}}.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:last-child{margin-right:0}.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:last-child{margin-right:0}.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-squareLeadLeft{margin-right:0}.Column-squareLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeft{margin-right:30px}.Column-squareLeadLeft:last-child{margin-right:0}.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-squareImageDenseLeft{margin-right:0}.Column-squareImageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseLeft{margin-right:30px}.Column-squareImageDenseLeft:last-child{margin-right:0}.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1020px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1340px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}.Column-squareLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-right:30px}.Column-squareLeadLeftPackage:last-child{margin-right:0}.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-squareLeadRight{margin-right:0}.Column-squareLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRight{margin-right:30px}.Column-squareLeadRight:last-child{margin-right:0}.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-squareImageDenseRight{margin-right:0}.Column-squareImageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseRight{margin-right:30px}.Column-squareImageDenseRight:last-child{margin-right:0}.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1020px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1340px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-squareLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRightPackage{margin-right:30px}.Column-squareLeadRightPackage:last-child{margin-right:0}.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-squareLeadRightPackage{margin-left:0;margin-right:30px}}.Column-threeUpUltraDense{border-bottom:1px dashed #8b8b8b80;margin:0}.Column-threeUpUltraDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpUltraDense{margin-right:30px}.Column-threeUpUltraDense:last-child{margin-right:0}}.Column-threeUpUltraDense:nth-child(3n+3){border-bottom:none}@media (min-width:760px){.Column-threeUpUltraDense{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-dense,.Column-threeUp{border-bottom:1px dashed #8b8b8b80;margin:initial}.Column-dense:after,.Column-threeUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dense,.Column-threeUp{margin-right:30px}.Column-dense:last-child,.Column-threeUp:last-child{margin-right:0}}.Column-dense:last-child,.Column-threeUp:last-child{border-bottom:none}@media (min-width:760px){.Column-dense,.Column-threeUp{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-fourUp{margin-right:0}.Column-fourUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-fourUp{margin-right:30px}.Column-fourUp:last-child{margin-right:0}.Column-fourUp{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:27px;max-width:unset;min-width:unset;width:calc(25% - 20.25px)}}@media (min-width:1340px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(25% - 22.5px)}}.Column-threeUpStack{display:flex;flex-wrap:wrap;margin:0}.Column-threeUpStack:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpStack{margin-right:30px}.Column-threeUpStack:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-threeUpStack{padding-bottom:10px}}@media (min-width:760px){.Column-threeUpStack{border-bottom:none}}.Column-dense{margin-right:20px}@media only screen and (max-width:759px){.Column-dense:last-child{border-bottom:1px dashed #8b8b8b80}}@media (min-width:760px){.Column-dense{max-width:calc(33.33333% - 14px)}}@media (min-width:1020px){.Column-dense{max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px);padding-bottom:30px}}@media (min-width:1340px){.Column-dense{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-twoUp{margin-right:30px}.Column-twoUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-twoUp{margin-right:30px}.Column-twoUp:last-child{margin-right:0}.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:last-child{margin-right:0}.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media only screen and (max-width:759px){.Column-imageDenseLeft .Card-card{margin-bottom:22px}.Column-imageDenseLeft .Card-card:last-child{margin-bottom:0}}.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight .Card-card .Card-title{font-weight:500}@media (max-width:759px){.Column-imageDenseRight .Card-card .Card-title{font-size:17px}}.Column-imageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight:last-child{margin-right:0}.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-dynamicContentMobile{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-dynamicContentMobile:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentMobile{margin-right:30px}.Column-dynamicContentMobile:last-child{margin-right:0}}.Column-dynamicContentMobile>div:nth-child(2n){margin-left:30px}.Column-oneImageDense{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-oneImageDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-oneImageDense{margin-right:30px}.Column-oneImageDense:last-child{margin-right:0}.Column-oneImageDense{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}.Column-oneImageDense>div:nth-child(2n){margin-left:30px}.Column-flexibleLabel{border-top:5px solid #002f6c;color:#002f6c;display:block;font-size:16px;font-weight:800;line-height:19px;padding:10px 0 0;text-transform:uppercase}.Column-flexibleLabel:hover{color:#2077b6}@media (min-width:760px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1020px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1340px){.Column-flexibleLabel{font-size:18px;padding-bottom:20px}}.Column-topBorder{border-top:1px dashed #8b8b8b80;padding-top:15px}@media (min-width:760px){.Column-topBorder{border-top:none;padding-top:0}}.Column-topMargin{margin-top:20px}@media (min-width:760px){.Column-topMargin{margin-top:0}}.Column-videoFeatured{margin-right:0}.Column-videoFeatured:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-videoFeatured{margin-right:30px}.Column-videoFeatured:last-child{margin-right:0}.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;margin-top:-20px;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}
.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}@media (min-width:760px){.PlayButton-base{font-size:14px;height:50px;width:50px}}@media (min-width:760px){.PlayButton-featured{font-size:22px;height:80px;width:80px}}@media (min-width:1340px){.PlayButton-featuredMediaPlaybutton{height:100px;width:100px}}[data-type=playlist]{box-shadow:inset 10 2px 10px #dcffa6,10 2px 15px #000}.PlayButton-icon{align-items:center;border:2px solid #fcb700;display:flex;height:30px;justify-content:center;transition:border .15s linear;width:30px;z-index:2}.PlayButton-base:hover .PlayButton-icon,a:focus .PlayButton-icon,a:hover .PlayButton-icon,button:focus .PlayButton-icon,button:hover .PlayButton-icon{border:2px solid #fff}@media (min-width:760px){.PlayButton-icon{height:40px;width:40px}.PlayButton-featured .PlayButton-icon{border:2px solid #fcb700;height:60px;width:60px}}.PlayButton-flyout{align-items:center;background-color:#fcb700;color:#071d3900;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-base:hover .PlayButton-flyout,a:focus .PlayButton-flyout,a:hover .PlayButton-flyout,button:focus .PlayButton-flyout,button:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.PlayButton-flyout{font-size:12px;letter-spacing:2.2px;text-align:center;width:130px}.PlayButton-featured .PlayButton-flyout{font-size:20px;right:80px;width:200px}}@media (max-width:1019px){.PlayButton-base:hover .PlayButton-flyout.PlayButton-suppressFlyout,a:focus .PlayButton-flyout.PlayButton-suppressFlyout,a:hover .PlayButton-flyout.PlayButton-suppressFlyout,button:focus .PlayButton-flyout.PlayButton-suppressFlyout,button:hover .PlayButton-flyout.PlayButton-suppressFlyout{transform:scaleX(0)}}@media (min-width:1340px){.PlayButton-flyout{right:35px}}@media (max-width:759px){.FeaturedVideoModule-videoPlayerContainer .PlayButton-base{font-size:18px;height:60px;width:60px}.Card-featuredRectangleMediaImagedense .PlayButton-flyout,.InlineVideo-wrapper .PlayButton-flyout{justify-content:center;right:30px}.FeaturedVideoModule-videoPlayerContainer .PlayButton-featured .PlayButton-flyout{font-size:20px;right:40px;width:200px}}.FeaturedVideoModule-videoPlayerContainer .PlayButton-flyout{justify-content:center}.PlayButton-hover{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (max-width:759px){.PlayButton-hover.PlayButton-suppressFlyout{transform:scaleX(0)}}.PlayButton-featured .PlayButton-iconHover{border:2px solid #fff;transition:border .15s linear}.PlayButton-playlistWrapper{position:relative}.PlayButton-playlist{background-color:#fff;box-shadow:-5px 5px 0 0 #fcb700;height:35px;position:absolute;right:5px;top:5px;width:40px}.PlayButton-playlist:hover,a:focus .PlayButton-playlist,a:hover .PlayButton-playlist,button:focus .PlayButton-playlist,button:hover .PlayButton-playlist{visibility:hidden}@media (min-width:760px){.PlayButton-playlist{height:45px;width:50px}}@media (min-width:760px){.PlayButton-featuredPlaylist{height:75px;width:80px}}.PlayButton-sizeVariationOne.PlayButton-container{border-top:4px solid #fcb700}.PlayButton-sizeVariationOne .PlayButton-base{height:40px;top:-4px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-base{height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-base{height:40px;width:40px}}.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:10px;height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}}.PlayButton-base:hover .PlayButton-sizeVariationOne .PlayButton-icon,a:focus .PlayButton-sizeVariationOne .PlayButton-icon,a:hover .PlayButton-sizeVariationOne .PlayButton-icon,button:focus .PlayButton-sizeVariationOne .PlayButton-icon,button:hover .PlayButton-sizeVariationOne .PlayButton-icon{border:2px solid #fcb700}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:10px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:35px}}.PlayButton-sizeVariationFive.PlayButton-container{border-top:6px solid #fcb700}.PlayButton-sizeVariationFive .PlayButton-base{font-size:11px;height:38px;width:38px}.PlayButton-sizeVariationFive .PlayButton-icon{font-size:14px;height:26px;width:26px}.PlayButton-base:hover .PlayButton-sizeVariationFive .PlayButton-icon,a:focus .PlayButton-sizeVariationFive .PlayButton-icon,a:hover .PlayButton-sizeVariationFive .PlayButton-icon,button:focus .PlayButton-sizeVariationFive .PlayButton-icon,button:hover .PlayButton-sizeVariationFive .PlayButton-icon{border:1px solid #fff}.PlayButton-sizeVariationFive .PlayButton-flyout{font-size:10px;font-weight:900;height:38px;letter-spacing:1px;line-height:12px;width:84px}.PlayButton-smallVersion .PlayButton-base{height:29px;top:-4px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-base{height:38px;width:38px}}.PlayButton-smallVersion .PlayButton-flyout{font-size:8px;right:29px;width:71px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-flyout{font-size:12px;right:35px;width:85px}}@media (min-width:1020px){.PlayButton-smallVersion .PlayButton-flyout{width:77px}}@media (min-width:1340px){.PlayButton-smallVersion .PlayButton-flyout{width:85px}}.PlayButton-smallVersion .PlayButton-icon{font-size:12px;height:29px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-icon{font-size:13px;height:38px;width:38px}}.PlayButton-base:hover .PlayButton-smallVersion .PlayButton-icon,a:focus .PlayButton-smallVersion .PlayButton-icon,a:hover .PlayButton-smallVersion .PlayButton-icon,button:focus .PlayButton-smallVersion .PlayButton-icon,button:hover .PlayButton-smallVersion .PlayButton-icon{border:2px solid #fcb700}
</style>
<title itemprop="name">
International Business, World News & Global Stock Market Analysis
</title>
<meta content="initial-scale=1.0, width=device-width" name="viewport"/>
<meta content="IE=Edge" http-equiv="X-UA-Compatible"/>
<meta content="franchise" property="AssetType"/>
<meta content="100727362" property="pageNodeId"/>
<meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." itemprop="description" name="description"/>
<link href="https://www.cnbc.com/world/" rel="canonical"/>
<meta content="website" property="og:type"/>
<meta content="International: Top News And Analysis" property="og:title"/>
<meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." property="og:description"/>
<meta content="https://www.cnbc.com/world/" property="og:url"/>
<meta content="CNBC" property="og:site_name"/>
<meta content="2016-09-27T13:00:09+0000" itemprop="dateCreated"/>
<meta content="2024-06-16T13:41:55+0000" itemprop="dateModified"/>
<meta content="2024-06-16T13:41:55+0000" itemprop="lastReviewed"/>
<meta content="en-US" itemprop="inLanguage"/>
<meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&w=1920&h=1080" itemprop="image" property="og:image"/>
<meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&w=1920&h=1080" name="twitter:image:src"/>
<meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&w=1920&h=1080" name="twitter:image"/>
<meta content="summary_large_image" name="twitter:card"/>
<meta content="@CNBC" name="twitter:site"/>
<meta content="https://www.cnbc.com/world/" name="twitter:url"/>
<meta content="International: Top News And Analysis" name="twitter:title"/>
<meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." name="twitter:description"/>
<meta content="@CNBC" name="twitter:creator"/>
<meta content="https://www.facebook.com/cnbc" property="article:publisher"/>
<meta content="2016-09-27T13:00:09+0000" property="article:published_time"/>
<meta content="2024-06-16T13:41:55+0000" property="article:modified_time"/>
<meta content="NR" itemprop="contentRating"/>
<meta content="CNBC Meets,Charting Asia,business news" name="news_keywords"/>
<meta content="CNBC Meets,Charting Asia,business news" itemprop="keywords" name="keywords"/>
<meta content="CNBC Meets,Charting Asia" itemprop="specialty"/>
<meta content="universal" name="tp:PreferredRuntimes"/>
<meta content="M3U,MPEG4" name="tp:PreferredFormats"/>
<meta content="false" name="tp:initialize"/>
<meta content="app-id=398018310" name="apple-itunes-app"/>
<meta content="CNBC Business News and Finance" property="al:ios:app_name"/>
<meta content="398018310" property="al:ios:app_store_id"/>
<meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804" itemprop="primaryImageOfPage"/>
<meta content='{"nodeid":100727362,"originalImage":"https://sc.cnbcfm.com/applications/cnbc.com/resources/img/editorial/2015/03/30/102546467-Most-Popular--Image-Placeholder-Large.jpg"}' name="parsely-metadata"/>
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"CollectionPage","mainEntityOfPage":"https://www.cnbc.com/world/","url":"https://www.cnbc.com/world/","inLanguage":"en-US","copyrightYear":2024,"copyrightHolder":{"@id":"https://www.cnbc.com","@type":"NewsMediaOrganization"},"sourceOrganization":{"@id":"https://www.cnbc.com","@type":"NewsMediaOrganization"},"headline":"International: Top News And Analysis","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","dateCreated":"2016-09-27T13:00:09+0000","datePublished":"2016-09-27T13:00:09+0000","dateModified":"2024-06-16T13:41:55+0000","image":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804","width":"720","height":"405"},"thumbnailUrl":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&w=720&h=405","publisher":{"@type":"NewsMediaOrganization","name":"CNBC","url":"https://www.cnbc.com/","logo":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc-hdr-logo2.png","width":360,"height":60},"sameAs":["https://www.facebook.com/cnbc","https://www.instagram.com/cnbc","https://www.linkedin.com/company/cnbc","https://twitter.com/cnbc","https://en.wikipedia.org/wiki/CNBC","https://www.youtube.com/cnbc"]},"keywords":["cnbc","CNBC Meets","Charting Asia","International: Top News And Analysis"]}
</script>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/main-09b41d63009d1df9de02.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/54711-074183786c75107fe881.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/39232-441ed94f5c408157935b.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/22143-4818d858ea3753e6d62d.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/98051-4cf79fb82e574840589d.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/CNBCGlobalNav-0327cba46e3c76791d57.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsBanner-8ed25baeb6bd97bfe29c.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-TopBanner-49cafaed04d8f2398a82.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuickLinks-2105370d4aff6d8063f7.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-LegacyPlayerContainer-8e123518274866fdf5ef.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-FeaturedNewsHero-7a16c1bd13899f7b51fb.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-EventSignUpHP-80d51d1998ae50700902.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuoteFinder-91f558be1c0d6d72632a.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketMoversPlus-d67df7da8a9c21a664f8.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-RiverPlus-4a85afc7a4d15085eba2.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-BoxRail-52538b38237c85bdf9b8.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/14984-9e2722daee66a458e141.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsModule-7bb8108fdf6a537fa441.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/15641-0b2544545cd713227ada.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/49181-d643991cc2ce39c692a4.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-MidResponsive-bc87b053dac023714862.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/12532-2f3f00a9d7512f1ebaea.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/33082-851f19e555aa4c73f6e0.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/79815-e0a482865780a80174e3.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Column-89937bf3c6ef23714ff2.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-VideoBreakerFeatured-405ec7989789a41a2745.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Breakers-FeaturedBreaker-4cec6d8733513e8d5480.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TrendingNowBreaker-9b38e6c3595fb43e51e3.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TwoColumnImageDense-2f2518773b98d3b24ae6.js" rel="preload"/>
<link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Footer-CNBCFooter-87ebd0091b97e0929d32.js" rel="preload"/>
<script async="" src="https://assets.adobedtm.com/a2ef59fba8e9/d6969c3828c3/launch-1ee49e3e9eb5.min.js">
</script>
</head>
<body>
<div itemprop="publisher" itemscope="" itemtype="https://schema.org/NewsMediaOrganization">
<meta content="CNBC" itemprop="name"/>
<meta content="https://www.cnbc.com" itemprop="url"/>
<meta content="'1989-04-17'" itemprop="foundingDate"/>
</div>
<div id="root">
<div class="App-containerClick">
<div class="cnbcBrand" id="BrandPageWrapper">
<div class="JumpLink-container">
<a class="JumpLink-link" href="#MainContent">
Skip Navigation
</a>
</div>
<header class="CNBCGlobalNav-container" data-analytics="HomePageInternational-GlobalNavigation" data-test="GlobalNavigation" id="GlobalNavigation">
<div class="CountdownClock-countdownContainer">
<div class="CountdownClock-container" data-module="mps-slot" id="GlobalNavigation-CountdownClock">
</div>
</div>
<div class="CNBCGlobalNav-globalNavigation">
<div class="CNBCGlobalNav-gridContainer">
<div class="CNBCGlobalNav-wrapper">
<div class="branding-menu-brandingMenu">
<a class="branding-menu-logo" href="//www.cnbc.com/world/">
<img alt="logo" class="branding-menu-logo" src="https://static-redesign.cnbcfm.com/dist/7821ea3cb72f88388591.svg"/>
</a>
</div>
<div class="CNBCGlobalNav-desktopNavMenu">
<div class="nav-menu-navMenu" id="nav-menu">
<button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button">
<span class="icon-menu">
</span>
</button>
<a class="nav-menu-logoContainer" href="/">
<img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/2469ed0a9a4cafdf055e.svg"/>
</a>
<div class="nav-menu-mainLinks">
<div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper">
<div class="nav-menu-navLinks">
<div class="nav-menu-primaryLink markets">
<a class="nav-menu-button" href="/markets/">
<span class="icon-markets">
</span>
<span class="nav-menu-buttonText">
Markets
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Pre-Markets">
<a class="nav-menu-subLink" href="/pre-markets/" tabindex="-1">
Pre-Markets
</a>
</li>
<li data-text="U.S. Markets">
<a class="nav-menu-subLink" href="/us-markets/" tabindex="-1">
U.S. Markets
</a>
</li>
<li data-text="Europe Markets">
<a class="nav-menu-subLink" href="/markets-europe/" tabindex="-1">
Europe Markets
</a>
</li>
<li data-text="China Markets">
<a class="nav-menu-subLink" href="/china-markets/" tabindex="-1">
China Markets
</a>
</li>
<li data-text="Asia Markets">
<a class="nav-menu-subLink" href="/markets-asia-pacific/" tabindex="-1">
Asia Markets
</a>
</li>
<li data-text="World Markets">
<a class="nav-menu-subLink" href="/world-markets/" tabindex="-1">
World Markets
</a>
</li>
<li data-text="Currencies">
<a class="nav-menu-subLink" href="/currencies/" tabindex="-1">
Currencies
</a>
</li>
<li data-text="Cryptocurrency">
<a class="nav-menu-subLink" href="/cryptocurrency/" tabindex="-1">
Cryptocurrency
</a>
</li>
<li data-text="Futures & Commodities">
<a class="nav-menu-subLink" href="/futures-and-commodities/" tabindex="-1">
Futures & Commodities
</a>
</li>
<li data-text="Bonds">
<a class="nav-menu-subLink" href="/bonds/" tabindex="-1">
Bonds
</a>
</li>
<li data-text="Funds & ETFs">
<a class="nav-menu-subLink" href="/funds-and-etfs/" tabindex="-1">
Funds & ETFs
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink business_news">
<a class="nav-menu-button" href="/business/">
<span class="icon-news">
</span>
<span class="nav-menu-buttonText">
Business
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Economy">
<a class="nav-menu-subLink" href="/economy/" tabindex="-1">
Economy
</a>
</li>
<li data-text="Finance">
<a class="nav-menu-subLink" href="/finance/" tabindex="-1">
Finance
</a>
</li>
<li data-text="Health & Science">
<a class="nav-menu-subLink" href="/health-and-science/" tabindex="-1">
Health & Science
</a>
</li>
<li data-text="Media">
<a class="nav-menu-subLink" href="/media/" tabindex="-1">
Media
</a>
</li>
<li data-text="Real Estate">
<a class="nav-menu-subLink" href="/real-estate/" tabindex="-1">
Real Estate
</a>
</li>
<li data-text="Energy">
<a class="nav-menu-subLink" href="/energy/" tabindex="-1">
Energy
</a>
</li>
<li data-text="Climate">
<a class="nav-menu-subLink" href="/climate/" tabindex="-1">
Climate
</a>
</li>
<li data-text="Transportation">
<a class="nav-menu-subLink" href="/transportation/" tabindex="-1">
Transportation
</a>
</li>
<li data-text="Industrials">
<a class="nav-menu-subLink" href="/industrials/" tabindex="-1">
Industrials
</a>
</li>
<li data-text="Retail">
<a class="nav-menu-subLink" href="/retail/" tabindex="-1">
Retail
</a>
</li>
<li data-text="Wealth">
<a class="nav-menu-subLink" href="/wealth/" tabindex="-1">
Wealth
</a>
</li>
<li data-text="Sports">
<a class="nav-menu-subLink" href="/sports/" tabindex="-1">
Sports
</a>
</li>
<li data-text="Life">
<a class="nav-menu-subLink" href="/life/" tabindex="-1">
Life
</a>
</li>
<li data-text="Small Business">
<a class="nav-menu-subLink" href="/small-business/" tabindex="-1">
Small Business
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink investing">
<a class="nav-menu-button" href="/investing/">
<span class="icon-investing">
</span>
<span class="nav-menu-buttonText">
Investing
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Personal Finance">
<a class="nav-menu-subLink" href="/personal-finance/" tabindex="-1">
Personal Finance
</a>
</li>
<li data-text="Fintech">
<a class="nav-menu-subLink" href="/fintech/" tabindex="-1">
Fintech
</a>
</li>
<li data-text="Financial Advisors">
<a class="nav-menu-subLink" href="/financial-advisors/" tabindex="-1">
Financial Advisors
</a>
</li>
<li data-text="Options Action">
<a class="nav-menu-subLink" href="/options-action/" tabindex="-1">
Options Action
</a>
</li>
<li data-text="ETF Street">
<a class="nav-menu-subLink" href="/etf-street/" tabindex="-1">
ETF Street
</a>
</li>
<li data-text="Buffett Archive">
<a class="nav-menu-subLink" href="https://buffett.cnbc.com" tabindex="-1" target="_blank">
Buffett Archive
</a>
</li>
<li data-text="Earnings">
<a class="nav-menu-subLink" href="/earnings/" tabindex="-1">
Earnings
</a>
</li>
<li data-text="Trader Talk">
<a class="nav-menu-subLink" href="/trader-talk/" tabindex="-1">
Trader Talk
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink tech">
<a class="nav-menu-button" href="/technology/">
<span class="icon-tech">
</span>
<span class="nav-menu-buttonText">
Tech
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Cybersecurity">
<a class="nav-menu-subLink" href="/cybersecurity/" tabindex="-1">
Cybersecurity
</a>
</li>
<li data-text="Enterprise">
<a class="nav-menu-subLink" href="/enterprise/" tabindex="-1">
Enterprise
</a>
</li>
<li data-text="Internet">
<a class="nav-menu-subLink" href="/internet/" tabindex="-1">
Internet
</a>
</li>
<li data-text="Media">
<a class="nav-menu-subLink" href="/media/" tabindex="-1">
Media
</a>
</li>
<li data-text="Mobile">
<a class="nav-menu-subLink" href="/mobile/" tabindex="-1">
Mobile
</a>
</li>
<li data-text="Social Media">
<a class="nav-menu-subLink" href="/social-media/" tabindex="-1">
Social Media
</a>
</li>
<li data-text="CNBC Disruptor 50">
<a class="nav-menu-subLink" href="/cnbc-disruptors/" tabindex="-1">
CNBC Disruptor 50
</a>
</li>
<li data-text="Tech Guide">
<a class="nav-menu-subLink" href="/tech-guide/" tabindex="-1">
Tech Guide
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink politics">
<a class="nav-menu-button" href="/politics/">
<span class="icon-politics">
</span>
<span class="nav-menu-buttonText">
Politics
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="White House">
<a class="nav-menu-subLink" href="/white-house/" tabindex="-1">
White House
</a>
</li>
<li data-text="Policy">
<a class="nav-menu-subLink" href="/policy/" tabindex="-1">
Policy
</a>
</li>
<li data-text="Defense">
<a class="nav-menu-subLink" href="/defense/" tabindex="-1">
Defense
</a>
</li>
<li data-text="Congress">
<a class="nav-menu-subLink" href="/congress/" tabindex="-1">
Congress
</a>
</li>
<li data-text="Equity and Opportunity">
<a class="nav-menu-subLink" href="/equity-opportunity/" tabindex="-1">
Equity and Opportunity
</a>
</li>
<li data-text="Europe Politics">
<a class="nav-menu-subLink" href="/europe-politics/" tabindex="-1">
Europe Politics
</a>
</li>
<li data-text="China Politics">
<a class="nav-menu-subLink" href="/china-politics/" tabindex="-1">
China Politics
</a>
</li>
<li data-text="Asia Politics">
<a class="nav-menu-subLink" href="/asia-politics/" tabindex="-1">
Asia Politics
</a>
</li>
<li data-text="World Politics">
<a class="nav-menu-subLink" href="/world-politics/" tabindex="-1">
World Politics
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink cnbc_tv">
<a class="nav-menu-button" href="/tv/">
<span class="icon-cnbctv">
</span>
<span class="nav-menu-buttonText">
CNBC TV
</span>
</a>
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Live Audio">
<a class="nav-menu-subLink" href="/live-audio/" tabindex="-1">
Live Audio
</a>
</li>
<li data-text="Latest Video">
<a class="nav-menu-subLink" href="/latest-video/" tabindex="-1">
Latest Video
</a>
</li>
<li data-text="Top Video">
<a class="nav-menu-subLink" href="/top-video/" tabindex="-1">
Top Video
</a>
</li>
<li data-text="CEO Interviews">
<a class="nav-menu-subLink" href="/video-ceo-interviews/" tabindex="-1">
CEO Interviews
</a>
</li>
<li data-text="Europe TV">
<a class="nav-menu-subLink" href="/europe-television/" tabindex="-1">
Europe TV
</a>
</li>
<li data-text="Asia TV">
<a class="nav-menu-subLink" href="/asia-business-day/" tabindex="-1">
Asia TV
</a>
</li>
<li data-text="CNBC Podcasts">
<a class="nav-menu-subLink" href="/podcast/" tabindex="-1">
CNBC Podcasts
</a>
</li>
<li data-text="Digital Originals">
<a class="nav-menu-subLink" href="/digital-original/" tabindex="-1">
Digital Originals
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink watchlist">
<a class="nav-menu-button" href="/watchlist/">
<span class="icon-watchlist">
</span>
<span class="nav-menu-buttonText">
Watchlist
</span>
</a>
</div>
<div class="nav-menu-primaryLink investing_club">
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Trust Portfolio">
<a class="nav-menu-subLink" href="/investingclub/charitable-trust/" tabindex="-1">
Trust Portfolio
</a>
</li>
<li data-text="Analysis">
<a class="nav-menu-subLink" href="/investingclub/analysis/" tabindex="-1">
Analysis
</a>
</li>
<li data-text="Trade Alerts">
<a class="nav-menu-subLink" href="/investingclub/trade-alerts/" tabindex="-1">
Trade Alerts
</a>
</li>
<li data-text="Meeting Videos">
<a class="nav-menu-subLink" href="/investingclub/video/" tabindex="-1">
Meeting Videos
</a>
</li>
<li data-text="Homestretch">
<a class="nav-menu-subLink" href="/investingclub/homestretch/" tabindex="-1">
Homestretch
</a>
</li>
<li data-text="Jim's Columns">
<a class="nav-menu-subLink" href="/investingclub/jim-cramer-columns/" tabindex="-1">
Jim's Columns
</a>
</li>
<li data-text="Education">
<a class="nav-menu-subLink" href="/investingclub/education/" tabindex="-1">
Education
</a>
</li>
<li data-text="Subscribe">
<a class="nav-menu-subLink" href="#" tabindex="-1">
Subscribe
</a>
</li>
<li data-text="Sign In">
<a class="nav-menu-subLink" href="#" tabindex="-1">
Sign In
</a>
</li>
</ul>
</div>
<div class="nav-menu-primaryLink pro">
<ul class="nav-menu-subLinks" style="display:none">
<li data-text="Pro News">
<a class="nav-menu-subLink" href="/pro/news/" tabindex="-1">
Pro News
</a>
</li>
<li data-text="Pro Live">
<a class="nav-menu-subLink" href="/pro/" tabindex="-1">
Pro Live
</a>
</li>
<li data-text="Full Episodes">
<a class="nav-menu-subLink" href="/pro/full-business-day-episodes/" tabindex="-1">
Full Episodes
</a>
</li>
<li data-text="Stock Screener">
<a class="nav-menu-subLink" href="/pro-stock-screener/" tabindex="-1">
Stock Screener
</a>
</li>
<li data-text="Market Forecast">
<a class="nav-menu-subLink" href="/2023/05/11/market-strategist-survey-forecast.html" tabindex="-1">
Market Forecast
</a>
</li>
<li data-text="Options Investing">
<a class="nav-menu-subLink" href="/pro/options-investing/" tabindex="-1">
Options Investing
</a>
</li>
<li data-text="Chart Investing">
<a class="nav-menu-subLink" href="/cnbc-pro-chart-investing/" tabindex="-1">
Chart Investing
</a>
</li>
<li data-text="Subscribe">
<a class="nav-menu-subLink" href="#" tabindex="-1">
Subscribe
</a>
</li>
<li data-text="Sign In">
<a class="nav-menu-subLink" href="#" tabindex="-1">
Sign In
</a>
</li>
</ul>
</div>
<div aria-hidden="true" class="nav-menu-navUnderline">
</div>
<div aria-hidden="true" class="nav-menu-navDropdownWrap">
</div>
<div class="nav-menu-primaryLink hamburger">
<button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button">
<span class="icon-menu">
</span>
<span class="nav-menu-buttonText">
Menu
</span>
</button>
</div>
</div>
</div>
</div>
<div class="nav-menu-progressBarContainer">
</div>
</div>
<div class="account-menu-accountMenu">
<ul>
<li class="featured-menu-button">
<a href="/make-it/" title="makeit">
Make It
<span class="icon-offsite-arrow">
</span>
</a>
</li>
<li>
<button class="EditionMenu-featuredMenuButton">
select
<span class="icon-offsite-arrow">
</span>
</button>
<ul class="EditionMenu-featuredSubLinks">
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="https://www.cnbc.com/select/" tabindex="-1">
ALL SELECT
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-cards/" tabindex="-1">
<p>
Credit Cards
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/loans/" tabindex="-1">
<p>
Loans
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/banking/" tabindex="-1">
<p>
Banking
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/mortgages/" tabindex="-1">
<p>
Mortgages
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/insurance/" tabindex="-1">
<p>
Insurance
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-monitoring/" tabindex="-1">
<p>
Credit Monitoring
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/personal-finance/" tabindex="-1">
<p>
Personal Finance
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/small-business/" tabindex="-1">
<p>
Small Business
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/taxes/" tabindex="-1">
<p>
Taxes
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/low-credit-scores/" tabindex="-1">
<p>
Help for Low Credit Scores
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
<li class="EditionMenu-featuredListItem">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/investing/" tabindex="-1">
<p>
Investing
</p>
<div class="EditionMenu-chevronRight">
</div>
</a>
</li>
</ul>
<ul class="EditionMenu-featuredSubLinks EditionMenu-subMenu">
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-cards/" tabindex="-1">
<p>
All
<!-- -->
Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Find the Credit Card for You" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/credit-card-marketplace/" tabindex="-1">
<p>
Find the Credit Card for You
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-cards/" tabindex="-1">
<p>
Best Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Rewards Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-rewards-credit-cards/" tabindex="-1">
<p>
Best Rewards Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Travel Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-travel-credit-cards/" tabindex="-1">
<p>
Best Travel Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best 0% APR Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-zero-interest-credit-cards/" tabindex="-1">
<p>
Best 0% APR Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Balance Transfer Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-balance-transfer-credit-cards/" tabindex="-1">
<p>
Best Balance Transfer Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Cash Back Credit Cards" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-cash-back-credit-cards/" tabindex="-1">
<p>
Best Cash Back Credit Cards
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Card Welcome Bonuses" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-card-sign-up-bonuses/" tabindex="-1">
<p>
Best Credit Card Welcome Bonuses
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards to Build Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/the-best-credit-cards-for-building-credit/" tabindex="-1">
<p>
Best Credit Cards to Build Credit
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/loans/" tabindex="-1">
<p>
All
<!-- -->
Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Find the Best Personal Loan for You" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-marketplace/" tabindex="-1">
<p>
Find the Best Personal Loan for You
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-personal-loans/" tabindex="-1">
<p>
Best Personal Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Debt Consolidation Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-consolidation-loans/" tabindex="-1">
<p>
Best Debt Consolidation Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Loans to Refinance Credit Card Debt" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-loans-for-refinancing-credit-card-debt/" tabindex="-1">
<p>
Best Loans to Refinance Credit Card Debt
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Loans with Fast Funding" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day/" tabindex="-1">
<p>
Best Loans with Fast Funding
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Small Personal Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-personal-loans/" tabindex="-1">
<p>
Best Small Personal Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Large Personal Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-borrow-50000/" tabindex="-1">
<p>
Best Large Personal Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans to Apply Online" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-online-applications/" tabindex="-1">
<p>
Best Personal Loans to Apply Online
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Student Loan Refinance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-student-loan-refinance-companies/" tabindex="-1">
<p>
Best Student Loan Refinance
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/banking/" tabindex="-1">
<p>
All
<!-- -->
Banking
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Find the Savings Account for You" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/savings-marketplace/" tabindex="-1">
<p>
Find the Savings Account for You
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best High Yield Savings Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-high-yield-savings-accounts/" tabindex="-1">
<p>
Best High Yield Savings Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Big Bank Savings Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brick-and-mortar-savings-accounts/" tabindex="-1">
<p>
Best Big Bank Savings Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Big Bank Checking Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brick-mortar-checking-accounts/" tabindex="-1">
<p>
Best Big Bank Checking Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best No Fee Checking Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-no-fee-checking-accounts/" tabindex="-1">
<p>
Best No Fee Checking Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="No Overdraft Fee Checking Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/checking-accounts-with-no-overdraft-fees/" tabindex="-1">
<p>
No Overdraft Fee Checking Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Checking Account Bonuses" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-checking-account-bonuses/" tabindex="-1">
<p>
Best Checking Account Bonuses
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Money Market Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-money-market-accounts/" tabindex="-1">
<p>
Best Money Market Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best CDs" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-certificates-of-deposits/" tabindex="-1">
<p>
Best CDs
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Unions" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-unions/" tabindex="-1">
<p>
Best Credit Unions
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/mortgages/" tabindex="-1">
<p>
All
<!-- -->
Mortgages
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders/" tabindex="-1">
<p>
Best Mortgages
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Small Down Payment" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/mortgage-lenders-for-a-small-down-payment/" tabindex="-1">
<p>
Best Mortgages for Small Down Payment
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for No Down Payment" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-va-loans-usda-loans/" tabindex="-1">
<p>
Best Mortgages for No Down Payment
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages with No Origination Fee" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-that-dont-charge-origination-fees/" tabindex="-1">
<p>
Best Mortgages with No Origination Fee
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Average Credit Score" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-average-credit-score/" tabindex="-1">
<p>
Best Mortgages for Average Credit Score
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Adjustable Rate Mortgages" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/adjustable-rate-mortgage-pros-and-cons/" tabindex="-1">
<p>
Adjustable Rate Mortgages
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Affording a Mortgage" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/mortgage-affordability/" tabindex="-1">
<p>
Affording a Mortgage
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/insurance/" tabindex="-1">
<p>
All
<!-- -->
Insurance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Life Insurance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-life-insurance-companies/" tabindex="-1">
<p>
Best Life Insurance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Homeowners Insurance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-homeowners-insurance-companies/" tabindex="-1">
<p>
Best Homeowners Insurance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Renters Insurance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-renters-insurance-companies/" tabindex="-1">
<p>
Best Renters Insurance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Car Insurance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-car-insurance-companies/" tabindex="-1">
<p>
Best Car Insurance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Travel Insurance" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/travel-insurance-guide/" tabindex="-1">
<p>
Travel Insurance
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-monitoring/" tabindex="-1">
<p>
All
<!-- -->
Credit Monitoring
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Monitoring Services" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-monitoring-services/" tabindex="-1">
<p>
Best Credit Monitoring Services
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Identity Theft Protection" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-identity-theft-protection-services/" tabindex="-1">
<p>
Best Identity Theft Protection
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="How to Boost Your Credit Score" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-experian-boost-works/" tabindex="-1">
<p>
How to Boost Your Credit Score
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Credit Repair Services" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-do-credit-repair-services-work/" tabindex="-1">
<p>
Credit Repair Services
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/personal-finance/" tabindex="-1">
<p>
All
<!-- -->
Personal Finance
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Budgeting Apps" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-budgeting-apps/" tabindex="-1">
<p>
Best Budgeting Apps
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Expense Tracker Apps" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-expense-tracker-apps/" tabindex="-1">
<p>
Best Expense Tracker Apps
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Money Transfer Apps" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-money-transfer-payment-apps/" tabindex="-1">
<p>
Best Money Transfer Apps
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Resale Apps and Sites" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-resale-apps-and-websites/" tabindex="-1">
<p>
Best Resale Apps and Sites
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Buy Now Pay Later (BNPL) Apps" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-buy-now-pay-later-apps/" tabindex="-1">
<p>
Buy Now Pay Later (BNPL) Apps
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Debt Relief" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-relief-companies/" tabindex="-1">
<p>
Best Debt Relief
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/small-business/" tabindex="-1">
<p>
All
<!-- -->
Small Business
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Small Business Savings Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-savings-accounts/" tabindex="-1">
<p>
Best Small Business Savings Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Small Business Checking Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-business-checking-accounts/" tabindex="-1">
<p>
Best Small Business Checking Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Small Business" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-credit-cards/" tabindex="-1">
<p>
Best Credit Cards for Small Business
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Small Business Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-loans/" tabindex="-1">
<p>
Best Small Business Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Tax Software for Small Business" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software-for-small-businesses/" tabindex="-1">
<p>
Best Tax Software for Small Business
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/taxes/" tabindex="-1">
<p>
All
<!-- -->
Taxes
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Filing For Free" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-file-your-taxes-for-free/" tabindex="-1">
<p>
Filing For Free
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Tax Software" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software/" tabindex="-1">
<p>
Best Tax Software
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Tax Software for Small Businesses" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software-for-small-businesses/" tabindex="-1">
<p>
Best Tax Software for Small Businesses
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Tax Refunds" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-check-the-status-of-your-2020-tax-refund/" tabindex="-1">
<p>
Tax Refunds
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Tax Brackets" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/federal-income-tax-brackets-tax-rates/" tabindex="-1">
<p>
Tax Brackets
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Tax Tips" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-reduce-taxable-income/" tabindex="-1">
<p>
Tax Tips
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Tax By State" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/states-with-no-income-tax/" tabindex="-1">
<p>
Tax By State
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Tax Payment Plans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/tax-payment-plan-options/" tabindex="-1">
<p>
Tax Payment Plans
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/low-credit-scores/" tabindex="-1">
<p>
All
<!-- -->
Help for Low Credit Scores
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Bad Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-cards-for-bad-credit/" tabindex="-1">
<p>
Best Credit Cards for Bad Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans for Bad Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-personal-loans-for-bad-credit/" tabindex="-1">
<p>
Best Personal Loans for Bad Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Debt Consolidation Loans for Bad Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-consolidation-loans-for-bad-credit/" tabindex="-1">
<p>
Best Debt Consolidation Loans for Bad Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Personal Loans if You Don't Have Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-to-consider-if-you-dont-have-credit-score/" tabindex="-1">
<p>
Personal Loans if You Don't Have Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Building Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/the-best-credit-cards-for-building-credit/" tabindex="-1">
<p>
Best Credit Cards for Building Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Personal Loans for 580 Credit Score or Lower" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loans-to-apply-credit-score-580-or-lower/" tabindex="-1">
<p>
Personal Loans for 580 Credit Score or Lower
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Personal Loans for 670 Credit Score or Lower" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-credit-score-below-670/" tabindex="-1">
<p>
Personal Loans for 670 Credit Score or Lower
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Bad Credit" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-bad-credit-score/" tabindex="-1">
<p>
Best Mortgages for Bad Credit
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Hardship Loans" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-hardship-loans/" tabindex="-1">
<p>
Best Hardship Loans
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="How to Boost Your Credit Score" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-experian-boost-works/" tabindex="-1">
<p>
How to Boost Your Credit Score
</p>
</a>
</li>
<li class="EditionMenu-backBtn" style="display:none">
<a href="#">
<p>
SELECT
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" style="display:none">
<a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/investing/" tabindex="-1">
<p>
All
<!-- -->
Investing
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best IRA Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-ira-accounts/" tabindex="-1">
<p>
Best IRA Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Roth IRA Accounts" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-roth-ira-accounts/" tabindex="-1">
<p>
Best Roth IRA Accounts
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Investing Apps" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-investing-apps/" tabindex="-1">
<p>
Best Investing Apps
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Free Stock Trading Platforms" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brokerage-free-stock-trading/" tabindex="-1">
<p>
Best Free Stock Trading Platforms
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Best Robo-Advisors" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-robo-advisors/" tabindex="-1">
<p>
Best Robo-Advisors
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Index Funds" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-index-funds/" tabindex="-1">
<p>
Index Funds
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Mutual Funds" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-mutual-funds/" tabindex="-1">
<p>
Mutual Funds
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="ETFs" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-etfs-should-you-invest/" tabindex="-1">
<p>
ETFs
</p>
</a>
</li>
<li class="EditionMenu-featuredListItem" data-testid="Bonds" style="display:none">
<a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-bonds/" tabindex="-1">
<p>
Bonds
</p>
</a>
</li>
</ul>
</li>
</ul>
<ul class="account-menu-editionMenu">
<li class="AccountMenu-li">
<a href="/?region=usa">
USA
</a>
</li>
<li class="AccountMenu-li">
<a class="account-menu-underlineLabel" href="/world/">
INTL
</a>
</li>
</ul>
</div>
</div>
<div class="CNBCGlobalNav-rightNavigationWrapper">
<span class="CNBCGlobalNav-searchWrapper">
<button aria-label="Search" class="SearchToggle-button searchToggler analyticsSearchButton">
<span>
Search quotes, news & videos
</span>
<i aria-hidden="true" class="icon-search" data-analytics="cnbc-search-icon" data-analytics-id="cnbc-search-icon">
</i>
</button>
</span>
<span class="CNBCGlobalNav-watchlistWrapper">
<div class="CNBCGlobalNav-watchListContainer">
<a href="/watchlist/">
Watchlist
</a>
</div>
</span>
<span class="CNBCGlobalNav-notificationBellWrapper">
<div class="NotificationBell-notificationBellContainer" data-testid="notification_bell">
<button title="Show Notifications">
<svg fill="none" height="22" viewbox="0 0 19 18" width="22" xmlns="http://www.w3.org/2000/svg">
<path d="M7.1449 1.18702L5.26053 2.23926C4.14893 2.85999 3.43597 4.0293 3.37858 5.32207L3.19586 9.4372C3.16369 10.1617 2.91287 10.8579 2.47829 11.4299L0.987781 13.3917L0.868726 13.5485L0.912578 13.5493C0.904357 13.5827 0.9 13.6176 0.9 13.6534C0.9 13.8873 1.08584 14.081 1.32 14.081H6.39744C6.43203 14.2083 6.48203 14.3329 6.54686 14.453C6.68288 14.7052 6.8812 14.9324 7.12891 15.1226C7.37659 15.3127 7.66935 15.4626 7.99002 15.5646C8.31072 15.6666 8.65386 15.719 9 15.719C9.34614 15.719 9.68928 15.6666 10.01 15.5646C10.3307 15.4626 10.6234 15.3127 10.8711 15.1226C11.1188 14.9324 11.3171 14.7052 11.4531 14.453C11.518 14.3329 11.568 14.2083 11.6026 14.081H16.68C16.9142 14.081 17.1 13.8873 17.1 13.6534C17.1 13.5906 17.0866 13.5307 17.0625 13.4766L17.0714 13.4696L17.0122 13.3917L15.5217 11.4299C15.0871 10.8579 14.8363 10.1617 14.8041 9.4372L14.6214 5.32207C14.564 4.0293 13.8511 2.85999 12.7395 2.23926L10.8551 1.18702L10.6555 0.98264C10.6169 0.943132 10.5773 0.905292 10.5367 0.86912C10.4505 0.773586 10.3327 0.68605 10.1805 0.607025C9.28391 0.0706269 8.11311 0.195832 7.34455 0.98264L7.1449 1.18702Z" fill="white" stroke="white" stroke-width="0.2">
</path>
</svg>
</button>
</div>
</span>
<span class="CNBCGlobalNav-signInMenuWrapper">
<div class="SignInMenu-signInContainer">
<div>
<div class="SignInMenu-signInLinkWrapper">
<div class="SignInMenu-signInMenu">
<a href="#">
SIGN IN
</a>
</div>
</div>
</div>
</div>
</span>
<span class="CNBCGlobalNav-signUpMenuWrapper">
<div class="SignUpMenu-signUpContainer">
<div>
</div>
</div>
</span>
</div>
</div>
</div>
</div>
</header>
<div class="CNBCGlobalNav-mobileNavMenu">
<div class="nav-menu-navMenu" id="nav-menu">
<button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button">
<span class="icon-menu">
</span>
</button>
<a class="nav-menu-logoContainer" href="/">
<img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/2469ed0a9a4cafdf055e.svg"/>
</a>
<div class="nav-menu-mainLinks">
<div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper">
<div class="nav-menu-navLinks">
<div class="nav-menu-primaryLink markets">
<a class="nav-menu-button" href="/markets/">
<span class="icon-markets">
</span>
<span class="nav-menu-buttonText">
Markets
</span>
</a>
</div>
<div class="nav-menu-primaryLink business_news">
<a class="nav-menu-button" href="/business/">
<span class="icon-news">
</span>
<span class="nav-menu-buttonText">
Business
</span>
</a>
</div>
<div class="nav-menu-primaryLink investing">
<a class="nav-menu-button" href="/investing/">
<span class="icon-investing">
</span>
<span class="nav-menu-buttonText">
Investing
</span>
</a>
</div>
<div class="nav-menu-primaryLink tech">
<a class="nav-menu-button" href="/technology/">
<span class="icon-tech">
</span>
<span class="nav-menu-buttonText">
Tech
</span>
</a>
</div>
<div class="nav-menu-primaryLink politics">
<a class="nav-menu-button" href="/politics/">
<span class="icon-politics">
</span>
<span class="nav-menu-buttonText">
Politics
</span>
</a>
</div>
<div class="nav-menu-primaryLink cnbc_tv">
<a class="nav-menu-button" href="/tv/">
<span class="icon-cnbctv">
</span>
<span class="nav-menu-buttonText">
CNBC TV
</span>
</a>
</div>
<div class="nav-menu-primaryLink watchlist">
<a class="nav-menu-button" href="/watchlist/">
<span class="icon-watchlist">
</span>
<span class="nav-menu-buttonText">
Watchlist
</span>
</a>
</div>
<div class="nav-menu-primaryLink investing_club">
</div>
<div class="nav-menu-primaryLink pro">
</div>
<div aria-hidden="true" class="nav-menu-navUnderline">
</div>
<div aria-hidden="true" class="nav-menu-navDropdownWrap">
</div>
<div class="nav-menu-primaryLink hamburger">
<button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button">
<span class="icon-menu">
</span>
<span class="nav-menu-buttonText">
Menu
</span>
</button>
</div>
</div>
</div>
</div>
<div class="nav-menu-progressBarContainer">
</div>
</div>
</div>
<div class="BrandPageWrapper-liveAlertAd BrandPageWrapper-contentWrapper" id="MainContentContainer" role="main">
<p id="MainContent" tabindex="-1">
</p>
<div>
<div class="Home Page International PageBuilder-page">
<div class="PageBuilder-pageWrapper">
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
<section class="MarketsBanner-container" data-analytics="HomePageInternational-marketsBanner-1-0" data-test="marketsBanner-0" id="HomePageInternational-MarketsBanner-1">
<div class="MarketsBannerMenu-marketBannerMenuWrapper">
<div class="CustomBannerAdder-container">
<button class="CustomBannerAdder-addButton" data-testid="addButton">
<span class="CustomBannerAdder-plusButton" data-testid="plusButton">
<svg data-analytic-id="plus-icon" fill="none" height="17" viewbox="0 0 17 17" width="17" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="M9.1427 7.43729L9.18188 1.1331C9.18391 0.807363 8.92149 0.544946 8.59576 0.546971C8.27003 0.548995 8.00433 0.814694 8.0023 1.14043L7.96312 7.44462L1.46316 7.48502C1.13743 7.48704 0.871726 7.75274 0.869702 8.07847C0.867677 8.40421 1.13009 8.66662 1.45583 8.6646L7.95579 8.6242L7.91539 15.1242C7.91337 15.4499 8.17579 15.7123 8.50152 15.7103C8.82725 15.7083 9.09295 15.4426 9.09497 15.1168L9.13537 8.61687L15.4396 8.57769C15.7653 8.57566 16.031 8.30997 16.033 7.98423C16.035 7.6585 15.7726 7.39608 15.4469 7.39811L9.1427 7.43729Z" fill="#005594" fill-rule="evenodd">
</path>
</svg>
</span>
</button>
<span class="CustomBannerAdder-addTabtooltip">
Create your own markets banner
</span>
</div>
<div class="MarketsBannerMenu-container">
<button class="MarketsBannerMenu-activeMarket MarketsBannerMenu-marketOption">
EUR
</button>
<button class="MarketsBannerMenu-marketOption">
ASIA
</button>
<button class="MarketsBannerMenu-marketOption">
ASIA FX
</button>
<button class="MarketsBannerMenu-marketOption">
EUR FX
</button>
<button class="MarketsBannerMenu-marketOption">
PRE-MKT
</button>
<button class="MarketsBannerMenu-marketOption">
US
</button>
<button class="MarketsBannerMenu-marketOption">
BONDS
</button>
<button class="MarketsBannerMenu-marketOption">
OIL
</button>
<button class="MarketsBannerMenu-marketOption">
GOLD
</button>
<button class="MarketsBannerMenu-marketOption">
CRYPTO
</button>
</div>
</div>
<div class="MarketsBanner-main">
<div class="MarketsBanner-marketData" id="market-data-scroll-container">
<div class="MarketsBanner-ad">
<div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsBanner-1">
</div>
</div>
</div>
</div>
<div class="MarketsBanner-teaserContainer">
<div class="MarketsBanner-teaser">
<a href="https://www.cnbc.com/2024/06/14/europe-stocks-head-for-higher-open-to-round-off-choppy-week.html">
Europe stocks close lower to cap off losing week; France's CAC 40 down 2.7%
</a>
</div>
</div>
</section>
</div>
</div>
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
<div class="TopBanner-container" data-top-banner-placeholder="true">
<script>
(function() {
const userMembershipOnLastVisit = localStorage.getItem("cnbcMeta__cachedUserMembership");
if (!userMembershipOnLastVisit) {
// If no user membership is stored, user is likely not logged in.
// These users will typically see the banner.
return;
}
const { isPro, isInvestingClubUser } = JSON.parse(userMembershipOnLastVisit);
if (!(isPro || isInvestingClubUser)) {
// We’re rendering the top banner for users who are not pro or investing club members.
return;
}
// Hide the banner for pro and investing club users.
const style = document.createElement("style");
style.id = "top-banner-placeholder-style";
style.innerHTML = "[data-top-banner-placeholder] { display: none; }";
document.head.appendChild(style);
})()
</script>
</div>
</div>
</div>
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
<div class="QuickLinks-container" data-analytics="HomePageInternational-quickLinks-3-0" data-test="quickLinks-0" id="HomePageInternational-QuickLinks-3">
<div class="QuickLinks-deviceHeader QuickLinks-desktopHeader">
Quick Links
</div>
<div class="QuickLinks-scrollableContainer">
<span class="QuickLinks-desktopHeader">
Quick Links
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/2024/06/13/stock-market-today-live-updates.html" title="U.S. futures">
U.S. futures
</a>
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/quotes/US10Y" title="U.S. Treasurys">
U.S. Treasurys
</a>
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/2024/06/13/how-to-invest-in-india-the-worlds-fastest-growing-major-economy.html" title="How to invest in India">
How to invest in India
</a>
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/2024/06/14/taylor-swift-london-eras-tour-delay-bank-of-england-rate-cut.html" title="'Taylor Swift effect' on BOE?">
'Taylor Swift effect' on BOE?
</a>
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/2024/06/14/russias-putin-outlines-conditions-for-peace-talks-with-ukraine.html" title="Russia's peace conditions">
Russia's peace conditions
</a>
</span>
<span class="QuickLinks-quickLink">
<a href="https://www.cnbc.com/2024/06/14/three-day-hybrid-work-week-is-success-study-published-in-nature-says.html" title="Three-day hybrid work week">
Three-day hybrid work week
</a>
</span>
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="PageBuilder-col-9 PageBuilder-col">
<div class="FeaturedNewsHero-container" data-analytics="HomePageInternational-featuredNewsHero-5-0" data-test="featuredNewsHero-0" id="HomePageInternational-FeaturedNewsHero-5-0">
<div id="HomePageInternational-FeaturedCard-5-0">
<div class="FeaturedCard-container">
<div class="FeaturedCard-imageContainer">
<a href="https://www.cnbc.com/2024/06/16/advisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html" title="Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec">
<div>
<picture data-test="Picture">
<source height="554" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220&w=830&h=554&ffmt=webp&vtcrop=y" type="image/webp" width="830"/>
<source height="512" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220&w=610&h=512&ffmt=webp&vtcrop=y" type="image/webp" width="610"/>
<source height="730" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220&w=960&h=730&ffmt=webp&vtcrop=y" type="image/webp" width="960"/>
<source height="470" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220&w=560&h=470&ffmt=webp&vtcrop=y" type="image/webp" width="560"/>
<img alt="Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec" class="" src="https://image.cnbcfm.com/api/v1/image/107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220&w=960&h=730&vtcrop=y"/>
</picture>
</div>
</a>
</div>
<div class="FeaturedCard-content">
<div class="FeaturedCard-contentText">
<h2 class="FeaturedCard-packagedCardTitle">
<a href="https://www.cnbc.com/2024/06/16/advisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html" title="Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec">
Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec
</a>
</h2>
</div>
<ul class="PackageItems-container">
<li id="HomePageInternational-FeaturedCard-5-1-0">
<a class="PackageItem-link" href="https://www.cnbc.com/2024/06/15/avoid-concentration-risk-with-this-value-play-etf-expert-suggests.html" title="This ETF strategy may help investors skirt market concentration risk">
This ETF uses a profitability overlay to deliver durable returns. Here's how it works
<!-- -->
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="SecondaryCardContainer-container">
<ul>
<li id="HomePageInternational-SecondaryCard-5-0">
<div class="SecondaryCard-container">
<div class="SecondaryCard-imageContainer">
<a href="https://www.cnbc.com/2024/06/14/russias-putin-outlines-conditions-for-peace-talks-with-ukraine.html" title="Russia's Putin sets out conditions for peace talks with Ukraine">
<div>
<picture data-test="Picture">
<source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545&w=600&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545&w=380&h=214&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545&w=648&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="648"/>
<source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545&w=636&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="636"/>
<img alt="Russia's Putin sets out conditions for peace talks with Ukraine" class="" src="https://image.cnbcfm.com/api/v1/image/107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545&w=648&h=338&vtcrop=y"/>
</picture>
</div>
</a>
</div>
<div>
<div class="SecondaryCard-headline">
<a href="https://www.cnbc.com/2024/06/14/russias-putin-outlines-conditions-for-peace-talks-with-ukraine.html" title="Russia's Putin sets out conditions for peace talks with Ukraine">
Russia's Putin sets out conditions for peace talks with Ukraine
</a>
</div>
</div>
</div>
</li>
<li id="HomePageInternational-SecondaryCard-5-1">
<div class="SecondaryCard-container">
<div class="SecondaryCard-imageContainer">
<a href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" title="The unloved stock market rally: Why so many investors find it hard to embrace this run to records">
<div>
<picture data-test="Picture">
<source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=600&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=380&h=214&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=648&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="648"/>
<source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=636&h=338&ffmt=webp&vtcrop=y" type="image/webp" width="636"/>
<img alt="The unloved stock market rally: Why so many investors find it hard to embrace this run to records" class="" src="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=648&h=338&vtcrop=y"/>
</picture>
</div>
</a>
</div>
<div>
<div class="SecondaryCard-headline">
<a href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" title="The unloved stock market rally: Why so many investors find it hard to embrace this run to records">
The unloved stock market rally: Why so many investors find it hard to embrace this run to records
</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle">
<div class="SidebarArticle-noSticky" style="height:calc(100% - 70px)">
<div>
<div class="LatestNews-isHomePage LatestNews-isIntlHomepage" data-analytics="HomePageInternational-latestNews-6-0" data-test="latestNews-0">
<header class="LatestNews-header">
<span aria-hidden="true" style="background-color:#0089D0">
</span>
<h2>
<span>
Latest News
</span>
</h2>
</header>
<ul class="LatestNews-list">
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-0">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
47 Min Ago
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/advisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html" title="Advisors ‘wary’ of bitcoin ETFs are on an adoption journey, says BlackRock exec">
Advisors ‘wary’ of bitcoin ETFs are on an adoption journey, says BlackRock exec
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-1">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
51 Min Ago
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/advice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html" title="Steve Jobs built Apple using a simple piece of advice from his dad">
Steve Jobs built Apple using a simple piece of advice from his dad
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-2">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
56 Min Ago
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/japan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html" title="Japan did it first. Chinese stocks with some of the biggest global upside">
Japan did it first. Chinese stocks with some of the biggest global upside
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-3">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
56 Min Ago
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html" title="3 in-demand remote jobs hiring now that pay $100,000 in 2024">
3 in-demand remote jobs hiring now that pay $100,000 in 2024
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-4">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
1 Hour Ago
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/investors-may-be-missing-these-commercial-real-estate-opportunities.html" title="Investors may be missing these commercial real estate opportunities">
Investors may be missing these commercial real estate opportunities
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-5">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
1 Hour Ago
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/what-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html" title="What Warren Buffett said about GameStop mania then, as frenzy returns in 2024">
What Warren Buffett said about GameStop mania then, as frenzy returns in 2024
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-6">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
1 Hour Ago
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/16/why-student-loan-forgiveness-sparks-anger.html" title="Why the topic of student loan forgiveness sparks anger, according to experts">
Why the topic of student loan forgiveness sparks anger, according to experts
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-7">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
22 Hours Ago
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/i-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html" title="Advice: I dropped out of a group vacation—do I still have to pay for the hotel?">
Advice: I dropped out of a group vacation—do I still have to pay for the hotel?
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-8">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/we-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html" title="We live in a 940-sq-ft trailer by the beach for $5,100/month: Take a look inside">
We live in a 940-sq-ft trailer by the beach for $5,100/month: Take a look inside
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-9">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="InvestingClubPill-investingClubPillLink" data-type="investing-club-button" href="/investingclub/">
<svg alt="CNBC Investing Club" class="LatestNews-investingClubPill InvestingClubPill-investingClubPill" height="16" viewbox="0 0 50 22">
<rect fill="#0053CF" height="100%" width="100%">
</rect>
<path d="M12.98 15.144C10.532 15.144 8.708 13.236 8.708 10.824V10.8C8.708 8.412 10.496 6.456 13.04 6.456C14.588 6.456 15.524 6.996 16.328 7.764L15.38 8.856C14.708 8.232 13.988 7.812 13.028 7.812C11.432 7.812 10.256 9.132 10.256 10.776V10.8C10.256 12.444 11.42 13.776 13.028 13.776C14.06 13.776 14.72 13.368 15.44 12.696L16.388 13.656C15.512 14.568 14.552 15.144 12.98 15.144ZM17.6894 15V6.6H19.1654V13.656H23.5814V15H17.6894ZM28.3131 15.132C26.1291 15.132 24.7371 13.872 24.7371 11.436V6.6H26.2131V11.376C26.2131 12.936 27.0171 13.764 28.3371 13.764C29.6451 13.764 30.4491 12.984 30.4491 11.436V6.6H31.9251V11.364C31.9251 13.872 30.5091 15.132 28.3131 15.132ZM33.9511 15V6.6H37.7191C38.6791 6.6 39.4351 6.864 39.9151 7.344C40.2871 7.716 40.4791 8.172 40.4791 8.736V8.76C40.4791 9.768 39.9031 10.308 39.2791 10.632C40.2631 10.968 40.9471 11.532 40.9471 12.672V12.696C40.9471 14.196 39.7111 15 37.8391 15H33.9511ZM39.0031 9V8.976C39.0031 8.316 38.4751 7.908 37.5271 7.908H35.4031V10.14H37.4191C38.3671 10.14 39.0031 9.768 39.0031 9ZM39.4711 12.516C39.4711 11.808 38.9071 11.388 37.7431 11.388H35.4031V13.692H37.8511C38.8591 13.692 39.4711 13.296 39.4711 12.54V12.516Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/the-4-things-were-most-focused-on-in-the-stock-market-this-week.html" title="The 4 key things we're watching in the stock market this holiday-shortened week">
The 4 key things we're watching in the stock market this holiday-shortened week
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-10">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html" title="2 unusual tips for getting the most nutrients from immunity-boosting foods">
2 unusual tips for getting the most nutrients from immunity-boosting foods
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-11">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/nvidia-ceo-one-of-my-most-profound-learnings-came-from-a-gardener.html" title="Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener">
Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-12">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/whole-foods-co-founder-john-mackey-jeff-bezos-is-a-brilliant-man.html" title="Jeff Bezos is a 'brilliant man' for what he's done at Whole Foods, says ex-CEO">
Jeff Bezos is a 'brilliant man' for what he's done at Whole Foods, says ex-CEO
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-13">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/as-social-security-faces-fund-depletion-plans-for-reform-commission-spur-debate.html" title="As Social Security faces fund depletion, there's debate over whether a commission can help">
As Social Security faces fund depletion, there's debate over whether a commission can help
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-14">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/salary-a-single-person-needs-to-make-ends-meet-in-every-us-state.html" title="The salary a single person needs to make ends meet in every U.S. state">
The salary a single person needs to make ends meet in every U.S. state
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-15">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" title="Why so many investors find it hard to embrace the stock market run to records">
Why so many investors find it hard to embrace the stock market run to records
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-16">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/why-chinese-ev-tariffs-may-not-work.html" title="Why tariffs on Chinese EVs may not work">
Why tariffs on Chinese EVs may not work
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-17">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/these-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html" title="These stocks are AI model's big upside picks after a week of mild economic data">
These stocks are AI model's big upside picks after a week of mild economic data
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-18">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/early-ai-bets-are-helping-a-global-tech-fund-outperform-a-second-year.html" title="Early bets on AI have helped this global tech fund outperform for a second year">
Early bets on AI have helped this global tech fund outperform for a second year
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-19">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/morgan-stanley-likes-these-five-stocks-plus-this-nvidia-alternative.html" title="Never mind Nvidia. Buy these 5 names instead, Morgan Stanley says">
Never mind Nvidia. Buy these 5 names instead, Morgan Stanley says
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-20">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 15, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/15/candy-makers-cocoa-prices.html" title="Cocoa prices are soaring. Candy makers will need to get creative">
Cocoa prices are soaring. Candy makers will need to get creative
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-21">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/jim-cramer-says-its-time-to-take-some-profits-in-ai-stocks.html" title="Jim Cramer says it's time to take some profits in AI stocks">
Jim Cramer says it's time to take some profits in AI stocks
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-22">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/cramers-lightning-round-lets-stay-away-from-unity-software.html" title="Cramer's Lightning Round: 'Let's stay away' from Unity Software">
Cramer's Lightning Round: 'Let's stay away' from Unity Software
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-23">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/cramers-week-ahead-earnings-from-lennar-and-kb-home.html" title="Cramer's week ahead: A closer look at housing with Lennar and KB Home earnings">
Cramer's week ahead: A closer look at housing with Lennar and KB Home earnings
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-24">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/industries-where-workers-tend-to-have-higher-401k-balances.html" title="With 401(k) savings, workers in certain industries may have an advantage">
With 401(k) savings, workers in certain industries may have an advantage
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-25">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/ceos-at-trump-meeting-not-impressed.html" title="CEOs at Trump meeting say he was ‘meandering,’ ‘doesn't know what he's talking about’">
CEOs at Trump meeting say he was ‘meandering,’ ‘doesn't know what he's talking about’
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-26">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/mortgage-backed-securities-are-loved-by-wall-street-for-their-attractive-yields-and-relative-value.html" title="This sector is loved by Wall Street for its attractive yields and relative value">
This sector is loved by Wall Street for its attractive yields and relative value
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-27">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/adobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html" title="Adobe shares surge 15% for sharpest rally since 2020 ">
Adobe shares surge 15% for sharpest rally since 2020
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-28">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/gen-z-retirement-saving-younger-millennials-ira-investing.html" title="Gen Z is harnessing 'one of the magical qualities of investing,' advisor says">
Gen Z is harnessing 'one of the magical qualities of investing,' advisor says
</a>
</div>
</div>
</li>
<li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-29">
<div class="LatestNews-container">
<div class="LatestNews-headlineWrapper">
<span class="LatestNews-wrapper">
<time class="LatestNews-timestamp">
June 14, 2024
</time>
</span>
<a class="InvestingClubPill-investingClubPillLink" data-type="investing-club-button" href="/investingclub/">
<svg alt="CNBC Investing Club" class="LatestNews-investingClubPill InvestingClubPill-investingClubPill" height="16" viewbox="0 0 50 22">
<rect fill="#0053CF" height="100%" width="100%">
</rect>
<path d="M12.98 15.144C10.532 15.144 8.708 13.236 8.708 10.824V10.8C8.708 8.412 10.496 6.456 13.04 6.456C14.588 6.456 15.524 6.996 16.328 7.764L15.38 8.856C14.708 8.232 13.988 7.812 13.028 7.812C11.432 7.812 10.256 9.132 10.256 10.776V10.8C10.256 12.444 11.42 13.776 13.028 13.776C14.06 13.776 14.72 13.368 15.44 12.696L16.388 13.656C15.512 14.568 14.552 15.144 12.98 15.144ZM17.6894 15V6.6H19.1654V13.656H23.5814V15H17.6894ZM28.3131 15.132C26.1291 15.132 24.7371 13.872 24.7371 11.436V6.6H26.2131V11.376C26.2131 12.936 27.0171 13.764 28.3371 13.764C29.6451 13.764 30.4491 12.984 30.4491 11.436V6.6H31.9251V11.364C31.9251 13.872 30.5091 15.132 28.3131 15.132ZM33.9511 15V6.6H37.7191C38.6791 6.6 39.4351 6.864 39.9151 7.344C40.2871 7.716 40.4791 8.172 40.4791 8.736V8.76C40.4791 9.768 39.9031 10.308 39.2791 10.632C40.2631 10.968 40.9471 11.532 40.9471 12.672V12.696C40.9471 14.196 39.7111 15 37.8391 15H33.9511ZM39.0031 9V8.976C39.0031 8.316 38.4751 7.908 37.5271 7.908H35.4031V10.14H37.4191C38.3671 10.14 39.0031 9.768 39.0031 9ZM39.4711 12.516C39.4711 11.808 38.9071 11.388 37.7431 11.388H35.4031V13.692H37.8511C38.8591 13.692 39.4711 13.296 39.4711 12.54V12.516Z" fill="white">
</path>
</svg>
</a>
<a class="LatestNews-headline" href="https://www.cnbc.com/2024/06/14/the-ai-trade-dominated-this-week-heres-how-were-responding-to-the-market-divergence.html" title="The AI trade dominated this week — how we're responding to the market divergence">
The AI trade dominated this week — how we're responding to the market divergence
</a>
</div>
</div>
</li>
</ul>
<button class="LatestNews-button">
View More
</button>
</div>
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="SidebarArticle-sidebar PageBuilder-sidebarLeft PageBuilder-sidebar" data-test="SidebarArticle">
<div class="SidebarArticle-sticky" style="top:70px">
<div style="margin-top:0px">
</div>
<div>
</div>
<div>
<div class="QuoteFinder-container QuoteFinder-hideOnMobile" data-analytics="HomePageInternational-quoteFinder-9-2" data-test="quoteFinder-2">
<h2 class="QuoteFinder-title">
QUOTE FINDER
</h2>
<div>
<form class="QuoteFinder-form" id="homePageInternational-quoteFinder-form">
<input autocomplete="off" class="QuoteFinder-searchInput" id="QuoteFinder-searchInput" placeholder="Search" type="search"/>
<button class="QuoteFinder-submitBtn icon-search" data-analytic-id="Quote Finder Search" form="QuoteFinder-form" type="submit">
Search
</button>
</form>
</div>
<span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator" data-testid="DynamicLoadingIndicator">
<span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px">
</span>
</span>
</div>
</div>
<div>
<div class="MarketMoversPlus-container" data-analytics="HomePageInternational-marketMoversPlus-10-3" data-test="marketMoversPlus-3" id="HomePageInternational-MarketsMoversPlus-10">
<div class="MarketMoversPlus-header">
<div>
<a href="/us-market-movers/">
Market Movers
</a>
</div>
<div class="MarketMoversPlus-sponsorLogo">
<div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsMoversPlus-10">
</div>
</div>
</div>
<div class="MarketMoversMenu-moverContainer MarketMoversMenu-moverPlusContainer MarketMoversMenu-moverContainer">
<button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">
US
</button>
<button class="MarketMoversMenu-marketOption">
EUR
</button>
<button class="MarketMoversMenu-marketOption">
ASIA
</button>
<button class="MarketMoversMenu-marketOption">
COVID19
</button>
</div>
</div>
</div>
</div>
</div>
<div class="PageBuilder-col-6 PageBuilder-col">
<div class="RiverPlus-riverPlusContainer" data-analytics="HomePageInternational-riverPlus-11-0" data-test="riverPlus-0" id="Home Page International-riverPlus">
<div id="HomePageInternational-riverPlus-11-0">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/13/how-to-invest-in-india-the-worlds-fastest-growing-major-economy.html">
How to invest in India, the world's fastest-growing major economy
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/lucy-handley/">
Lucy Handley
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/13/how-to-invest-in-india-the-worlds-fastest-growing-major-economy.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/lucy-handley/">
Lucy Handley
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-1">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a href="https://www.cnbc.com/2024/06/16/what-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html">
What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024
</a>
</div>
<div class="RiverByline-bylineContainer RiverByline-hasSeparator">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-datePublished">
an hour ago
</span>
<span class="RiverByline-separator">
•
</span>
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/yun-li/">
Yun Li
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/16/what-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-datePublished">
an hour ago
</span>
<span class="RiverByline-separator">
•
</span>
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/yun-li/">
Yun Li
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-2">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/16/wall-street-analysts-pick-these-3-dividend-stocks-for-enhanced-returns.html">
Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns
</a>
</div>
<div class="RiverByline-bylineContainer">
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/16/wall-street-analysts-pick-these-3-dividend-stocks-for-enhanced-returns.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
</div>
</div>
<div data-module="NativeRiver">
<div class="NativeRiver-container" data-module="mps-slot" id="HomePageInternational-riverPlus-11-3">
</div>
</div>
<div id="HomePageInternational-riverPlus-11-4">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/16/adidas-investigates-bribery-allegations-in-china-ft-says.html">
Adidas reportedly investigates bribery allegations in China
</a>
</div>
<div class="RiverByline-bylineContainer">
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/16/adidas-investigates-bribery-allegations-in-china-ft-says.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
</div>
</div>
<div id="HomePageInternational-riverPlus-11-5">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/ceos-at-trump-meeting-not-impressed.html">
CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/christina-wilkie/">
Christina Wilkie
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/brian-schwartz/">
Brian Schwartz
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/ceos-at-trump-meeting-not-impressed.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/christina-wilkie/">
Christina Wilkie
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/brian-schwartz/">
Brian Schwartz
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-6">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/15/candy-makers-cocoa-prices.html">
Cocoa prices are soaring. Candy makers will need to get creative
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/amelia-lucas/">
Amelia Lucas
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/15/candy-makers-cocoa-prices.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/amelia-lucas/">
Amelia Lucas
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-7">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a href="https://www.cnbc.com/2024/06/16/japan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html">
Japan did it first. Chinese stocks with some of the biggest global upside
</a>
</div>
<div class="RiverByline-bylineContainer RiverByline-hasSeparator">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-datePublished">
an hour ago
</span>
<span class="RiverByline-separator">
•
</span>
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/evelyn-cheng/">
Evelyn Cheng
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/16/japan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-datePublished">
an hour ago
</span>
<span class="RiverByline-separator">
•
</span>
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/evelyn-cheng/">
Evelyn Cheng
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverPlusBreaker-container">
<div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-11-8">
<div class="RiverThumbnail-breakerImage">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/15/why-chinese-ev-tariffs-may-not-work.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/15/why-chinese-ev-tariffs-may-not-work.html">
Why tariffs on Chinese EVs may not work
</a>
</div>
</div>
<div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-11-9">
<div class="RiverThumbnail-breakerImage">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/pictures-india-records-longest-heatwave-delhi-faces-water-crisis.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/pictures-india-records-longest-heatwave-delhi-faces-water-crisis.html">
In pictures: India records 'longest' heatwave, Delhi faces water crisis
</a>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-10">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/16/gaza-israeli-military-announces-tactical-pause-to-increase-aid-flow.html">
Israeli military announces 'tactical pause' in attempt to increase flow of aid into hard-hit Gaza
</a>
</div>
<div class="RiverByline-bylineContainer">
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/16/gaza-israeli-military-announces-tactical-pause-to-increase-aid-flow.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
</div>
</div>
<div id="HomePageInternational-riverPlus-11-11">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a href="https://www.cnbc.com/2024/06/14/a-bunch-of-analysts-cut-price-targets-on-adobe-remy-cointreau-and-nice-shares-this-week-heres-why.html">
A bunch of analysts cut price targets on these 3 stocks this week. Here's why
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/ganesh-rao/">
Ganesh Rao
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/a-bunch-of-analysts-cut-price-targets-on-adobe-remy-cointreau-and-nice-shares-this-week-heres-why.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/ganesh-rao/">
Ganesh Rao
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-12">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/13/stock-market-today-live-updates.html">
Nasdaq Composite ekes out fifth straight record close, notches a 3% weekly gain
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/lisa-kailai-han/">
Lisa Kailai Han
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/brian-evans/">
Brian Evans
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/13/stock-market-today-live-updates.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/lisa-kailai-han/">
Lisa Kailai Han
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/brian-evans/">
Brian Evans
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-13">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/15/g7-confronts-china-on-commerce-pope-talks-about-ai.html">
G7 confronts China on commerce, pope talks about AI
</a>
</div>
<div class="RiverByline-bylineContainer">
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/15/g7-confronts-china-on-commerce-pope-talks-about-ai.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
</div>
</div>
<div id="HomePageInternational-riverPlus-11-14">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/fridays-trading-could-trigger-a-10-billion-rush-of-demand-for-nvidia-shares-heres-how.html">
Friday's trading could trigger a $10 billion rush of demand for Nvidia shares. Here's how
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/jesse-pound/">
Jesse Pound
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/fridays-trading-could-trigger-a-10-billion-rush-of-demand-for-nvidia-shares-heres-how.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/jesse-pound/">
Jesse Pound
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-15">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/luxury-homes-on-these-beaches-are-losing-value-fast-as-effects-of-climate-change-hit-hard.html">
Luxury homes on these beaches are losing value fast, as effects of climate change hit hard
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/diana-olick/">
Diana Olick
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/luxury-homes-on-these-beaches-are-losing-value-fast-as-effects-of-climate-change-hit-hard.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/diana-olick/">
Diana Olick
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-16">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/15/south-africas-ramaphosa-re-elected-as-anc-strikes-coalition-deal.html">
South Africa's Ramaphosa re-elected as ANC strikes coalition deal
</a>
</div>
<div class="RiverByline-bylineContainer">
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/15/south-africas-ramaphosa-re-elected-as-anc-strikes-coalition-deal.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
</div>
</div>
<div id="HomePageInternational-riverPlus-11-17">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/15/2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html">
A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/renee-onque/">
Renée Onque
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/15/2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/renee-onque/">
Renée Onque
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-18">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/adobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html">
Adobe shares surge 15% for sharpest rally since 2020
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/katie-bartlett/">
Katie Bartlett
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/adobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/katie-bartlett/">
Katie Bartlett
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-19">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/2024/06/14/microsoft-to-delay-launch-of-ai-recall-tool-due-to-security-concerns.html">
Microsoft to delay launch of AI Recall tool due to security concerns
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/katie-bartlett/">
Katie Bartlett
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="RiverThumbnail-imageThumbnail">
<a href="https://www.cnbc.com/2024/06/14/microsoft-to-delay-launch-of-ai-recall-tool-due-to-security-concerns.html">
<div class="lazyload-placeholder" style="height:100%">
</div>
</a>
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/katie-bartlett/">
Katie Bartlett
</a>
</span>
</span>
</div>
</div>
</div>
<div id="HomePageInternational-riverPlus-11-20">
<div class="RiverPlusCard-container">
<div class="RiverPlusCard-cardLeft">
<div class="RiverHeadline-headline RiverHeadline-hasThumbnail">
<a href="https://www.cnbc.com/video/2024/06/14/bitcoin-dips-into-the-65000-level-to-end-the-week-cnbc-crypto-world.html">
Bitcoin dips into the $65,000 level to end the week: CNBC Crypto World
</a>
</div>
<div class="RiverByline-bylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/tanaya-macheel/">
Tanaya Macheel
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/talia-kaplan/">
Talia Kaplan
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/kaan-oguz/">
Kaan Oguz
</a>
</span>
</span>
</div>
</div>
</div>
<div class="RiverThumbnail-thumbnailContainer">
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
</div>
<div class="RiverByline-mobileBylineContainer">
<div class="RiverByline-authorBylineContainer">
<span class="RiverByline-authorByline">
<span>
<a href="https://www.cnbc.com/tanaya-macheel/">
Tanaya Macheel
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/talia-kaplan/">
Talia Kaplan
</a>
<span class="RiverByline-bylineComma">
,
</span>
</span>
<span>
<a href="https://www.cnbc.com/kaan-oguz/">
Kaan Oguz
</a>
</span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle">
<div class="SidebarArticle-sticky" style="top:70px">
<div style="margin-top:0px">
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="PageBuilder-col-12 PageBuilder-col">
<section class="MarketsModule-container" data-analytics="HomePageInternational-marketsModule-13-0" data-test="marketsModule-0" id="HomePageInternational-MarketsModule-13">
<section class="MarketsModule-top">
<div class="MarketsModule-title">
<h2>
<a href="//www.cnbc.com/us-market-movers/">
Markets
</a>
</h2>
<div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsModule-13">
</div>
</div>
<section class="MarketMovers-container">
<section class="MarketMovers-titleContainer">
<h3 class="MarketMovers-title">
<a href="/us-market-movers/">
Market MOVERS
</a>
</h3>
<div class="MarketMoversMenu-moverContainer">
<button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">
S&P
</button>
<button class="MarketMoversMenu-marketOption">
NASDAQ
</button>
<button class="MarketMoversMenu-marketOption">
DOW
</button>
<button class="MarketMoversMenu-marketOption">
EUR
</button>
<button class="MarketMoversMenu-marketOption">
ASIA
</button>
<button class="MarketMoversMenu-marketOption">
COVID19
</button>
<button class="MarketMoversMenu-marketOption">
</button>
</div>
</section>
<section class="MarketMovers-marketTopContainer">
<div class="MarketMovers-loadingContainer">
<span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator" data-testid="DynamicLoadingIndicator">
<span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px">
</span>
</span>
</div>
</section>
</section>
</section>
<section class="MarketsModule-row">
<section class="MarketsModule-leftColumn">
<div class="MarketsModule-marketTable">
<section class="TableHeader-container" data-test="TableHeader">
<h3 class="TableHeader-title">
Most Active
</h3>
</section>
<div data-test="GdsMarketTable">
<div class="BasicTable-basicTable" data-test="BasicTable">
<div class="BasicTable-tableWrapper">
<div class="BasicTable-container">
<table class="BasicTable-table">
<tbody class="BasicTable-tableBody">
</tbody>
</table>
</div>
</div>
<div>
<br/>
</div>
</div>
</div>
</div>
<div class="MarketsModule-marketTable">
<section class="TableHeader-container" data-test="TableHeader">
<h3 class="TableHeader-title">
Unusual Volume
</h3>
</section>
<div data-test="GdsMarketTable">
<div class="BasicTable-basicTable" data-test="BasicTable">
<div class="BasicTable-tableWrapper">
<div class="BasicTable-container">
<table class="BasicTable-table">
<tbody class="BasicTable-tableBody">
</tbody>
</table>
</div>
</div>
<div>
<br/>
</div>
</div>
</div>
</div>
</section>
<section class="MarketsModule-rightColumn">
<section class="MarketNews-container">
<h3 class="MarketNews-title">
<a href="/stocks/">
Latest Market News
</a>
</h3>
<div class="Card-standardBreakerCard Card-titleBylineNoBorder Card-card" data-test="Card">
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/wall-street-analysts-pick-these-3-dividend-stocks-for-enhanced-returns.html" target="">
Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card">
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/advisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html" target="">
Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<div class="MarketNews-authorBylineContainer">
<span class="MarketNews-datePublished">
an hour ago
</span>
<span class="MarketNews-separator">
•
</span>
<span>
<span>
<a href="https://www.cnbc.com/tanaya-macheel/">
Tanaya Macheel
</a>
</span>
</span>
</div>
</span>
</div>
</div>
</div>
</div>
<div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card">
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" target="">
The unloved stock market rally: Why so many investors find it hard to embrace this run to records
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<div class="MarketNews-authorBylineContainer">
<span>
<span>
<a href="https://www.cnbc.com/michael-santoli/">
Michael Santoli
</a>
</span>
</span>
</div>
</span>
</div>
</div>
</div>
</div>
<div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card">
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-pro">
<div>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="Card-title" href="https://www.cnbc.com/2024/06/14/investors-wonder-if-tech-can-keep-lifting-sp-500-to-new-records-this-summer.html" target="">
Investors wonder if tech can keep lifting S&P 500 to records this summer as some cracks emerge
</a>
</div>
</div>
</div>
<div class="Card-cardFooter Card-bylinePosition">
<span class="Card-byline">
<div class="MarketNews-authorBylineContainer">
<span>
<span>
<a href="https://www.cnbc.com/sarah-min/">
Sarah Min
</a>
</span>
</span>
</div>
</span>
</div>
</div>
</div>
</div>
</section>
</section>
</section>
</section>
</div>
</div>
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
<div class="VideoBreakerFeatured-col-full VideoBreakerFeatured-col" data-analytics="HomePageInternational-videoBreakerFeatured-15-0" data-test="videoBreakerFeatured-0" id="HomePageInternational-VideoBreakerFeatured-15">
<section class="FeaturedLiveTvModule-container FeaturedLiveTvModule-lightMode">
<div class="FeaturedLiveTvModule-grid">
<div class="FeaturedLiveTvModule-contentWrapper">
<div class="FeaturedVideoHeader-container FeaturedVideoHeader-lightMode">
<div class="FeaturedVideoHeader-title FeaturedVideoHeader-titleWithTwoBtns">
<span class="FeaturedVideoHeader-titleDecorator" style="background-color:#fcb700">
</span>
CNBC TV
</div>
<a href="//www.cnbc.com/live-tv/">
<button class="FeaturedVideoHeader-callToAction FeaturedVideoHeader-wideOnly">
WATCH LIVE
</button>
</a>
<a href="//www.cnbc.com/latest-video/">
<button class="FeaturedVideoHeader-callToAction">
ALL VIDEOS
</button>
</a>
</div>
<div class="FeaturedLiveTvModule-content">
<section class="FeaturedLiveTvModule-videoPlayerContainer" id="cnbc-tv-container">
<div class="FeaturedLiveTvModule-videoPlaceholder">
</div>
</section>
<section class="FeaturedLiveTvModule-playlistContainer">
<div class="VideoRecirculationLinks-mobileWrapper">
<div class="VideoRecirculationLinks-container">
<div class="VideoRecirculationLinks-card" role="link" tabindex="0">
<div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000343256">
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
<a href="https://www.cnbc.com/video/2024/06/14/could-donald-trump-go-to-jail-heres-what-to-expect-from-the-former-presidents-sentencing.html">
<div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">
Will Donald Trump go to jail? Here's what to expect from the former president's sentencing
</div>
</a>
</div>
<div class="VideoRecirculationLinks-card" role="link" tabindex="0">
<div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000343304">
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
<a href="https://www.cnbc.com/video/2024/06/14/apples-ai-killer-is-the-iphone.html">
<div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">
Apple's AI killer is... the iPhone
</div>
</a>
</div>
<div class="VideoRecirculationLinks-card" role="link" tabindex="0">
<div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000343024">
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
<a href="https://www.cnbc.com/video/2024/06/13/the-comeback-of-abercrombie-fitch.html">
<div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">
The comeback of Abercrombie & Fitch
</div>
</a>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="PageBuilder-containerWidth100 PageBuilder-pageRow">
<div class="PageBuilder-col-full PageBuilder-col">
<div class="FeaturedBreaker-featuredBreaker" data-analytics="HomePageInternational-featuredBreaker-16-0" data-test="featuredBreaker-0" id="HomePageInternational-FeaturedBreaker-SpecialReports-16">
<div class="FeaturedBreaker-wrapper">
<div>
<div class="FeaturedBreaker-heading">
<h3 class="FeaturedBreaker-headingText">
Special Reports
</h3>
</div>
<div class="FeaturedBreaker-arrowContainer">
<button aria-label="previous-button" class="FeaturedBreaker-prevArrowInactive FeaturedBreaker-prevArrow FeaturedBreaker-arrow">
<span class="icon-arrow-left">
</span>
</button>
<button aria-label="next-button" class="FeaturedBreaker-nextArrow FeaturedBreaker-arrow">
<span class="icon-arrow-right">
</span>
</button>
</div>
</div>
<div class="FeaturedBreaker-slideContainer">
<div class="FeaturedBreaker-leftSlide">
<div class="FeaturedBreaker-slideRail" style="transform:translateX(-0%)">
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
</div>
<div class="FeaturedBreaker-rightSlide">
<div class="FeaturedBreaker-slideRail" style="transform:translateX(-100%)">
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="PageBuilder-col-12 PageBuilder-col">
<div class="TrendingNowBreaker-pageRow" data-analytics="HomePageInternational-trendingNowBreaker-17-0" data-test="trendingNowBreaker-0" id="HomePageInternational-TrendingNowBreaker-17">
<div class="TrendingNowBreaker-col-12 TrendingNowBreaker-col">
<div class="TrendingNow-container">
<div>
</div>
<h2 class="TrendingNow-heading">
Trending Now
</h2>
<ul class="TrendingNow-storyContainer">
<li class="TrendingNowItem-storyItem">
<div class="TrendingNowItem-number">
1
</div>
<div class="TrendingNowItem-linkWrap">
<a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/06/14/carolina-williams-chose-auburn-over-yale-has-no-regrets.html">
25-year-old turned down Yale in 2017—now she makes $90,000 a year and has 'no regrets'
</a>
</div>
</li>
<li class="TrendingNowItem-storyItem">
<div class="TrendingNowItem-number">
2
</div>
<div class="TrendingNowItem-linkWrap">
<a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/06/14/if-you-always-use-these-phrases-youre-mentally-stronger-than-most.html">
If you always use 6 phrases, you’re mentally stronger than most
</a>
</div>
</li>
<li class="TrendingNowItem-storyItem">
<div class="TrendingNowItem-number">
3
</div>
<div class="TrendingNowItem-linkWrap">
<a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/06/15/we-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html">
We live 'the California dream' in a 940-sq-ft trailer by the beach for $5,100 a month
</a>
</div>
</li>
<li class="TrendingNowItem-storyItem">
<div class="TrendingNowItem-number">
4
</div>
<div class="TrendingNowItem-linkWrap">
<a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/06/14/luxury-homes-on-these-beaches-are-losing-value-fast-as-effects-of-climate-change-hit-hard.html">
Luxury homes on these beaches are losing value fast, as effects of climate change hit hard
</a>
</div>
</li>
<li class="TrendingNowItem-storyItem">
<div class="TrendingNowItem-number">
5
</div>
<div class="TrendingNowItem-linkWrap">
<a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/06/14/ceos-at-trump-meeting-not-impressed.html">
CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’
</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="PageBuilder-col-9 PageBuilder-col">
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-18-0" data-test="twoColumnImageDense-0">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-ProNewsandAnalysis-18">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/pro/news/">
Pro News and Analysis
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/16/investors-may-be-missing-these-commercial-real-estate-opportunities.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="Investors may be looking at commercial real estate risk all wrong and missing these opportunities" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-pro">
<div>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/investors-may-be-missing-these-commercial-real-estate-opportunities.html" target="">
Investors may be looking at commercial real estate risk all wrong and missing these opportunities
</a>
</div>
</div>
</div>
<div class="Card-cardFooter Card-bylinePosition">
<span class="Card-byline">
<a href="https://www.cnbc.com/christina-cheddar-berk/">
Christina Cheddar Berk
</a>
</span>
<span class="Card-time">
an hour ago
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/16/japan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/105742111-1550232920554rtx6mua1.jpg?v=1588207528&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/105742111-1550232920554rtx6mua1.jpg?v=1588207528&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/105742111-1550232920554rtx6mua1.jpg?v=1588207528&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/105742111-1550232920554rtx6mua1.jpg?v=1588207528&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Japan did it first. Chinese stocks with some of the biggest global upside" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/105742111-1550232920554rtx6mua1.jpg?v=1588207528&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-pro">
<div>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/japan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html" target="">
Japan did it first. Chinese stocks with some of the biggest global upside
</a>
</div>
</div>
</div>
<div class="Card-cardFooter Card-bylinePosition">
<span class="Card-byline">
<a href="https://www.cnbc.com/evelyn-cheng/">
Evelyn Cheng
</a>
</span>
<span class="Card-time">
an hour ago
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/16/what-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="What Warren Buffett said about GameStop mania then, as frenzy returns in 2024" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-pro">
<div>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/what-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html" target="">
What Warren Buffett said about GameStop mania then, as frenzy returns in 2024
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle Card-bylinePosition">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/yun-li/">
Yun Li
</a>
</span>
<span class="Card-time">
an hour ago
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Why so many investors find it hard to embrace the stock market run to records" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/15/the-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html" target="">
Why so many investors find it hard to embrace the stock market run to records
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/michael-santoli/">
Michael Santoli
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/15/these-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="These stocks are AI model's big upside picks after a week of mild economic data" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-pro">
<div>
<a class="ProPill-proPillLink" data-type="pro-button" href="/pro/">
<svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22">
<rect fill="#047E2E" height="100%" width="100%">
</rect>
<path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white">
</path>
</svg>
</a>
<a class="Card-title" href="https://www.cnbc.com/2024/06/15/these-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html" target="">
These stocks are AI model's big upside picks after a week of mild economic data
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle Card-bylinePosition">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/jesse-pound/">
Jesse Pound
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-19-1" data-test="twoColumnImageDense-1">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-UKVotes-19">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/uk-votes/">
UK Votes
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/13/uk-general-election-2024-labour-publishes-manifesto-.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="Britain's Labour Party pledges 'wealth creation' as it targets landslide election victory" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/13/uk-general-election-2024-labour-publishes-manifesto-.html" target="">
Britain's Labour Party pledges 'wealth creation' as it targets landslide election victory
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/jenni-reid/">
Jenni Reid
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/11/conservative-manifesto-uks-rishi-sunak-announces-election-pledges.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="UK's Sunak announces election pledges, looking to bounce back from D-Day gaffe" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/11/conservative-manifesto-uks-rishi-sunak-announces-election-pledges.html" target="">
UK's Sunak announces election pledges, looking to bounce back from D-Day gaffe
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/matt-clinch/">
Matt Clinch
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/11/uk-unemployment-nears-three-year-high-as-election-approaches.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="UK unemployment nears three-year high, wage growth firm as election looms" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/11/uk-unemployment-nears-three-year-high-as-election-approaches.html" target="">
UK unemployment nears three-year high, wage growth firm as election looms
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/jenni-reid/">
Jenni Reid
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/06/uk-election-brexiteer-nigel-farages-return-boosts-uks-right-wing.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="UK's populist right-wing party surges in popularity on Brexiteer Nigel Farage's return" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/06/uk-election-brexiteer-nigel-farages-return-boosts-uks-right-wing.html" target="">
UK's populist right-wing party surges in popularity on Brexiteer Nigel Farage's return
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/karen-gilchrist/">
Karen Gilchrist
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/04/uk-election-2024-sunak-and-starmer-clash-in-first-head-to-head-debate.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="UK PM Sunak attacks main rival as he languishes in election polls" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/04/uk-election-2024-sunak-and-starmer-clash-in-first-head-to-head-debate.html" target="">
UK PM Sunak attacks main rival as he languishes in election polls
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/jenni-reid/">
Jenni Reid
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-20-2" data-test="twoColumnImageDense-2">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-SustainableFuture-20">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/sustainable-future/">
Sustainable Future
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/11/norway-discovers-europes-largest-deposit-of-rare-earth-metals.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/102737188-GettyImages-104551001.jpg?v=1718102081&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/102737188-GettyImages-104551001.jpg?v=1718102081&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/102737188-GettyImages-104551001.jpg?v=1718102081&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/102737188-GettyImages-104551001.jpg?v=1718102081&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="Norway discovers Europe's largest deposit of rare earth metals" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/102737188-GettyImages-104551001.jpg?v=1718102081&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/11/norway-discovers-europes-largest-deposit-of-rare-earth-metals.html" target="">
Norway discovers Europe's largest deposit of rare earth metals
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/sam-meredith/">
Sam Meredith
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/09/honda-may-be-americas-most-committed-ev-automaker-for-the-moment.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="With EVs, Honda may be North America's most committed automaker, for the moment" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/09/honda-may-be-americas-most-committed-ev-automaker-for-the-moment.html" target="">
With EVs, Honda may be North America's most committed automaker, for the moment
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/kevin-williams/">
Kevin Williams
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/06/ev-sales-slump-hertz-dump-take-used-tesla-to-no-haggle-25000-price.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="The race to $25,000 EV has been won, at least in the used car market " class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/06/ev-sales-slump-hertz-dump-take-used-tesla-to-no-haggle-25000-price.html" target="">
The race to $25,000 EV has been won, at least in the used car market
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/bob-woods/">
Bob Woods
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/05/un-world-to-briefly-hit-1point5-degree-warming-threshold-in-next-5-years.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="World likely to blast beyond grim warming milestone in the next 5 years, UN says" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/05/un-world-to-briefly-hit-1point5-degree-warming-threshold-in-next-5-years.html" target="">
World likely to blast beyond grim warming milestone in the next 5 years, UN says
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/sam-meredith/">
Sam Meredith
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/03/khosla-ventures-backs-wineborne-a-startup-using-ai-to-upend-forecasts.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Khosla Ventures backs weather balloon startup that uses AI to upend forecasts" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/03/khosla-ventures-backs-wineborne-a-startup-using-ai-to-upend-forecasts.html" target="">
Khosla Ventures backs weather balloon startup that uses AI to upend forecasts
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/diana-olick/">
Diana Olick
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-21-3" data-test="twoColumnImageDense-3">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-CNBCTravel-21">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/cnbc-travel/">
CNBC Travel
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/14/hong-kong-tourism-struggles-amid-high-prices-shenzhen-competition.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="Hong Kong wants residents to smile more but prices and competition pose bigger threat to tourism" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/14/hong-kong-tourism-struggles-amid-high-prices-shenzhen-competition.html" target="">
Hong Kong wants residents to smile more but prices and competition pose bigger threat to tourism
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/dylan-butts/">
Dylan Butts
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/04/taiwans-april-earthquake-deals-another-blow-to-its-tourism-industry.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="'Everyone is too scared to come': Taiwan tourism struggles after April earthquake" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/04/taiwans-april-earthquake-deals-another-blow-to-its-tourism-industry.html" target="">
'Everyone is too scared to come': Taiwan tourism struggles after April earthquake
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
Jan Camenzind Broomby, contributor
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/05/31/-here-are-the-worlds-top-25-airlines-according-to-airlineratingscom.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Here are the top 25 airlines in the world, according to AirlineRatings.com" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/05/31/-here-are-the-worlds-top-25-airlines-according-to-airlineratingscom.html" target="">
Here are the top 25 airlines in the world, according to AirlineRatings.com
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/monica-pitrelli/">
Monica Pitrelli
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/05/30/gens-zs-are-traveling-this-summer-and-going-into-debt-to-pay-for-trips.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Gen Zs are traveling big this summer — how they're paying for it may surprise you" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/05/30/gens-zs-are-traveling-this-summer-and-going-into-debt-to-pay-for-trips.html" target="">
Gen Zs are traveling big this summer — how they're paying for it may surprise you
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/monica-pitrelli/">
Monica Pitrelli
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/05/29/chinese-tourists-pick-cheaper-destinations-fueling-local-spending.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Chinese tourists pick cheaper destinations, fueling local spending" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/05/29/chinese-tourists-pick-cheaper-destinations-fueling-local-spending.html" target="">
Chinese tourists pick cheaper destinations, fueling local spending
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/evelyn-cheng/">
Evelyn Cheng
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-22-4" data-test="twoColumnImageDense-4">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-MakeIt-22">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/make-it/">
Make It
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/16/advice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/advice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html" target="">
Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/megan-sauer/">
Megan Sauer
</a>
</span>
<span class="Card-time">
an hour ago
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/16/3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="3 in-demand remote jobs hiring now that pay $100,000 in 2024" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/16/3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html" target="">
3 in-demand remote jobs hiring now that pay $100,000 in 2024
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/morgan-smith/">
Morgan Smith
</a>
</span>
<span class="Card-time">
an hour ago
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/15/i-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="Advice: I dropped out of a group vacation—do I still have to pay for the hotel?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/15/i-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html" target="">
Advice: I dropped out of a group vacation—do I still have to pay for the hotel?
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/aditi-shrikant-bio/">
Aditi Shrikant
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/06/15/we-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="We live in a 940-sq-ft trailer by the beach for $5,100/month: Take a look inside" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/06/15/we-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html" target="">
We live in a 940-sq-ft trailer by the beach for $5,100/month: Take a look inside
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/jaclyn-westlake/">
Jaclyn Westlake, Contributor
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/2024/05/15/ultimate-guide-to-becoming-master-communicator-public-speaker.html" tabindex="-1" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107414931-GettyImages-1348871022.jpg?v=1715718864&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107414931-GettyImages-1348871022.jpg?v=1715718864&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107414931-GettyImages-1348871022.jpg?v=1715718864&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107414931-GettyImages-1348871022.jpg?v=1715718864&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="The ultimate guide to becoming a master communicator and public speaker" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107414931-GettyImages-1348871022.jpg?v=1715718864&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/2024/05/15/ultimate-guide-to-becoming-master-communicator-public-speaker.html" target="">
The ultimate guide to becoming a master communicator and public speaker
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/jenna-goudreau/">
CNBC Make It staff
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-23-5" data-test="twoColumnImageDense-5">
<section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-CNBCExplains-23">
<header class="SectionWrapper-header">
<span aria-hidden="true" class="SectionWrapper-decoration">
</span>
<h2 class="SectionWrapper-title">
<a href="https://www.cnbc.com/cnbc-explains/">
CNBC Explains
</a>
</h2>
</header>
<div class="SectionWrapper-content">
<div class="Layout-layout" data-test="Layout">
<div class="Column-imageDenseModRight" data-test="Column">
<div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card Card-cnbcvideo" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/video/2024/05/31/what-is-the-internet-of-bodies.html" tabindex="0" target="">
<div class="Card-imageContainer">
<div class="Card-rectangleMediaContainer Card-placeholder">
<div class="PlayButton-container" data-test="PlayButton">
<div class="PlayButton-base" data-type="play">
<span class="PlayButton-flyout">
watch now
</span>
<span class="icon-play-triangle PlayButton-icon">
</span>
</div>
</div>
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&w=1260&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="1260"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&w=820&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="820"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&w=884&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="884"/>
<source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&w=720&h=360&ffmt=webp&vtcrop=y" type="image/webp" width="720"/>
<img alt="What is the internet of bodies?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&w=884&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/video/2024/05/31/what-is-the-internet-of-bodies.html" target="">
What is the internet of bodies?
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/arjun-kharpal/">
Arjun Kharpal
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-imageDenseModLeft" data-test="Column">
<div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card Card-cnbcvideo" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/video/2024/05/28/how-the-world-got-into-315-trillion-of-debt.html" tabindex="0" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<div class="PlayButton-container" data-test="PlayButton">
<div class="PlayButton-base" data-type="play">
<span class="PlayButton-flyout">
watch now
</span>
<span class="icon-play-triangle PlayButton-icon">
</span>
</div>
</div>
<picture data-test="Picture">
<source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&w=600&h=630&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&w=380&h=410&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&w=412&h=442&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="How the world got into $315 trillion of debt" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&w=412&h=442&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/video/2024/05/28/how-the-world-got-into-315-trillion-of-debt.html" target="">
How the world got into $315 trillion of debt
</a>
</div>
</div>
</div>
<div class="Card-cardFooter">
<span class="Card-byline">
<a href="https://www.cnbc.com/nessa-anwar-profile---cnbc/">
Nessa Anwar
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Layout-layout" data-test="Layout">
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/video/2024/03/28/evtols-how-flying-cars-are-becoming-reality.html" tabindex="0" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<div class="PlayButton-container" data-test="PlayButton">
<div class="PlayButton-base" data-type="play">
<span class="PlayButton-flyout">
watch now
</span>
<span class="icon-play-triangle PlayButton-icon">
</span>
</div>
</div>
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="eVTOLS: Are flying cars finally becoming reality?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/video/2024/03/28/evtols-how-flying-cars-are-becoming-reality.html" target="">
eVTOLS: Are flying cars finally becoming reality?
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/arjun-kharpal/">
Arjun Kharpal
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/video/2024/02/29/how-chinas-property-bubble-burst.html" tabindex="0" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<div class="PlayButton-container" data-test="PlayButton">
<div class="PlayButton-base" data-type="play">
<span class="PlayButton-flyout">
watch now
</span>
<span class="icon-play-triangle PlayButton-icon">
</span>
</div>
</div>
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="How China's property bubble burst" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/video/2024/02/29/how-chinas-property-bubble-burst.html" target="">
How China's property bubble burst
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/gaelle-legrand/">
Gaelle Legrand
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="Column-threeUpUltraDense" data-test="Column">
<div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card">
<div class="Card-mediaContainer">
<a href="https://www.cnbc.com/video/2024/01/15/what-is-the-world-economic-forum.html" tabindex="0" target="">
<div class="Card-imageContainer">
<div class="Card-squareMediaContainer Card-placeholder">
<div class="PlayButton-container" data-test="PlayButton">
<div class="PlayButton-base" data-type="play">
<span class="PlayButton-flyout">
watch now
</span>
<span class="icon-play-triangle PlayButton-icon">
</span>
</div>
</div>
<picture data-test="Picture">
<source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581&w=600&h=300&ffmt=webp&vtcrop=y" type="image/webp" width="600"/>
<source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581&w=380&h=190&ffmt=webp&vtcrop=y" type="image/webp" width="380"/>
<source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581&w=412&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="412"/>
<source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581&w=206&h=206&ffmt=webp&vtcrop=y" type="image/webp" width="206"/>
<img alt="What is the World Economic Forum?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581&w=412&h=206&vtcrop=y"/>
</picture>
</div>
</div>
</a>
</div>
<div class="Card-textContent">
<div class="Card-titleAndFooter">
<div>
<div class="Card-titleContainer">
<div>
<a class="Card-title" href="https://www.cnbc.com/video/2024/01/15/what-is-the-world-economic-forum.html" target="">
What is the World Economic Forum?
</a>
</div>
</div>
</div>
<div class="Card-threeUpCardFooterStyle">
<span class="Card-threeUpBylineStyle">
<a href="https://www.cnbc.com/gaelle-legrand/">
Gaelle Legrand
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle">
<div class="SidebarArticle-sticky" style="top:70px">
<div style="margin-top:0px">
</div>
</div>
</div>
</div>
<div class="PageBuilder-containerFluidWidths PageBuilder-pageRow">
<div class="PageBuilder-col-12 PageBuilder-col">
<div class="lazyload-placeholder" style="height:100%">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="MobileAdhesion-container" data-module="mps-slot" id="MobileAdhesion-Homepage">
</div>
<footer class="CNBCFooter-footer" data-analytics="HomePageInternational-GlobalFooter" data-mini-video-player-dont-scroll-beyond-here="true" data-test="GlobalFooter" id="GlobalFooter">
<div class="CNBCFooter-wrapper">
<div>
<a class="CNBCFooter-logo" href="//www.cnbc.com">
<img alt="CNBC logo" class="CNBCFooter-logoImg" src="https://static-redesign.cnbcfm.com/dist/7821ea3cb72f88388591.svg"/>
</a>
</div>
<ul class="CNBCFooter-social">
<li class="CNBCFooter-socialItem">
<a aria-label="facebook" class="icon-social_facebook" href="https://www.facebook.com/cnbcinternational/" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="twitter" class="icon-social_twitter" href="https://www.twitter.com/cnbci?lang=en/" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="linkedin" class="icon-social_linkedin" href="https://www.linkedin.com/showcase/cnbc-international/" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="instagram" class="icon-social_instagram" href="https://www.instagram.com/cnbcinternational/?hl=en/" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="youtube" class="icon-social_youtube" href="https://www.youtube.com/user/CNBCInternational/" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="apple_news" class="icon-social_apple_news" href="https://apple.news/T3OtoXcxtRkuHRkM7SpFP_Q" target="_blank">
</a>
</li>
<li class="CNBCFooter-socialItem">
<a aria-label="rss" class="icon-social_rss" href="/rss-feeds/" target="_blank">
</a>
</li>
</ul>
<div class="CNBCFooter-border">
</div>
<ul class="CNBCFooter-list">
<li class="CNBCFooter-listItem">
<a href="/application/pro/?__source=pro|globalfooter">
Subscribe to CNBC PRO
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/investingclub/subscribe?__source=investingclub|globalfooter">
Subscribe to Investing Club
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/cnbc-reprints/">
Licensing & Reprints
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://www.cnbccouncils.com/" target="_blank">
CNBC Councils
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://corporate.comcast.com/values/integrity" target="_blank">
Supply Chain Values
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://www.peacocktv.com/?cid=20200101evergreensymdisp009&utm_source=cnbc&utm_medium=symphony_editorial_brandawareness_footerlink&utm_campaign=20200101evergreen&utm_term=na&utm_content=na_na/" target="_blank">
CNBC on Peacock
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://cnbcrsh.qualtrics.com/jfe/form/SV_dgRx5X1nYC0YjNI?Origin=cnbc" target="_blank">
Join the CNBC Panel
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/digital-products/">
Digital Products
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/cnbc-news-releases/">
News Releases
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/closed-captioning/">
Closed Captioning
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/corrections/">
Corrections
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/about-cnbc-international/">
About CNBC
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/cnbc-internship-program/">
Internships
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/site-map/">
Site Map
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://www.nbcuniversal.com/privacy/cookies#accordionheader2" target="_blank">
Ad Choices
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="/cnbc-careers-and-employment/">
Careers
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://help.cnbc.com/" target="_blank">
Help
</a>
</li>
<li class="CNBCFooter-listItem">
<a href="https://help.cnbc.com/contact/" target="_blank">
Contact
</a>
</li>
</ul>
<ul class="CNBCFooter-section">
<li class="CNBCFooter-sectionItem">
<h4 class="CNBCFooter-sectionTitle">
News Tips
</h4>
<p class="CNBCFooter-sectionText">
Got a confidential news tip? We want to hear from you.
</p>
<a class="CNBCFooter-sectionLink" href="/news-tips/">
Get In Touch
</a>
</li>
<li class="CNBCFooter-sectionItem">
<h4 class="CNBCFooter-sectionTitle">
<span class="icon-newsletter CNBCFooter-sectionIcon">
</span>
CNBC Newsletters
</h4>
<p class="CNBCFooter-sectionText">
Sign up for free newsletters and get more CNBC delivered to your inbox
</p>
<a class="CNBCFooter-sectionLink" href="/sign-up-for-cnbc-newsletters/">
Sign Up Now
</a>
<p class="CNBCFooter-sectionSubText">
Get this delivered to your inbox, and more info about our products and services.
</p>
</li>
<li class="CNBCFooter-sectionItem">
<h4 class="CNBCFooter-sectionTitle">
Advertise With Us
</h4>
<a class="CNBCFooter-sectionLink" href="https://together.nbcuni.com/advertise/?utm_source=cnbc&utm_medium=referral&utm_campaign=property_ad_pages" target="_blank">
Please Contact Us
</a>
</li>
</ul>
<ul class="CNBCFooter-legal">
<li class="CNBCFooter-legalItem">
<a href="https://www.nbcuniversal.com/privacy?intake=CNBC" target="_blank">
Privacy Policy
</a>
</li>
<li class="CNBCFooter-legalItem">
<img alt="California Consumer Privacy Act (CCPA) Opt-Out Icon" class="CNBCFooter-legalIcon undefined" src="https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg"/>
<a class="ot-sdk-show-settings undefined" rel="noopener noreferrer" target="_blank">
</a>
</li>
<li class="CNBCFooter-legalItem">
<a href="https://www.nbcuniversal.com/privacy/california-consumer-privacy-act?intake=CNBC" target="_blank">
CA Notice
</a>
</li>
<li class="CNBCFooter-legalItem">
<a href="https://www.nbcuniversal.com/terms" target="_blank">
Terms of Service
</a>
</li>
</ul>
<p class="CNBCFooter-info">
©
<!-- -->
2024
<!-- -->
CNBC LLC. All Rights Reserved.
<a href="https://www.nbcuniversal.com" target="_blank">
A Division of NBCUniversal
</a>
</p>
<p class="CNBCFooter-reutersInfo">
Data is a real-time snapshot *Data is delayed at least 15 minutes.
Global Business and Financial News, Stock Quotes, and Market Data
and Analysis.
</p>
<a class="CNBCFooter-reutersLink" href="/market-data-terms-of-service/">
Market Data Terms of Use and Disclaimers
</a>
<p class="CNBCFooter-reutersInfo">
Data also provided by
<a href="/market-data-terms-of-service/">
<img alt="Reuters logo" class="CNBCFooter-reutersLogo" src="https://static-redesign.cnbcfm.com/dist/09c161b9810767a7849e.svg"/>
</a>
</p>
</div>
</footer>
</div>
<div class="UniversalVideoPlayer-videoContainer paused" style="top:-3000px;bottom:;left:-3000px;transform:;transform-origin:;transition:;position:;transition-property:;opacity:">
</div>
<div class="App-proContentRecommendation">
</div>
</div>
</div>
<script charset="UTF-8">
window.__s_data={"routing":{"locationBeforeTransitions":null},"navStatus":{"pageType":"page","articleTitle":"","hasNewsAlert":false,"hasLiveAlert":false,"hasFiveThings":false,"hasLivePlayer":false,"hasCountDownClock":false,"hasPartnerExp":false,"articleSettings":{},"megaMenuToggleFlag":false,"isExpanded":false,"isIntraSiteLink":false,"hasLiveAlertAd":true,"HFS":null},"dataByMarketMover":{},"videoDataWithPosition":{"top":"-3000px","left":"-3000px","data":{},"videoAttributes":{}},"videoIsPreloader":{"isPreloader":true,"autoPlay":false,"firstVideoClickedOnPage":true},"videoPlayerInfo":{"position":"0","layout":"HIDDEN","playback":false,"adPlayback":false,"isMuted":true},"videoEventsInfo":{"position":0},"placeholderInfo":{"placeholderState":"INITIAL","replayVideo":false,"trackedIDs":[]},"videoRecommendationInfo":{"videoRecommendation":false},"videoEndCardInfo":{},"continuousPlayInfo":{"continuousToNextVideo":false,"playingIdx":0},"playBackInitiativeInfo":{"playBackInitiative":"Manual","isPlaylist":false},"dataByQuote":{},"metaTags":{"articleData":{},"pageData":{}},"dataByGDSMarketTable":{},"page":{"page":{"layout":[{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"marketsBanner","source":"100000014","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"marketCount":10,"securityCount":10,"articleCount":1},"data":{"markets":[{"id":10000528,"tabLabel":"EUR","securities":[{"id":3032894,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.GDAXI","symbol":".GDAXI","__typename":"security"},{"id":3032893,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTSE","symbol":".FTSE","__typename":"security"},{"id":3032327,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FCHI","symbol":".FCHI","__typename":"security"},{"id":100004804,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTMIB","symbol":".FTMIB","__typename":"security"},{"id":100013666,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.STOXX","symbol":".STOXX","__typename":"security"}],"articles":[{"id":107429026,"headline":"Europe stocks close lower to cap off losing week; France's CAC 40 down 2.7%","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Feurope-stocks-head-for-higher-open-to-round-off-choppy-week.html","__typename":"article"}],"__typename":"market"},{"id":10000527,"tabLabel":"Asia","securities":[{"id":100483919,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.AXJO","symbol":".AXJO","__typename":"security"},{"id":3032897,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.N225","symbol":".N225","__typename":"security"},{"id":100004764,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.KS11","symbol":".KS11","__typename":"security"},{"id":3032896,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.HSI","symbol":".HSI","__typename":"security"},{"id":3032899,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SSEC","symbol":".SSEC","__typename":"security"}],"articles":[{"id":107428968,"headline":"Japan markets reverse losses after BOJ decision; other markets mixed","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fasia-markets.html","__typename":"article"}],"__typename":"market"},{"id":100010799,"tabLabel":"Asia FX","securities":[{"id":100275528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJPY=","symbol":"JPY=","__typename":"security"},{"id":100286664,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FAUD=","symbol":"AUD=","__typename":"security"},{"id":100323588,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FSGD=","symbol":"SGD=","__typename":"security"},{"id":100347859,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURJPY=","symbol":"EURJPY=","__typename":"security"},{"id":100010262,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FNZD=","symbol":"NZD=","__typename":"security"}],"articles":[{"id":107428987,"headline":"Election concerns in France give euro worst week in two months ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fyen-on-guard-ahead-of-boj-euro-stutters-with-weekly-loss-in-sight.html","__typename":"article"}],"__typename":"market"},{"id":100010802,"tabLabel":"EUR FX","securities":[{"id":3032901,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEUR=","symbol":"EUR=","__typename":"security"},{"id":3032903,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FGBP=","symbol":"GBP=","__typename":"security"},{"id":100013604,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURGBP=","symbol":"EURGBP=","__typename":"security"},{"id":3032904,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FCHF=","symbol":"CHF=","__typename":"security"},{"id":104887499,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CB=","symbol":"BTC.CB=","__typename":"security"}],"articles":[{"id":107428987,"headline":"Election concerns in France give euro worst week in two months ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fyen-on-guard-ahead-of-boj-euro-stutters-with-weekly-loss-in-sight.html","__typename":"article"}],"__typename":"market"},{"id":17689937,"tabLabel":"Pre-Mkt","securities":[{"id":100007270,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@DJ.1","symbol":"@DJ.1","__typename":"security"},{"id":100007266,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SP.1","symbol":"@SP.1","__typename":"security"},{"id":100007591,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@ND.1","symbol":"@ND.1","__typename":"security"},{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"}],"articles":[{"id":107428914,"headline":"Nasdaq Composite ekes out fifth straight record close, notches a 3% weekly gain","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fstock-market-today-live-updates.html","__typename":"article"}],"__typename":"market"},{"id":100003242,"tabLabel":"US","securities":[{"id":3031924,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.DJI","symbol":".DJI","__typename":"security"},{"id":100271106,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SPX","symbol":".SPX","__typename":"security"},{"id":3031956,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.IXIC","symbol":".IXIC","__typename":"security"},{"id":3032906,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.RUT","symbol":".RUT","__typename":"security"},{"id":3031964,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.VIX","symbol":".VIX","__typename":"security"}],"articles":[{"id":107428914,"headline":"Nasdaq Composite ekes out fifth straight record close, notches a 3% weekly gain","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fstock-market-today-live-updates.html","__typename":"article"}],"__typename":"market"},{"id":15839203,"tabLabel":"Bonds","securities":[{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"},{"id":100013705,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FDE10Y-DE","symbol":"DE10Y-DE","__typename":"security"},{"id":100014122,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJP10Y-JP","symbol":"JP10Y-JP","__typename":"security"},{"id":100013710,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUK10Y-GB","symbol":"UK10Y-GB","__typename":"security"},{"id":100014115,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FFR10Y-FR","symbol":"FR10Y-FR","__typename":"security"}],"articles":[{"id":107429058,"headline":"10-year Treasury yield slips again as traders weigh this week’s U.S. inflation data","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002F10-year-treasury-yields-slip-as-traders-digest-drop-in-wholesale-prices.html","__typename":"article"}],"__typename":"market"},{"id":10000728,"tabLabel":"Oil","securities":[{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":100007491,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@LCO.1","symbol":"@LCO.1","__typename":"security"},{"id":100007487,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@NG.1","symbol":"@NG.1","__typename":"security"},{"id":100007489,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@RB.1","symbol":"@RB.1","__typename":"security"},{"id":100014681,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HO.1","symbol":"@HO.1","__typename":"security"}],"articles":[{"id":107429112,"headline":"U.S. crude oil snaps three-week losing streak as forecasts point to tighter market","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fcrude-oil-prices-today.html","__typename":"article"}],"__typename":"market"},{"id":33057388,"tabLabel":"Gold","securities":[{"id":100007526,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@GC.1","symbol":"@GC.1","__typename":"security"},{"id":100007527,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SI.1","symbol":"@SI.1","__typename":"security"},{"id":100007528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HG.1","symbol":"@HG.1","__typename":"security"},{"id":100007529,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PL.1","symbol":"@PL.1","__typename":"security"},{"id":100010455,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PA.1","symbol":"@PA.1","__typename":"security"}],"articles":[{"id":107429004,"headline":"Gold set for first weekly gain in four on U.S. rate cut hopes ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fgold-eyes-first-weekly-gain-in-four-on-cooling-us-inflation.html","__typename":"article"}],"__typename":"market"},{"id":106826328,"tabLabel":"Crypto","securities":[{"id":106687112,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CM=","symbol":"BTC.CM=","__typename":"security"},{"id":106827114,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FETH.CM=","symbol":"ETH.CM=","__typename":"security"},{"id":101231759,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FXRP.CM=","symbol":"XRP.CM=","__typename":"security"},{"id":106826292,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FLTC.CM=","symbol":"LTC.CM=","__typename":"security"},{"id":106827116,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBCH.CM=","symbol":"BCH.CM=","__typename":"security"}],"articles":[],"__typename":"market"}],"__typename":"marketsBanner"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"adHomepageTopBanner","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"quickLinks","source":"106278806","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"title":"Quick Links"},"options":{},"data":{"name":"quickLinks","quickLinksData":[{"title":"U.S. futures","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fstock-market-today-live-updates.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fstock-market-today-live-updates.html","__typename":"webresource"},{"title":"U.S. Treasurys","url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","href":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","__typename":"webresource"},{"title":"How to invest in India","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fhow-to-invest-in-india-the-worlds-fastest-growing-major-economy.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fhow-to-invest-in-india-the-worlds-fastest-growing-major-economy.html","__typename":"webresource"},{"title":"'Taylor Swift effect' on BOE?","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Ftaylor-swift-london-eras-tour-delay-bank-of-england-rate-cut.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Ftaylor-swift-london-eras-tour-delay-bank-of-england-rate-cut.html","__typename":"webresource"},{"title":"Russia's peace conditions","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Frussias-putin-outlines-conditions-for-peace-talks-with-ukraine.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Frussias-putin-outlines-conditions-for-peace-talks-with-ukraine.html","__typename":"webresource"},{"title":"Three-day hybrid work week","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fthree-day-hybrid-work-week-is-success-study-published-in-nature-says.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fthree-day-hybrid-work-week-is-success-study-published-in-nature-says.html","__typename":"webresource"}],"__typename":"quickLinks"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"legacyPlayerContainer","source":"106715758","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":5},"data":{"id":106715758,"assets":[{"id":107428981,"linkHeadline":"Japan did it first. Chinese stocks with some of the biggest global upside","shorterHeadline":"Japan did it first. Chinese stocks with some of the biggest global upside","slug":"Japan did it first. Chinese stocks with some of the biggest global upside","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fjapan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html","datePublished":"2024-06-16T13:10:31+0000","type":"cnbcnewsstory","promoImage":{"id":105742111,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105742111-1550232920554rtx6mua1.jpg?v=1588207528","__typename":"infographic"},"title":"Japan did it first. Chinese stocks with some of the biggest global upside","premium":true,"summary":"If the international expansion of Japanese companies is any guide, Chinese companies still have significant potential left in the global market.","section":{"id":107265423,"title":"China Investing","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fchina-investing\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107424778,"linkHeadline":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","shorterHeadline":"Investors may be missing these commercial real estate opportunities","slug":"CRE maturity wall","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Finvestors-may-be-missing-these-commercial-real-estate-opportunities.html","datePublished":"2024-06-16T13:04:39+0000","type":"cnbcnewsstory","promoImage":{"id":106880081,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555","__typename":"infographic"},"title":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","premium":true,"summary":"Investors are avoiding bank stocks with high concentrations of commercial real estate. But they may also miss banks that have other risky loans.","section":{"id":106605954,"title":"Investing trends","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Finvesting-trends\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107429331,"linkHeadline":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","shorterHeadline":"What Warren Buffett said about GameStop mania then, as frenzy returns in 2024","slug":"WB GME Li250614 EC","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwhat-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html","datePublished":"2024-06-16T13:00:59+0000","type":"cnbcnewsstory","promoImage":{"id":107427914,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121","__typename":"infographic"},"title":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","premium":true,"summary":"The 'Oracle of Omaha' likened the stock market to a gambling parlor for retail investors, encouraged by Wall Street's investment banks and brokerages.","section":{"id":107308554,"title":"Invest like Buffett","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Finvest-like-buffett\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107429534,"linkHeadline":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","shorterHeadline":"Why so many investors find it hard to embrace the stock market run to records","slug":"santoli 15-jun-24","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","datePublished":"2024-06-15T12:01:41+0000","type":"cnbcnewsstory","promoImage":{"id":107342025,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196","__typename":"infographic"},"title":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","premium":false,"summary":"The S&P 500 has made an all-time high on nearly thirty days this year, four of them this past week.","section":{"id":106842200,"title":"Pro Columnists","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fcolumnists\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107429301,"linkHeadline":"These stocks are an AI model's biggest upside picks after a week of mild economic data","shorterHeadline":"These stocks are AI model's big upside picks after a week of mild economic data","slug":"pound pro ifiai follow 240614 ec ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthese-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html","datePublished":"2024-06-15T11:59:20+0000","type":"cnbcnewsstory","promoImage":{"id":107374542,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939","__typename":"infographic"},"title":"These stocks are an AI model's biggest upside picks after a week of mild economic data","premium":true,"summary":"The iFi AI model sees room for significant rallies in several stocks after this week delivered surprising updates on the U.S. economy. ","section":{"id":106605948,"title":"Pro Stock Picks","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fstock-picks\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"}],"__typename":"legacyPlayerContainer"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"featuredNewsHero","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":3,"maintainOffset":true,"includePackagedItems":true,"offset":0},"data":{"id":100727362,"assets":[{"id":107429471,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"About 80% of bitcoin ETF buying is coming from self-directed investors, according to BlackRock's Samara Cohen.","brand":"cnbc","title":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","headline":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-06-16T13:19:14+0000","creatorOverwrite":null,"author":[{"name":"Tanaya Macheel","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftanaya-macheel\u002F","__typename":"creator"}],"section":{"eyebrow":"Crypto World","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcryptoworld\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadvisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html","promoImage":{"id":107351685,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107351685-1703619073213-gettyimages-1827512590-raa-bitcoinp231206_np3p1.jpeg?v=1718398220","__typename":"infographic"},"dateLastPublishedSixHr":"an hour ago","packageItems":[{"id":107429451,"type":"cnbcnewsstory","brand":"cnbc","premium":false,"contentClassification":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Favoid-concentration-risk-with-this-value-play-etf-expert-suggests.html","dateLastPublished":"2024-06-15T15:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"title":"This ETF strategy may help investors skirt market concentration risk","headline":"This ETF uses a profitability overlay to deliver durable returns. Here's how it works","eyebrow":"This ETF strategy may help investors skirt market concentration risk","__typename":"cnbcnewsstory"}],"__typename":"cnbcnewsstory"},{"id":107429084,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"Russian President Vladimir Putin set out the requirements for Moscow to start peace talks with Ukraine, more than two years after its full-fledged invasion.","brand":"cnbc","title":"Russia's Putin sets out conditions for peace talks with Ukraine","headline":"Russia's Putin sets out conditions for peace talks with Ukraine","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-06-14T15:16:53+0000","creatorOverwrite":null,"author":[{"name":"Ruxandra Iordache","url":"https:\u002F\u002Fwww.cnbc.com\u002Fruxandra-iordache\u002F","__typename":"creator"}],"section":{"eyebrow":"Politics","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Frussias-putin-outlines-conditions-for-peace-talks-with-ukraine.html","promoImage":{"id":107429144,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429144-1718367447993-gettyimages-2156779474-RUS_Russian_President_Vladimir_Putin_Meets_Scietists_At_A_Plant_In_Dubna.jpeg?v=1718367545","__typename":"infographic"},"dateLastPublishedSixHr":"","packageItems":[],"__typename":"cnbcnewsstory"},{"id":107429534,"type":"cnbcnewsstory","premium":false,"contentClassification":["registeredOnly"],"description":"The S&P 500 has made an all-time high on nearly thirty days this year, four of them this past week.","brand":"cnbc","title":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","headline":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-06-15T12:02:12+0000","creatorOverwrite":null,"author":[{"name":"Michael Santoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-santoli\u002F","__typename":"creator"}],"section":{"eyebrow":"Pro Columnists","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fcolumnists\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","promoImage":{"id":107342025,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196","__typename":"infographic"},"dateLastPublishedSixHr":"","packageItems":[],"__typename":"cnbcnewsstory"}],"__typename":"featuredNewsHero"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"latestNews","source":"104524607","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"id":104524607,"title":"Latest News","latestNewsClass":true,"isIntlHomepage":true},"options":{"pageSize":30,"include":["cnbcnewsstory","event","partnerstory","sponsored","blogpost","wirestory","pressrelease","slideshow","cnbcvideo","live_story","webresource"]},"data":{"id":104524607,"type":"franchise","brand":"cnbc","url":"https:\u002F\u002Fwww.cnbc.com\u002Flatest\u002F","title":"Latest News","description":"Read the latest business headlines and today's market news coverage from CNBC.","name":"latestNews","assets":[{"id":107429471,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadvisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html","title":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","headline":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","shorterHeadline":"Advisors ‘wary’ of bitcoin ETFs are on an adoption journey, says BlackRock exec","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fcryptoworld\u002F","title":"Crypto World","__typename":"franchise"},"datePublished":"2024-06-16T13:19:14+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Fadvisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429190,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadvice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html","title":"Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’","headline":"Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’","shorterHeadline":"Steve Jobs built Apple using a simple piece of advice from his dad","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fpower-players\u002F","title":"Power Players","__typename":"franchise"},"datePublished":"2024-06-16T13:15:01+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Fadvice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107428981,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fjapan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html","title":"Japan did it first. Chinese stocks with some of the biggest global upside","headline":"Japan did it first. Chinese stocks with some of the biggest global upside","shorterHeadline":"Japan did it first. Chinese stocks with some of the biggest global upside","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fchina-investing\u002F","title":"China Investing","__typename":"franchise"},"datePublished":"2024-06-16T13:10:31+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Fjapan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107428884,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002F3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html","title":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","headline":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","shorterHeadline":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fwork\u002F","title":"Work","__typename":"franchise"},"datePublished":"2024-06-16T13:10:01+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002F3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107424778,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Finvestors-may-be-missing-these-commercial-real-estate-opportunities.html","title":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","headline":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","shorterHeadline":"Investors may be missing these commercial real estate opportunities","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Finvesting-trends\u002F","title":"Investing trends","__typename":"franchise"},"datePublished":"2024-06-16T13:04:39+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Finvestors-may-be-missing-these-commercial-real-estate-opportunities.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107429331,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwhat-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html","title":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","headline":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","shorterHeadline":"What Warren Buffett said about GameStop mania then, as frenzy returns in 2024","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Finvest-like-buffett\u002F","title":"Invest like Buffett","__typename":"franchise"},"datePublished":"2024-06-16T13:00:59+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Fwhat-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107417806,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwhy-student-loan-forgiveness-sparks-anger.html","title":"Why student loan forgiveness sparks anger: A philosopher, attorney general, sociologist and religious thought expert weigh in ","headline":"Why student loan forgiveness sparks anger: Experts including a philosopher, attorney general weigh in ","shorterHeadline":"Why the topic of student loan forgiveness sparks anger, according to experts","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2024-06-16T13:00:01+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F16\u002Fwhy-student-loan-forgiveness-sparks-anger.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429437,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fi-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html","title":"I dropped out of a group vacation—do I still have to pay for the hotel?: Tips from travel experts","headline":"I dropped out of a group vacation—do I still have to pay for the hotel?: Tips from travel experts","shorterHeadline":"Advice: I dropped out of a group vacation—do I still have to pay for the hotel?","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fpsychology-relationships\u002F","title":"Psychology and Relationships","__typename":"franchise"},"datePublished":"2024-06-15T16:15:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fi-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107427925,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwe-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html","title":"This couple lives in a vintage 940-square-foot trailer by the beach for $5,100 a month: It's 'the California dream'","headline":"We live 'the California dream' in a 940-sq-ft trailer by the beach for $5,100 a month","shorterHeadline":"We live in a 940-sq-ft trailer by the beach for $5,100\u002Fmonth: Take a look inside","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Funlocked\u002F","title":"Unlocked","__typename":"franchise"},"datePublished":"2024-06-15T14:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fwe-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429363,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-4-things-were-most-focused-on-in-the-stock-market-this-week.html","title":"The 4 key things we're watching in the stock market this holiday-shortened week","headline":"The 4 key things we're watching in the stock market this holiday-shortened week","shorterHeadline":"The 4 key things we're watching in the stock market this holiday-shortened week","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fanalysis\u002F","title":"Analysis","__typename":"franchise"},"datePublished":"2024-06-15T14:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fthe-4-things-were-most-focused-on-in-the-stock-market-this-week.html","premium":false,"contentClassification":["subscriberAlert","investingClub"],"__typename":"cnbcnewsstory"},{"id":107429222,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002F2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html","title":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","headline":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","shorterHeadline":"2 unusual tips for getting the most nutrients from immunity-boosting foods","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fhealth-and-wellness\u002F","title":"Health and Wellness","__typename":"franchise"},"datePublished":"2024-06-15T14:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002F2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429452,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fnvidia-ceo-one-of-my-most-profound-learnings-came-from-a-gardener.html","title":"Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener—how it made me successful","headline":"Nvidia CEO Jensen Huang: One of the most 'profound learnings in my life' came from a gardener","shorterHeadline":"Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fpower-players\u002F","title":"Power Players","__typename":"franchise"},"datePublished":"2024-06-15T13:45:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fnvidia-ceo-one-of-my-most-profound-learnings-came-from-a-gardener.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429322,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwhole-foods-co-founder-john-mackey-jeff-bezos-is-a-brilliant-man.html","title":"Jeff Bezos is a 'brilliant man' for what he's done at Whole Foods, says ex-CEO: 'He thinks really long term'","headline":"Ex-Whole Foods CEO: Jeff Bezos is a 'brilliant man' for what he's done at the grocery chain","shorterHeadline":"Jeff Bezos is a 'brilliant man' for what he's done at Whole Foods, says ex-CEO","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fpower-players\u002F","title":"Power Players","__typename":"franchise"},"datePublished":"2024-06-15T13:15:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fwhole-foods-co-founder-john-mackey-jeff-bezos-is-a-brilliant-man.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107428776,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fas-social-security-faces-fund-depletion-plans-for-reform-commission-spur-debate.html","title":"As Social Security faces looming fund depletion, there's fierce debate over whether a commission can help","headline":"As Social Security faces looming fund depletion, there's debate over whether a commission can help","shorterHeadline":"As Social Security faces fund depletion, there's debate over whether a commission can help","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2024-06-15T13:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fas-social-security-faces-fund-depletion-plans-for-reform-commission-spur-debate.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107428165,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fsalary-a-single-person-needs-to-make-ends-meet-in-every-us-state.html","title":"The salary a single person needs to make ends meet in every U.S. state","headline":"The salary a single person needs to make ends meet in every U.S. state","shorterHeadline":"The salary a single person needs to make ends meet in every U.S. state","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fspend\u002F","title":"Spend","__typename":"franchise"},"datePublished":"2024-06-15T13:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fsalary-a-single-person-needs-to-make-ends-meet-in-every-us-state.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429534,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","title":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","headline":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","shorterHeadline":"Why so many investors find it hard to embrace the stock market run to records","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fcolumnists\u002F","title":"Pro Columnists","__typename":"franchise"},"datePublished":"2024-06-15T12:01:41+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","premium":false,"contentClassification":["registeredOnly"],"__typename":"cnbcnewsstory"},{"id":107422850,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwhy-chinese-ev-tariffs-may-not-work.html","title":"Why tariffs on Chinese EVs may not work","headline":"Why tariffs on Chinese EVs may not work","shorterHeadline":"Why tariffs on Chinese EVs may not work","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fautos\u002F","title":"Autos","__typename":"franchise"},"datePublished":"2024-06-15T12:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fwhy-chinese-ev-tariffs-may-not-work.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429301,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthese-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html","title":"These stocks are an AI model's biggest upside picks after a week of mild economic data","headline":"These stocks are an AI model's biggest upside picks after a week of mild economic data","shorterHeadline":"These stocks are AI model's big upside picks after a week of mild economic data","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fstock-picks\u002F","title":"Pro Stock Picks","__typename":"franchise"},"datePublished":"2024-06-15T11:59:20+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fthese-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107429355,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fearly-ai-bets-are-helping-a-global-tech-fund-outperform-a-second-year.html","title":"Early bets on AI have helped this global tech fund outperform for a second year","headline":"Early bets on AI have helped this global tech fund outperform for a second year","shorterHeadline":"Early bets on AI have helped this global tech fund outperform for a second year","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fstock-picks\u002F","title":"Pro Stock Picks","__typename":"franchise"},"datePublished":"2024-06-15T11:57:39+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fearly-ai-bets-are-helping-a-global-tech-fund-outperform-a-second-year.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107426352,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fmorgan-stanley-likes-these-five-stocks-plus-this-nvidia-alternative.html","title":"These five stocks are primed for upside, including this alternative to Nvidia, Morgan Stanley says","headline":"These five stocks are primed for upside, including this alternative to Nvidia, Morgan Stanley says","shorterHeadline":"Never mind Nvidia. Buy these 5 names instead, Morgan Stanley says","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fanalyst-stock-picks\u002F","title":"Analyst Calls","__typename":"franchise"},"datePublished":"2024-06-15T11:49:17+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fmorgan-stanley-likes-these-five-stocks-plus-this-nvidia-alternative.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107427417,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fcandy-makers-cocoa-prices.html","title":"Cocoa prices are soaring. Candy makers will need to get creative","headline":"Cocoa prices are soaring. Candy makers will need to get creative","shorterHeadline":"Cocoa prices are soaring. Candy makers will need to get creative","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ffood-and-beverage\u002F","title":"Food & Beverage","__typename":"franchise"},"datePublished":"2024-06-15T11:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F15\u002Fcandy-makers-cocoa-prices.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429442,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fjim-cramer-says-its-time-to-take-some-profits-in-ai-stocks.html","title":"Jim Cramer says it's time to take some profits in AI stocks","headline":"Jim Cramer says it's time to take some profits in AI stocks","shorterHeadline":"Jim Cramer says it's time to take some profits in AI stocks","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmad-money\u002F","title":"Mad Money with Jim Cramer","__typename":"franchise"},"datePublished":"2024-06-14T23:06:21+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fjim-cramer-says-its-time-to-take-some-profits-in-ai-stocks.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429443,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fcramers-lightning-round-lets-stay-away-from-unity-software.html","title":"Cramer's Lightning Round: 'Let's stay away' from Unity Software","headline":"Cramer's Lightning Round: 'Let's stay away' from Unity Software","shorterHeadline":"Cramer's Lightning Round: 'Let's stay away' from Unity Software","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmad-money\u002F","title":"Mad Money with Jim Cramer","__typename":"franchise"},"datePublished":"2024-06-14T22:52:18+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fcramers-lightning-round-lets-stay-away-from-unity-software.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429441,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fcramers-week-ahead-earnings-from-lennar-and-kb-home.html","title":"Cramer's week ahead: A closer look at housing with Lennar and KB Home earnings","headline":"Cramer's week ahead: A closer look at housing with Lennar and KB Home earnings","shorterHeadline":"Cramer's week ahead: A closer look at housing with Lennar and KB Home earnings","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmad-money\u002F","title":"Mad Money with Jim Cramer","__typename":"franchise"},"datePublished":"2024-06-14T22:39:40+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fcramers-week-ahead-earnings-from-lennar-and-kb-home.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429378,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Findustries-where-workers-tend-to-have-higher-401k-balances.html","title":"Workers in certain industries tend to have higher 401(k) balances, Fidelity data shows","headline":"Workers in certain industries tend to have higher 401(k) balances, Fidelity data shows","shorterHeadline":"With 401(k) savings, workers in certain industries may have an advantage","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2024-06-14T19:31:57+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Findustries-where-workers-tend-to-have-higher-401k-balances.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429334,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fceos-at-trump-meeting-not-impressed.html","title":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","headline":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","shorterHeadline":"CEOs at Trump meeting say he was ‘meandering,’ ‘doesn't know what he's talking about’","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpolitics\u002F","title":"Politics","__typename":"franchise"},"datePublished":"2024-06-14T19:01:02+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fceos-at-trump-meeting-not-impressed.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429369,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fmortgage-backed-securities-are-loved-by-wall-street-for-their-attractive-yields-and-relative-value.html","title":"This sector is loved by Wall Street for its attractive yields and relative value","headline":"This sector is loved by Wall Street for its attractive yields and relative value","shorterHeadline":"This sector is loved by Wall Street for its attractive yields and relative value","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fincome-investing\u002F","title":"Income Investing","__typename":"franchise"},"datePublished":"2024-06-14T18:59:14+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fmortgage-backed-securities-are-loved-by-wall-street-for-their-attractive-yields-and-relative-value.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107429389,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fadobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html","title":"Adobe shares surge 15% for sharpest rally since 2020 ","headline":"Adobe shares surge 15% for sharpest rally since 2020 ","shorterHeadline":"Adobe shares surge 15% for sharpest rally since 2020 ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2024-06-14T18:54:07+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fadobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429202,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fgen-z-retirement-saving-younger-millennials-ira-investing.html","title":"Gen Z is harnessing 'one of the magical qualities of investing,' advisor says — how it helps them build wealth","headline":"Gen Z is harnessing 'one of the magical qualities of investing' to build wealth, advisor says","shorterHeadline":"Gen Z is harnessing 'one of the magical qualities of investing,' advisor says","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2024-06-14T18:52:38+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fgen-z-retirement-saving-younger-millennials-ira-investing.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107429381,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fthe-ai-trade-dominated-this-week-heres-how-were-responding-to-the-market-divergence.html","title":"The AI trade dominated this week — here's how we're responding to the market divergence","headline":"The AI trade dominated this week — here's how we're responding to the market divergence","shorterHeadline":"The AI trade dominated this week — how we're responding to the market divergence","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fhomestretch\u002F","title":"Homestretch","__typename":"franchise"},"datePublished":"2024-06-14T18:39:19+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2024\u002F06\u002F14\u002Fthe-ai-trade-dominated-this-week-heres-how-were-responding-to-the-market-divergence.html","premium":false,"contentClassification":["subscriberAlert","investingClub"],"__typename":"cnbcnewsstory"}],"__typename":"latestNews"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"3","editable":false,"modules":[{"name":"adBoxInline","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"customStyles":"hpAdContainer"},"options":{},"data":{"__typename":"asset"},"__typename":"module"},{"name":"eventSignUpHP","source":null,"canChangeLayout":null,"canChangeSource":null,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"},{"name":"quoteFinder","source":null,"canChangeLayout":null,"canChangeSource":null,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"},{"name":"marketMoversPlus","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"},{"span":"6","editable":false,"modules":[{"name":"riverPlus","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":20,"maintainOffset":true,"offset":3},"data":{"brand":"cnbc","assets":[{"id":107426314,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fhow-to-invest-in-india-the-worlds-fastest-growing-major-economy.html","native":false,"datePublished":"2024-06-13T15:03:55+0000","coverageEndDate":null,"contentClassification":["registeredOnly"],"title":"How to invest in India, the world's fastest-growing major economy","headline":"How to invest in India, the world's fastest-growing major economy","premium":false,"section":{"eyebrow":"Markets","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarkets\u002F","subType":"marketsection","__typename":"franchise"},"author":[{"id":104385528,"name":"Lucy Handley","url":"https:\u002F\u002Fwww.cnbc.com\u002Flucy-handley\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107426477,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107426477-1718030441230-gettyimages-552552031-ee7549df-b3d1-4db3-bcc8-60e51a6293f1.jpeg?v=1718030561","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429331,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwhat-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html","native":false,"datePublished":"2024-06-16T13:00:59+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","headline":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","premium":true,"section":{"eyebrow":"Invest like Buffett","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Finvest-like-buffett\u002F","subType":"section","__typename":"franchise"},"author":[{"id":105609193,"name":"Yun Li","url":"https:\u002F\u002Fwww.cnbc.com\u002Fyun-li\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"an hour ago","promoImage":{"id":107427914,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429156,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwall-street-analysts-pick-these-3-dividend-stocks-for-enhanced-returns.html","native":false,"datePublished":"2024-06-16T13:23:26+0000","coverageEndDate":null,"contentClassification":["commentary"],"title":"Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns ","headline":"Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns ","premium":false,"section":{"eyebrow":"Investing","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Finvesting\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"37 min ago","promoImage":{"id":107373935,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107373935-1707951625966-gettyimages-1999041246-js2_9784_hw23tsvp.jpeg?v=1707951720","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"type":"InsertNativeUnit"},{"id":107429547,"brand":"cnbc","type":"wirestory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadidas-investigates-bribery-allegations-in-china-ft-says.html","native":false,"datePublished":"2024-06-16T13:26:47+0000","coverageEndDate":null,"contentClassification":[],"title":"Adidas investigates bribery allegations in China, FT says","headline":"Adidas reportedly investigates bribery allegations in China","premium":false,"section":{"eyebrow":"Retail","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fretail\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"39 min ago","promoImage":{"id":107367403,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107367403-1706741941142-gettyimages-1975971831-img_6803_6ktxienr.jpeg?v=1718543776","__typename":"infographic"},"__typename":"wirestory"},{"id":107429334,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fceos-at-trump-meeting-not-impressed.html","native":false,"datePublished":"2024-06-14T19:01:02+0000","coverageEndDate":null,"contentClassification":[],"title":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","headline":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[{"id":104686105,"name":"Christina Wilkie","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchristina-wilkie\u002F","__typename":"creator"},{"id":105105859,"name":"Brian Schwartz","url":"https:\u002F\u002Fwww.cnbc.com\u002Fbrian-schwartz\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107425673,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107425673-1717761910073-gettyimages-2156408759-js2_9875_laleajci.jpeg?v=1717761961","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107427417,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fcandy-makers-cocoa-prices.html","native":false,"datePublished":"2024-06-15T11:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"Cocoa prices are soaring. Candy makers will need to get creative","headline":"Cocoa prices are soaring. Candy makers will need to get creative","premium":false,"section":{"eyebrow":"Food & Beverage","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ffood-and-beverage\u002F","subType":"section","__typename":"franchise"},"author":[{"id":105251971,"name":"Amelia Lucas","url":"https:\u002F\u002Fwww.cnbc.com\u002Famelia-lucas\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107429205,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429205-1718372908360-gettyimages-2105322411-COLOMBIA_CACAO_PRODUCTION.jpeg?v=1718372960","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107428981,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fjapan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html","native":false,"datePublished":"2024-06-16T13:10:31+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"Japan did it first. Chinese stocks with some of the biggest global upside","headline":"Japan did it first. Chinese stocks with some of the biggest global upside","premium":true,"section":{"eyebrow":"China Investing","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fchina-investing\u002F","subType":"section","__typename":"franchise"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"an hour ago","promoImage":{"id":105742111,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105742111-1550232920554rtx6mua1.jpg?v=1588207528","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107422850,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwhy-chinese-ev-tariffs-may-not-work.html","native":false,"datePublished":"2024-06-15T12:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"Why tariffs on Chinese EVs may not work","headline":"Why tariffs on Chinese EVs may not work","premium":false,"section":{"eyebrow":"Autos","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fautos\u002F","subType":"section","__typename":"franchise"},"author":[{"id":101069442,"name":"Robert Ferris","url":"https:\u002F\u002Fwww.cnbc.com\u002Frobert-ferris\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107411119,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107411119-1715023706548-gettyimages-2151144539-cfoto-newenerg240506_npFgr.jpeg?v=1717435908","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107428989,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fpictures-india-records-longest-heatwave-delhi-faces-water-crisis.html","native":false,"datePublished":"2024-06-14T06:58:40+0000","coverageEndDate":null,"contentClassification":[],"title":"In pictures: India records 'longest' heatwave, Delhi faces water crisis","headline":"In pictures: India records 'longest' heatwave, Delhi faces water crisis","premium":false,"section":{"eyebrow":"Asia-Pacific News","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fasia-news\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106915801,"name":"Charmaine Jacob","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcharmaine-jacob\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107429012,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429012-1718340279225-gettyimages-2156728212-20240612_dli-sa-mn_watersupplychanakyapuri-14.jpeg?v=1718340300","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429542,"brand":"cnbc","type":"wirestory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fgaza-israeli-military-announces-tactical-pause-to-increase-aid-flow.html","native":false,"datePublished":"2024-06-16T06:27:04+0000","coverageEndDate":null,"contentClassification":[],"title":"Israeli military announces 'tactical pause' in attempt to increase flow of aid into hard-hit Gaza","headline":"Israeli military announces 'tactical pause' in attempt to increase flow of aid into hard-hit Gaza","premium":false,"section":{"eyebrow":"Wars and Military Conflicts","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fwars-and-military-conflicts\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":107429544,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429544-1718519130892-gettyimages-2156749136-AA_13062024_1726113.jpeg?v=1718519195","__typename":"infographic"},"__typename":"wirestory"},{"id":107428475,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fa-bunch-of-analysts-cut-price-targets-on-adobe-remy-cointreau-and-nice-shares-this-week-heres-why.html","native":false,"datePublished":"2024-06-13T23:58:58+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"A bunch of analysts cut price targets on these 3 stocks this week. Here's why","headline":"A bunch of analysts cut price targets on these 3 stocks this week. Here's why","premium":true,"section":{"eyebrow":"Analyst Calls","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fanalyst-stock-picks\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107121240,"name":"Ganesh Rao","url":"https:\u002F\u002Fwww.cnbc.com\u002Fganesh-rao\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":103559017,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F103559017-GettyImages-145523882.jpg?v=1718283762","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107428914,"brand":"cnbc","type":"live_story","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fstock-market-today-live-updates.html","native":false,"datePublished":"2024-06-13T22:03:38+0000","coverageEndDate":"2024-06-14T20:05:20+0000","contentClassification":[],"title":"Nasdaq Composite ekes out fifth straight record close, notches a 3% weekly gain: Live updates","headline":"Nasdaq Composite ekes out fifth straight record close, notches a 3% weekly gain","premium":false,"section":{"eyebrow":"Markets","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarkets\u002F","subType":"marketsection","__typename":"franchise"},"author":[{"id":107296395,"name":"Lisa Kailai Han","url":"https:\u002F\u002Fwww.cnbc.com\u002Flisa-kailai-han\u002F","__typename":"creator"},{"id":107211636,"name":"Brian Evans","url":"https:\u002F\u002Fwww.cnbc.com\u002Fbrian-evans\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107427892,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427892-1718204743679-gettyimages-2157296616-ms2_7304_hnhpizvq.jpeg?v=1718392525","__typename":"infographic"},"__typename":"live_story"},{"id":107429529,"brand":"cnbc","type":"wirestory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fg7-confronts-china-on-commerce-pope-talks-about-ai.html","native":false,"datePublished":"2024-06-15T09:21:52+0000","coverageEndDate":null,"contentClassification":[],"title":"G7 confronts China on commerce, pope talks about AI","headline":"G7 confronts China on commerce, pope talks about AI","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":107429532,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429532-1718442709728-gettyimages-2157561725-_fra1561_mgjqowwi.jpeg?v=1718442857","__typename":"infographic"},"__typename":"wirestory"},{"id":107428907,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Ffridays-trading-could-trigger-a-10-billion-rush-of-demand-for-nvidia-shares-heres-how.html","native":false,"datePublished":"2024-06-14T12:43:38+0000","coverageEndDate":null,"contentClassification":["registeredOnly"],"title":"Friday's trading could trigger a $10 billion rush of demand for Nvidia shares. Here's how","headline":"Friday's trading could trigger a $10 billion rush of demand for Nvidia shares. Here's how","premium":false,"section":{"eyebrow":"Investing","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Finvesting\u002F","subType":"section","__typename":"franchise"},"author":[{"id":105938626,"name":"Jesse Pound","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjesse-pound\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107376800,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107376800-17086093372023-03-06t202225z_1660679185_rc2koz9gbplb_rtrmadp_0_nvidia-results.jpeg?v=1708609412","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107428651,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fluxury-homes-on-these-beaches-are-losing-value-fast-as-effects-of-climate-change-hit-hard.html","native":false,"datePublished":"2024-06-14T16:50:27+0000","coverageEndDate":null,"contentClassification":[],"title":"Luxury homes on these beaches are losing value fast, as effects of climate change hit hard","headline":"Luxury homes on these beaches are losing value fast, as effects of climate change hit hard","premium":false,"section":{"eyebrow":"Rising Risks","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Frising-risks\u002F","subType":"section","__typename":"franchise"},"author":[{"id":15838025,"name":"Diana Olick","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdiana-olick\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107428798,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107428798-1718394164289-107428798-1718300116488-c0058_frame_396.jpg?v=1718394172","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429528,"brand":"cnbc","type":"wirestory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fsouth-africas-ramaphosa-re-elected-as-anc-strikes-coalition-deal.html","native":false,"datePublished":"2024-06-15T09:14:53+0000","coverageEndDate":null,"contentClassification":[],"title":"South Africa's Ramaphosa re-elected as ANC strikes coalition deal","headline":"South Africa's Ramaphosa re-elected as ANC strikes coalition deal","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":107429531,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429531-1718442709394-gettyimages-2156949428-AFP_34WU2LC.jpeg?v=1718442857","__typename":"infographic"},"__typename":"wirestory"},{"id":107429222,"brand":"makeit","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002F2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html","native":false,"datePublished":"2024-06-15T14:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","headline":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","premium":false,"section":{"eyebrow":"Health and Wellness","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002Fhealth-and-wellness\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107077230,"name":"Renée Onque","url":"https:\u002F\u002Fwww.cnbc.com\u002Frenee-onque\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107429312,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429312-1718380807549-gettyimages-1422476469-dsc00237.jpeg?v=1718380869","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429389,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fadobe-shares-surge-and-head-for-sharpest-rally-since-2020-.html","native":false,"datePublished":"2024-06-14T18:54:07+0000","coverageEndDate":null,"contentClassification":[],"title":"Adobe shares surge 15% for sharpest rally since 2020 ","headline":"Adobe shares surge 15% for sharpest rally since 2020 ","premium":false,"section":{"eyebrow":"Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107424635,"name":"Katie Bartlett","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkatie-bartlett\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107375684,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107375684-17084486382024-02-20t163555z_787821119_rc2d66acmhz7_rtrmadp_0_usa-stocks.jpeg?v=1718393124","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107429130,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fmicrosoft-to-delay-launch-of-ai-recall-tool-due-to-security-concerns.html","native":false,"datePublished":"2024-06-14T15:05:21+0000","coverageEndDate":null,"contentClassification":[],"title":"Microsoft to delay launch of AI Recall tool due to security concerns","headline":"Microsoft to delay launch of AI Recall tool due to security concerns","premium":false,"section":{"eyebrow":"Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107424635,"name":"Katie Bartlett","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkatie-bartlett\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107418112,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107418112-1716323619275-gettyimages-2153481576-AFP_34TF6ZR.jpeg?v=1716323693","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107425519,"brand":"cnbc","type":"cnbcvideo","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F14\u002Fbitcoin-dips-into-the-65000-level-to-end-the-week-cnbc-crypto-world.html","native":false,"datePublished":"2024-06-14T19:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"Bitcoin dips into the $65,000 level to end the week: CNBC Crypto World","headline":"Bitcoin dips into the $65,000 level to end the week: CNBC Crypto World","premium":false,"section":{"eyebrow":"Crypto World","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcryptoworld\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":106888168,"name":"Tanaya Macheel","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftanaya-macheel\u002F","__typename":"creator"},{"id":107110901,"name":"Talia Kaplan","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftalia-kaplan\u002F","__typename":"creator"},{"id":107248830,"name":"Kaan Oguz","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkaan-oguz\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107429370,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429370-240614_cw_thumbnail.jpg?v=1718386519","__typename":"infographic"},"duration":590,"__typename":"cnbcvideo"}],"__typename":"riverPlus"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"marketsModule","source":"102","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"sponsorLogoURL":"dist\u002F6666ac3191776af4dd3a97f772e6709a.jpgv","pollRate":10000},"options":{},"data":{"id":102,"relatedContent":[{"widget":{"widgetType":"market_movers_cnbc","widgetParams":{"exchange_name":"S&P,NASDAQ,DOW,EUR,ASIA,COVID19","exchange_symbol":"SP500,NASDAQ100,DOW30,EUR,ASIA,COVID19,KNEX","count":"5","rank_property":"changePct","rank_order":"Both","top_header_label":"TOP","bottom_header_label":"BOTTOM","widgetlabel":"Market MOVERS","widgethref":"\u002Fus-market-movers\u002F"}},"__typename":"webservice"}],"assets":[{"id":107429156,"headline":"Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns ","slug":"Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns 6\u002F16\u002F24 ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwall-street-analysts-pick-these-3-dividend-stocks-for-enhanced-returns.html","datePublished":"2024-06-16T13:23:26+0000","coverageEndDate":null,"contentClassification":["commentary"],"dateLastPublishedSixHr":"37 min ago","type":"cnbcnewsstory","author":[],"title":"Top Wall Street analysts suggest these 3 dividend stocks for enhanced returns ","premium":false,"__typename":"cnbcnewsstory"},{"id":107429471,"headline":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","slug":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadvisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html","datePublished":"2024-06-16T13:19:14+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"an hour ago","type":"cnbcnewsstory","author":[{"id":106888168,"name":"Tanaya Macheel","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftanaya-macheel\u002F","__typename":"creator"}],"title":"Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec","premium":false,"__typename":"cnbcnewsstory"},{"id":107429534,"headline":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","slug":"santoli 15-jun-24","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","datePublished":"2024-06-15T12:01:41+0000","coverageEndDate":null,"contentClassification":["registeredOnly"],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":103097040,"name":"Michael Santoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-santoli\u002F","__typename":"creator"}],"title":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","premium":false,"__typename":"cnbcnewsstory"},{"id":107429339,"headline":"Investors wonder if tech can keep lifting S&P 500 to records this summer as some cracks emerge","slug":"Min pro week ahead 240614 ec","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Finvestors-wonder-if-tech-can-keep-lifting-sp-500-to-new-records-this-summer.html","datePublished":"2024-06-14T18:01:23+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":107022882,"name":"Sarah Min","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsarah-min\u002F","__typename":"creator"}],"title":"Investors wonder if tech can keep lifting S&P 500 to records this summer as some cracks emerge","premium":true,"__typename":"cnbcnewsstory"}],"__typename":"marketsModule"},"__typename":"module"},{"name":"adMidResponsive","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"videoBreakerFeatured","source":"105237801","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"mode":"lightMode","headerTitle":"CNBC TV","numberOfPlaylistItems":3,"fwPlayerConfig":{"advertising":{"freewheel":{"sectionid":"cnbc_inline_homepage_vod"}}},"fwPlayerConfigWithXfinity":{"advertising":{"freewheel":{"sectionid":"cnbc_xfinitycobrand_cnbc_homepage_vod"}}}},"options":{"page":1,"pageSize":3,"include":["cnbcvideo"]},"data":{"id":105237801,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20TV%20MODULE","more":[],"assets":[{"id":107429181,"contentClassification":[],"type":"cnbcvideo","title":"Will Donald Trump go to jail? Here's what to expect from the former president's sentencing","seoTitle":"Will Donald Trump go to jail? Here's what to expect from the former president's sentencing","premium":false,"native":false,"headline":"Will Donald Trump go to jail? Here's what to expect from the former president's sentencing","shorterHeadline":"Will Donald Trump go to jail? Here's what to expect from the former president's sentencing","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Will Donald Trump go to jail? Here's what to expect from the former president's sentencing","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F14\u002Fcould-donald-trump-go-to-jail-heres-what-to-expect-from-the-former-presidents-sentencing.html","description":"Former U.S. President Donald Trump was found guilty of 34 counts of falsifying business records during his hush money criminal trial in New York City. That's a class E felony punishable by a fine, probation or up to four years in prison per count. CNBC's Dan Mangan breaks down the different legal scenarios the former president could find himself in when he receives his sentencing on July 11.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F8d237345a508496b983a68616303ac41\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343257\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000343257\u002FMBR\u002Fdbec9fd0-2a51-11ef-b6bc-978a6f15b9d6\u002F1718371469929-240611-cn-17-np-trump-sentencing-dirty_SRT.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F8d237345a508496b983a68616303ac41\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[{"id":107243523,"name":"Jeff Huang","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjeff-huang\u002F","tagName":"Jeff Huang","tagNameFormatted":"jeff huang","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[{"id":105362131,"headline":"CNBC News & Programming","tagName":"CNBC News & Programming","tagNameFormatted":"cnbc news progr","tagNameFormattedFull":"cnbc news programming","__typename":"team"},{"id":105326775,"headline":null,"tagName":"CNBC Digital Original Video ","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","__typename":"team"}],"relatedTags":[{"id":105877227,"headline":null,"tagName":"Donald Trump","tagNameFormatted":"donald trump","tagNameFormattedFull":"donald trump","type":"tag","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056716,"headline":null,"tagName":"Markets","tagNameFormatted":"markets","tagNameFormattedFull":"markets","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105321277,"headline":null,"tagName":"Breaking News: Politics","tagNameFormatted":"breaking news p","tagNameFormattedFull":"breaking news politics","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"donald trump|politics|neutral|markets|business|breaking news p","relatedTagsFilteredFormattedFull":"donald trump|politics|neutral|markets|business|breaking news politics","additionalSectionContent":[{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":105368918,"headline":"CNBC News and Programming","tagName":"CNBC News and Programming","tagNameFormatted":"cnbc news and p","tagNameFormattedFull":"cnbc news and programming","type":"franchise","__typename":"tag"},{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":15837362,"headline":"U.S. News","tagName":"US: News","tagNameFormatted":"us news","tagNameFormattedFull":"us news","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc digital or|cnbc news and p|politics|us news","additionalSectionContentFormattedFull":"cnbc digital original video|cnbc news and programming|politics|us news","relatedVideoContent":[],"datePublished":"2024-06-14T18:19:10+0000","dateLastPublished":"2024-06-14T18:19:10+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":102932911,"tagName":"News Videos","tagNameFormatted":"news videos","tagNameFormattedFull":"news videos","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|news videos","sectionHierarchyFormattedFull":"cnbc tv|digital original|news videos","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":107429184,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429184-1718370778711-GettyImages-2155459202.jpg?v=1718372759","__typename":"infographic"},"image":null,"section":{"headline":"News Videos","id":102932911,"subType":"section","tagName":"News Videos","tagNameFormatted":"news videos","tagNameFormattedFull":"news videos","title":"News Videos","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnews-videos\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc news progr|cnbc digital or","projectTeamContentFormattedFull":"cnbc news programming|cnbc digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"jeff huang","authorFormattedFull":"jeff huang","dateFirstPublished":"2024-06-14T18:19:10+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F06\u002F14\u002Fcould-donald-trump-go-to-jail-heres-what-to-expect-from-the-former-presidents-sentencing.html","pageName":"7000343256|video\u002F2024\u002F06\u002F14\u002Fcould-donald-trump-go-to-jail-heres-what-to-expect-from-the-former-presidents-sentencing","shortDatePublished":"06\u002F14\u002F2024","shortDateLastPublished":"06\u002F14\u002F2024","shortDateFirstPublished":"06\u002F14\u002F2024","airDate":"6\u002F14\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":283,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F8d237345a508496b983a68616303ac41\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000343256","mediaid":"cnbc_7000343256","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F14\u002Fcould-donald-trump-go-to-jail-heres-what-to-expect-from-the-former-presidents-sentencing.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343256 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343256 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429184-1718370778711-GettyImages-2155459202.jpg?v=1718372759","usageRule":"NA","vcpsId":7000343256,"videoStatus":"Unrestricted","uploadDate":"2024-06-14T13:07:16+0000","__typename":"cnbcvideo"},{"id":107429434,"contentClassification":[],"type":"cnbcvideo","title":"Apple's AI killer is... the iPhone","seoTitle":"Apple's AI killer is... the iPhone","premium":false,"native":false,"headline":"Apple's AI killer is... the iPhone","shorterHeadline":"Apple's AI killer is... the iPhone","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Apple's AI killer is... the iPhone","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F14\u002Fapples-ai-killer-is-the-iphone.html","description":"Apple has now leapfrogged leaders Microsoft and Google in the high-stakes AI race by promising the first killer use of AI - a true personal assistant, in the form of.... the iPhone. Even the stock, once a laggard, has jumped to historic highs, anchored by Apple's singular combination of hardware, software and data. But its biggest edge over AI devices like the Humane pin and Rabbit R1 is that it's already in billions of consumers' pockets. This week on TechCheck, Apple takes the AI lead.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F63cac7a693694a32934bbcf2b60689d3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343304\u002F1718392714690-P-TECHCHECKWEEKLY-061424_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000343304\u002FMBR\u002F3747a7e0-2a83-11ef-aadb-0b3f4cfe07a4\u002F1718392714690-P-TECHCHECKWEEKLY-061424.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F63cac7a693694a32934bbcf2b60689d3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[{"id":105434766,"name":"Jasmine Wu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjasmine-wu\u002F","tagName":"Jasmine Wu","tagNameFormatted":"jasmine wu","__typename":"creator"},{"id":105628477,"name":"Laura Batchelor","url":"https:\u002F\u002Fwww.cnbc.com\u002Flaura-batchelor\u002F","tagName":"Laura Batchelor","tagNameFormatted":"laura batchelor","__typename":"creator"},{"id":102671894,"name":"Deirdre Bosa","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdeirdre-bosa\u002F","tagName":"Deirdre Bosa","tagNameFormatted":"deirdre bosa","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[],"relatedTags":[{"id":105056582,"headline":null,"tagName":"Start-up","tagNameFormatted":"startup","tagNameFormattedFull":"startup","type":"tag","__typename":"tag"},{"id":106487964,"headline":null,"tagName":"iPhone","tagNameFormatted":"iphone","tagNameFormattedFull":"iphone","type":"tag","__typename":"tag"},{"id":107379092,"headline":null,"tagName":"Sam Altman","tagNameFormatted":"sam altman","tagNameFormattedFull":"sam altman","type":"tag","__typename":"tag"},{"id":105877253,"headline":null,"tagName":"Tim Cook","tagNameFormatted":"tim cook","tagNameFormattedFull":"tim cook","type":"tag","__typename":"tag"},{"id":105056583,"headline":null,"tagName":"Computer hardware","tagNameFormatted":"computer hardwa","tagNameFormattedFull":"computer hardware","type":"tag","__typename":"tag"},{"id":107225518,"headline":null,"tagName":"Generative AI","tagNameFormatted":"generative ai","tagNameFormattedFull":"generative ai","type":"tag","__typename":"tag"},{"id":105056673,"headline":null,"tagName":"Media","tagNameFormatted":"media","tagNameFormattedFull":"media","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105536972,"headline":null,"tagName":"Breaking News: Business","tagNameFormatted":"breaking news b","tagNameFormattedFull":"breaking news business","type":"tag","__typename":"tag"},{"id":1501792,"headline":null,"tagName":"Alphabet Inc","tagNameFormatted":"alphabet inc","tagNameFormattedFull":"alphabet inc","type":"company","__typename":"tag"},{"id":1510251,"headline":null,"tagName":"Microsoft Corp","tagNameFormatted":"microsoft corp","tagNameFormattedFull":"microsoft corp","type":"company","__typename":"tag"},{"id":1500014,"headline":null,"tagName":"Apple Inc","tagNameFormatted":"apple inc","tagNameFormattedFull":"apple inc","type":"company","__typename":"tag"},{"id":1511328,"headline":null,"tagName":"NVIDIA Corp","tagNameFormatted":"nvidia corp","tagNameFormattedFull":"nvidia corp","type":"company","__typename":"tag"},{"id":100005111,"headline":null,"tagName":"Meta Platforms Inc","tagNameFormatted":"meta platforms ","tagNameFormattedFull":"meta platforms inc","type":"company","__typename":"tag"},{"id":1502862,"headline":null,"tagName":"Amazon.com Inc","tagNameFormatted":"amazoncom inc","tagNameFormattedFull":"amazoncom inc","type":"company","__typename":"tag"},{"id":106717985,"headline":null,"tagName":"Sundar Pichai","tagNameFormatted":"sundar pichai","tagNameFormattedFull":"sundar pichai","type":"tag","__typename":"tag"},{"id":105056631,"headline":null,"tagName":"Software","tagNameFormatted":"software","tagNameFormattedFull":"software","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"startup|iphone|sam altman|tim cook|computer hardwa|generative ai|media|technology|breaking news b|alphabet inc|microsoft corp|apple inc|nvidia corp|meta platforms |amazoncom inc|sundar pichai|software","relatedTagsFilteredFormattedFull":"startup|iphone|sam altman|tim cook|computer hardware|generative ai|media|technology|breaking news business|alphabet inc|microsoft corp|apple inc|nvidia corp|meta platforms inc|amazoncom inc|sundar pichai|software","additionalSectionContent":[{"id":107230561,"headline":"AI - Artificial Intelligence","tagName":"AI - Artificial Intelligence","tagNameFormatted":"ai artificial i","tagNameFormattedFull":"ai artificial intelligence","type":"franchise","__typename":"tag"},{"id":107307016,"headline":"TechCheck Weekly","tagName":"TechCheck Weekly ","tagNameFormatted":"techcheck weekl","tagNameFormattedFull":"techcheck weekly","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":15839069,"headline":"Investing","tagName":"Investing","tagNameFormatted":"investing","tagNameFormattedFull":"investing","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"ai artificial i|techcheck weekl|technology|investing|top videos","additionalSectionContentFormattedFull":"ai artificial intelligence|techcheck weekly|technology|investing|top videos","relatedVideoContent":[],"datePublished":"2024-06-14T19:29:42+0000","dateLastPublished":"2024-06-14T19:29:42+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":106865631,"tagName":"TechCheck","tagNameFormatted":"techcheck","tagNameFormattedFull":"techcheck","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|techcheck","sectionHierarchyFormattedFull":"technology|techcheck","creatorOverwrite":null,"projectContent":[{"id":103998641,"headline":"Special Reports Project","tagName":"Special Reports Project","tagNameFormatted":"special reports","tagNameFormattedFull":"special reports project","__typename":"project"}],"promoImage":{"id":107429440,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429440-22200601_TECH_CHECK_DIGITAL_THUMBNAIL_APPLE_AI_REV.png?v=1718392264","__typename":"infographic"},"image":null,"section":{"headline":"TechCheck","id":106865631,"subType":"special_report","tagName":"TechCheck","tagNameFormatted":"techcheck","tagNameFormattedFull":"techcheck","title":"TechCheck","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechcheck\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"jasmine wu|laura batchelor|deirdre bosa","authorFormattedFull":"jasmine wu|laura batchelor|deirdre bosa","dateFirstPublished":"2024-06-14T19:29:42+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F06\u002F14\u002Fapples-ai-killer-is-the-iphone.html","pageName":"7000343304|video\u002F2024\u002F06\u002F14\u002Fapples-ai-killer-is-the-iphone","shortDatePublished":"06\u002F14\u002F2024","shortDateLastPublished":"06\u002F14\u002F2024","shortDateFirstPublished":"06\u002F14\u002F2024","airDate":"6\u002F14\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":590,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F63cac7a693694a32934bbcf2b60689d3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000343304","mediaid":"cnbc_7000343304","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F14\u002Fapples-ai-killer-is-the-iphone.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343304 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343304 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429440-22200601_TECH_CHECK_DIGITAL_THUMBNAIL_APPLE_AI_REV.png?v=1718392264","usageRule":"NA","vcpsId":7000343304,"videoStatus":"Unrestricted","uploadDate":"2024-06-14T19:08:24+0000","__typename":"cnbcvideo"},{"id":107425901,"contentClassification":[],"type":"cnbcvideo","title":"The comeback of Abercrombie & Fitch","seoTitle":"The comeback of Abercrombie & Fitch","premium":false,"native":false,"headline":"The comeback of Abercrombie & Fitch","shorterHeadline":"The comeback of Abercrombie & Fitch","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"The comeback of Abercrombie & Fitch","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F13\u002Fthe-comeback-of-abercrombie-fitch.html","description":"Abercrombie & Fitch has transformed from a dying mall brand into a Wall Street darling in about a decade, arguably one of retail's biggest comebacks. After reporting yet another strong earnings, the stock surged 24% on May 29th. Watch the video above to how CEO Fran Horowitz changed the business and defeated competitors like Gap, Banana Republic, American Eagle Outfitters and Urban Outfitters.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F91a392eb110141c9b4f2340cc3a2b698\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D13\u002F7000343133\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000343133\u002FMBR\u002F30ff3e20-2993-11ef-834d-130e294df85b\u002F1718289550334-240517-cn-05-con-Abercrombie-dirty_SRT.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F91a392eb110141c9b4f2340cc3a2b698\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[{"id":107161060,"name":"Gabrielle Fonrouge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgabrielle-fonrouge\u002F","tagName":"Gabrielle Fonrouge","tagNameFormatted":"gabrielle fonro","__typename":"creator"},{"id":107265002,"name":"Ryan Baker","url":"https:\u002F\u002Fwww.cnbc.com\u002Fryan-baker\u002F","tagName":"Ryan Baker","tagNameFormatted":"ryan baker","__typename":"creator"},{"id":105794354,"name":"Tala Hadavi","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftala-hadavi\u002F","tagName":"Tala Hadavi","tagNameFormatted":"tala hadavi","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[],"relatedTags":[],"relatedTagsFilteredFormatted":"NA","relatedTagsFilteredFormattedFull":"NA","additionalSectionContent":[{"id":10000783,"headline":"Consumer Finance","tagName":"Consumer Finance","tagNameFormatted":"consumer financ","tagNameFormattedFull":"consumer finance","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":107117238,"headline":null,"tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","type":null,"__typename":"tag"}],"additionalSectionContentFormatted":"consumer financ|digital origina|cnbc digital or","additionalSectionContentFormattedFull":"consumer finance|digital original|cnbc digital original video","relatedVideoContent":[],"datePublished":"2024-06-13T12:00:02+0000","dateLastPublished":"2024-06-13T16:05:53+0000","sectionHierarchy":[{"id":10001147,"tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","order":2,"__typename":"sectionHierarchy"},{"id":10000116,"tagName":"Retail","tagNameFormatted":"retail","tagNameFormattedFull":"retail","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"business news|retail","sectionHierarchyFormattedFull":"business news|retail","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":101051492,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F101051492-162363612r.jpg?v=1590675098","__typename":"infographic"},"image":null,"section":{"headline":"Retail","id":10000116,"subType":"section","tagName":"Retail","tagNameFormatted":"retail","tagNameFormattedFull":"retail","title":"Retail","url":"https:\u002F\u002Fwww.cnbc.com\u002Fretail\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"gabrielle fonro|ryan baker|tala hadavi","authorFormattedFull":"gabrielle fonrouge|ryan baker|tala hadavi","dateFirstPublished":"2024-06-13T12:00:02+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F06\u002F13\u002Fthe-comeback-of-abercrombie-fitch.html","pageName":"7000343024|video\u002F2024\u002F06\u002F13\u002Fthe-comeback-of-abercrombie-fitch","shortDatePublished":"06\u002F13\u002F2024","shortDateLastPublished":"06\u002F13\u002F2024","shortDateFirstPublished":"06\u002F13\u002F2024","airDate":"6\u002F13\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":633,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F91a392eb110141c9b4f2340cc3a2b698\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000343024","mediaid":"cnbc_7000343024","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F13\u002Fthe-comeback-of-abercrombie-fitch.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343024 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343024 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F101051492-162363612r.jpg?v=1590675098","usageRule":"NA","vcpsId":7000343024,"videoStatus":"Unrestricted","uploadDate":"2024-06-07T16:31:34+0000","__typename":"cnbcvideo"}],"__typename":"videoBreakerFeatured"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"featuredBreaker","source":"105230157","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=Special%20Reports","type":"collection","title":"Special Reports","subType":"package","sectionLabel":null,"logo":null,"shorterHeadline":"Special Reports","assets":[{"id":107429238,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fthree-day-hybrid-work-week-is-success-study-published-in-nature-says.html","datePublished":"2024-06-14T16:08:39+0000","dateLastPublishedSixHr":"","title":"'Win-win-win': Three-day hybrid work week is a success, largest study to date published in Nature says","linkHeadline":"'Win-win-win': Three-day hybrid work week is success, largest study to date published in Nature says","shorterHeadline":"Three-day hybrid work week is success, large study published in Nature says","slug":"'Win-win-win': Three-day hybrid work week is a success, largest study to date published in Nature says","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"At Work","__typename":"sectionHierarchy"}],"promoImage":{"id":107429306,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429306-1718380202294-gettyimages-1628189638-CHINA_TRIPCOM.jpeg?v=1718380224","__typename":"infographic"},"author":[{"name":"Kaya Ginsky","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107429179,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fgoogle-backed-tempus-ai-pops-by-as-much-as-15percent-in-nasdaq-debut.html","datePublished":"2024-06-14T16:01:02+0000","dateLastPublishedSixHr":"","title":"Google-backed Tempus AI closes first day of trading up 9% in Nasdaq stock market debut","linkHeadline":"Google-backed Tempus AI closes first day of trading up 9% in Nasdaq stock market debut","shorterHeadline":"Google-backed Tempus AI pops by as much as 15% in Nasdaq debut","slug":"Google-backed Tempus AI closes first day of trading up 9% in Nasdaq stock market debut","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"CNBC Disruptor 50","__typename":"sectionHierarchy"}],"promoImage":{"id":107429397,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429397-1718389064229-GQC5pYiXoAAQDBc.jpg?v=1718389177","__typename":"infographic"},"author":[{"name":"Riley de León","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107427233,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Ftaking-a-vacation-from-work-may-soon-become-mandatory.html","datePublished":"2024-06-14T14:00:04+0000","dateLastPublishedSixHr":"","title":"Taking a vacation from work may soon become mandatory","linkHeadline":"Taking a vacation from work may soon become mandatory","shorterHeadline":"Taking a vacation from work may soon become mandatory","slug":"Taking a vacation from work may soon become mandatory","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"At Work","__typename":"sectionHierarchy"}],"promoImage":{"id":107428917,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107428917-1718310965545-gettyimages-594203245-32c61865-ab43-41f5-a5ce-714ce6d1d6c9.jpeg?v=1718310984","__typename":"infographic"},"author":[{"name":"Cheryl Winokur Munk","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107427509,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fnew-apple-iphone-app-proves-how-hard-it-is-to-kill-the-online-password.html","datePublished":"2024-06-13T18:52:20+0000","dateLastPublishedSixHr":"","title":"New Apple iPhone app proves just how hard it is to kill the online password","linkHeadline":"New Apple iPhone app proves how hard it is to kill the online password","shorterHeadline":"New Apple iPhone app proves too many still use risky online passwords","slug":"New Apple iPhone app proves just how hard it is to kill the online password","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"Cyber Report","__typename":"sectionHierarchy"}],"promoImage":{"id":107426834,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107426834-1718044987896-Screenshot_2024-06-10_at_24250_PM.png?v=1718111689","__typename":"infographic"},"author":[{"name":"Michelle Castillo","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107428160,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fsolugen-locks-in-214-million-energy-department-loan-to-build-a-bioforge-for-sustainable-chemicals-production.html","datePublished":"2024-06-13T10:00:01+0000","dateLastPublishedSixHr":"","title":"Solugen scores $214 million loan from DOE to make chemicals from corn sugar not petroleum","linkHeadline":"Solugen scores $214 million loan from DOE to make chemicals from corn sugar not petroleum","shorterHeadline":"Solugen scores $214 million loan from DOE to make chemicals from corn sugar not petroleum","slug":"Solugen scores $214 million loan from DOE to make chemicals from corn sugar not petroleum","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"CNBC Disruptor 50","__typename":"sectionHierarchy"}],"promoImage":{"id":106939025,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106939025-1631160404187-210812_SOLUGEN_HOUSTON_0324_2.jpg?v=1631160612","__typename":"infographic"},"author":[{"name":"Lora Kolodny","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107427425,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Ftrillions-in-government-money-upends-how-states-compete-for-business.html","datePublished":"2024-06-13T11:54:51+0000","dateLastPublishedSixHr":"","title":"With trillions in government money at stake, infrastructure takes center stage in America’s Top States for Business","linkHeadline":"Trillions in government money is changing the way states compete for the biggest business","shorterHeadline":"Trillions in government money is changing the way states compete for business","slug":"With trillions in government money at stake, infrastructure takes center stage in America’s Top States for Business","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Markets","__typename":"sectionHierarchy"},{"tagName":"Economy","__typename":"sectionHierarchy"},{"tagName":"Top States For Business ","__typename":"sectionHierarchy"}],"promoImage":{"id":107390354,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107390354-17109644102024-03-20t195131z_1833164039_rc2sp6a4mpkj_rtrmadp_0_usa-election-biden.jpeg?v=1710964449","__typename":"infographic"},"author":[{"name":"Scott Cohn","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107422211,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fhow-we-are-choosing-americas-top-states-for-business-2024.html","datePublished":"2024-06-13T11:54:25+0000","dateLastPublishedSixHr":"","title":"How we are choosing America's Top States for Business 2024","linkHeadline":"How we are choosing America's Top States for Business 2024","shorterHeadline":"How we are choosing America's Top States for Business 2024","slug":"How we are choosing America's Top States for Business 2024","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Markets","__typename":"sectionHierarchy"},{"tagName":"Economy","__typename":"sectionHierarchy"},{"tagName":"Top States For Business ","__typename":"sectionHierarchy"}],"promoImage":{"id":107427798,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427798-1718198557807-gettyimages-520162698-lafreeway002-460.jpeg?v=1718198577","__typename":"infographic"},"author":[{"name":"Scott Cohn","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107427259,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F11\u002Fai-is-getting-very-popular-among-students-and-teachers-very-quickly.html","datePublished":"2024-06-11T18:23:03+0000","dateLastPublishedSixHr":"","title":"AI is getting very popular among students and teachers, very quickly","linkHeadline":"AI is getting very popular among students and teachers, very quickly","shorterHeadline":"AI is getting very popular among students and teachers, very quickly","slug":"AI is getting very popular among students and teachers, very quickly","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"AI Impact","__typename":"sectionHierarchy"}],"promoImage":{"id":107427282,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427282-1718121108716-gettyimages-2150570617-HC1_4808.jpeg?v=1718121134","__typename":"infographic"},"author":[{"name":"Eric Rosenbaum","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"}],"__typename":"featuredBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"trendingNowBreaker","source":"100727362","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"brand":"cnbc","assets":[{"title":"25-year-old turned down Yale for a state school in 2017—now she makes $90,000 a year and has 'no regrets'","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fcarolina-williams-chose-auburn-over-yale-has-no-regrets.html","linkHeadline":"25-year-old turned down Yale in 2017—now she makes $90,000 a year and has 'no regrets'","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"If you always use these 6 phrases, you're mentally stronger than most","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fif-you-always-use-these-phrases-youre-mentally-stronger-than-most.html","linkHeadline":"If you always use 6 phrases, you’re mentally stronger than most","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"This couple lives in a vintage 940-square-foot trailer by the beach for $5,100 a month: It's 'the California dream'","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwe-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html","linkHeadline":"We live 'the California dream' in a 940-sq-ft trailer by the beach for $5,100 a month","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"Luxury homes on these beaches are losing value fast, as effects of climate change hit hard","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fluxury-homes-on-these-beaches-are-losing-value-fast-as-effects-of-climate-change-hit-hard.html","linkHeadline":"Luxury homes on these beaches are losing value fast, as effects of climate change hit hard","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fceos-at-trump-meeting-not-impressed.html","linkHeadline":"CEOs at Trump meeting: Ex-president ‘meandering’ and ‘doesn't know what he's talking about’","contentClassification":[],"__typename":"cnbcnewsstory"}],"__typename":"trendingNowBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"twoColumnImageDense","source":"102138233","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":102138233,"brand":"cnbc","eyebrow":"Pro News and Analysis","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fnews\u002F","assets":[{"id":107424778,"title":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Investors may be looking at commercial real estate risk all wrong and missing these opportunities","shorterHeadline":"Investors may be missing these commercial real estate opportunities","premium":true,"native":false,"promoImage":{"id":106880081,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106880081-1620413764124-gettyimages-1232746314-AFP_99H8C7.jpeg?v=1686321555","__typename":"infographic"},"author":[{"id":16173024,"name":"Christina Cheddar Berk","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchristina-cheddar-berk\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Finvestors-may-be-missing-these-commercial-real-estate-opportunities.html","creatorOverwrite":null,"datePublished":"2024-06-16T13:04:39+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Sun, Jun 16th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107428981,"title":"Japan did it first. Chinese stocks with some of the biggest global upside","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Japan did it first. Chinese stocks with some of the biggest global upside","shorterHeadline":"Japan did it first. Chinese stocks with some of the biggest global upside","premium":true,"native":false,"promoImage":{"id":105742111,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105742111-1550232920554rtx6mua1.jpg?v=1588207528","__typename":"infographic"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fjapan-did-it-first-chinese-stocks-with-some-of-the-biggest-global-upside.html","creatorOverwrite":null,"datePublished":"2024-06-16T13:10:31+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Sun, Jun 16th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429331,"title":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"What Warren Buffett said about GameStop mania then, as the frenzy returns in 2024","shorterHeadline":"What Warren Buffett said about GameStop mania then, as frenzy returns in 2024","premium":true,"native":false,"promoImage":{"id":107427914,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427914-17182060842024-06-12t152637z_1382351200_rc2p98aobi4z_rtrmadp_0_usa-stocks.jpeg?v=1718206121","__typename":"infographic"},"author":[{"id":105609193,"name":"Yun Li","url":"https:\u002F\u002Fwww.cnbc.com\u002Fyun-li\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fwhat-warren-buffett-said-about-gamestop-mania-then-as-frenzy-returns.html","creatorOverwrite":null,"datePublished":"2024-06-16T13:00:59+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Sun, Jun 16th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429534,"title":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"The unloved stock market rally: Why so many investors find it hard to embrace this run to records","shorterHeadline":"Why so many investors find it hard to embrace the stock market run to records","premium":false,"native":false,"promoImage":{"id":107342025,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107342025-17014490862023-12-01t160836z_950967407_rc2eo4a7x3pn_rtrmadp_0_usa-stocks.jpeg?v=1701449196","__typename":"infographic"},"author":[{"id":103097040,"name":"Michael Santoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-santoli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthe-unloved-stock-market-rally-why-so-many-investors-find-it-hard-to-embrace-this-run-to-records.html","creatorOverwrite":null,"datePublished":"2024-06-15T12:01:41+0000","coverageEndDate":null,"contentClassification":["registeredOnly"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429301,"title":"These stocks are an AI model's biggest upside picks after a week of mild economic data","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"These stocks are an AI model's biggest upside picks after a week of mild economic data","shorterHeadline":"These stocks are AI model's big upside picks after a week of mild economic data","premium":true,"native":false,"promoImage":{"id":107374542,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107374542-1708037596200-gettyimages-1247904399-cros-notitle230307_npZSI.jpeg?v=1718379939","__typename":"infographic"},"author":[{"id":105938626,"name":"Jesse Pound","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjesse-pound\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fthese-stocks-are-an-ai-models-biggest-upside-picks-after-a-week-of-mild-economic-data.html","creatorOverwrite":null,"datePublished":"2024-06-15T11:59:20+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429355,"title":"Early bets on AI have helped this global tech fund outperform for a second year","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Early bets on AI have helped this global tech fund outperform for a second year","shorterHeadline":"Early bets on AI have helped this global tech fund outperform for a second year","premium":true,"native":false,"promoImage":{"id":107233985,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107233985-1683035781948-gettyimages-1252531726-T_ROWE_PRICE_EARNS.jpeg?v=1683035828","__typename":"infographic"},"author":[{"id":106822396,"name":"Samantha Subin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsamantha-subin\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fearly-ai-bets-are-helping-a-global-tech-fund-outperform-a-second-year.html","creatorOverwrite":null,"datePublished":"2024-06-15T11:57:39+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107426352,"title":"These five stocks are primed for upside, including this alternative to Nvidia, Morgan Stanley says","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"These five stocks are primed for upside, including this alternative to Nvidia, Morgan Stanley says","shorterHeadline":"Never mind Nvidia. Buy these 5 names instead, Morgan Stanley says","premium":true,"native":false,"promoImage":{"id":105375236,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105375236-1533317591071rtx6drjw.jpg?v=1571332846","__typename":"infographic"},"author":[{"id":102249058,"name":"Michael Bloom","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-bloom\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fmorgan-stanley-likes-these-five-stocks-plus-this-nvidia-alternative.html","creatorOverwrite":null,"datePublished":"2024-06-15T11:49:17+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429339,"title":"Investors wonder if tech can keep lifting S&P 500 to records this summer as some cracks emerge","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Investors wonder if tech can keep lifting S&P 500 to records this summer as some cracks emerge","shorterHeadline":"Investors wonder if tech can keep lifting S&P 500 to records this summer ","premium":true,"native":false,"promoImage":{"id":107428584,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107428584-1718284550427-gettyimages-2157347521-030a7940copy_lqkkvmta.jpeg?v=1718284655","__typename":"infographic"},"author":[{"id":107022882,"name":"Sarah Min","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsarah-min\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Finvestors-wonder-if-tech-can-keep-lifting-sp-500-to-new-records-this-summer.html","creatorOverwrite":null,"datePublished":"2024-06-14T18:01:23+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jun 14th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"107422700","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":107422700,"brand":"cnbc","eyebrow":"UK Votes","url":"https:\u002F\u002Fwww.cnbc.com\u002Fuk-votes\u002F","assets":[{"id":107427689,"title":"Britain's Labour Party pledges 'wealth creation' as it targets landslide election victory","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Britain's Labour Party pledges 'wealth creation' as it targets landslide election victory","shorterHeadline":"Britain's Labour Party pledges 'wealth creation' as it targets landslide election victory","premium":false,"native":false,"promoImage":{"id":107428476,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107428476-1718275265159-gettyimages-2156728257-ad5_4843.jpeg?v=1718275281","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F13\u002Fuk-general-election-2024-labour-publishes-manifesto-.html","creatorOverwrite":null,"datePublished":"2024-06-13T10:58:36+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jun 14th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107427105,"title":"UK's Rishi Sunak pledges £17 billion in tax cuts by 2030, looking to bounce back from D-Day gaffe","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"UK's Rishi Sunak pledges £17 billion in tax cuts by 2030, looking to bounce back from D-Day gaffe","shorterHeadline":"UK's Sunak announces election pledges, looking to bounce back from D-Day gaffe","premium":false,"native":false,"promoImage":{"id":107418816,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107418816-17164064852024-05-22t193356z_223010881_rc2vv7a86xvy_rtrmadp_0_britain-election.jpeg?v=1716406514","__typename":"infographic"},"author":[{"id":100400877,"name":"Matt Clinch","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmatt-clinch\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F11\u002Fconservative-manifesto-uks-rishi-sunak-announces-election-pledges.html","creatorOverwrite":null,"datePublished":"2024-06-11T12:41:09+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jun 11th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107427034,"title":"UK unemployment nears three-year high, wage growth firm as election looms","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"UK unemployment nears three-year high, wage growth firm as election looms","shorterHeadline":"UK unemployment nears three-year high, wage growth firm as election looms","premium":false,"native":false,"promoImage":{"id":107226769,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107226769-1681805620948-gettyimages-1235101371-UK_LABOR.jpeg?v=1718088808","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F11\u002Fuk-unemployment-nears-three-year-high-as-election-approaches.html","creatorOverwrite":null,"datePublished":"2024-06-11T07:55:30+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jun 11th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107424935,"title":"UK's populist right-wing party surges in popularity on Brexiteer Nigel Farage's return","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"UK's populist right-wing party surges in popularity on Brexiteer Nigel Farage's return","shorterHeadline":"UK's populist right-wing party surges in popularity on Brexiteer Nigel Farage's return","premium":false,"native":false,"promoImage":{"id":107424941,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107424941-1717655078823-gettyimages-2155417412-240604_farage_clacton_11.jpeg?v=1717655185","__typename":"infographic"},"author":[{"id":104254066,"name":"Karen Gilchrist","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkaren-gilchrist\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F06\u002Fuk-election-brexiteer-nigel-farages-return-boosts-uks-right-wing.html","creatorOverwrite":null,"datePublished":"2024-06-06T06:56:51+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Jun 6th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107423797,"title":"'You name it, Labour will tax it': UK PM Sunak attacks main rival as he languishes in election polls","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"'You name it, Labour will tax it': UK PM Sunak attacks main rival as he languishes in election polls","shorterHeadline":"UK PM Sunak attacks main rival as he languishes in election polls","premium":false,"native":false,"promoImage":{"id":107423794,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107423794-1717502276399-gettyimages-1548123306-73096942.jpeg?v=1717962474","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F04\u002Fuk-election-2024-sunak-and-starmer-clash-in-first-head-to-head-debate.html","creatorOverwrite":null,"datePublished":"2024-06-04T21:06:12+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Jun 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107423703,"title":"Trump ally Nigel Farage's return could be an 'extinction event' for the Conservatives ahead of UK election","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Trump ally's return could be an 'extinction event' for the Conservatives at UK election","shorterHeadline":"UK election race could now take a very different path as Trump ally enters the fray","premium":false,"native":false,"promoImage":{"id":107423707,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107423707-1717480058117-gettyimages-2155299248-AFP_34UU3G8.jpeg?v=1717480095","__typename":"infographic"},"author":[{"id":104254066,"name":"Karen Gilchrist","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkaren-gilchrist\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F04\u002Fuk-election-reforms-nigel-farage-could-mean-tory-extinction.html","creatorOverwrite":null,"datePublished":"2024-06-04T14:32:43+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jun 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107423360,"title":"Brexit figurehead and Trump ally Nigel Farage to run in UK election after U-turn","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Brexit figurehead and Trump ally Nigel Farage to run in UK election after U-turn","shorterHeadline":"Brexit figurehead and Trump ally Nigel Farage to run in UK election after U-turn","premium":false,"native":false,"promoImage":{"id":107423362,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107423362-1717428704367-gettyimages-2155292833-UK_FARAGE.jpeg?v=1717428719","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F03\u002Fbrexit-figurehead-nigel-farage-to-run-in-uk-election-after-u-turn.html","creatorOverwrite":null,"datePublished":"2024-06-03T15:39:00+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Jun 3rd 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107419023,"title":"Shock summer election in Britain predicted to deliver 'historic' result","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Shock summer election in Britain predicted to deliver 'historic' result","shorterHeadline":"Shock summer election in Britain predicted to deliver 'historic' result","premium":false,"native":false,"promoImage":{"id":107419027,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107419027-1716446373696-gettyimages-2153569740-AA_22052024_1691374.jpeg?v=1717513507","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F23\u002Fshock-summer-election-in-britain-predicted-to-deliver-historic-result.html","creatorOverwrite":null,"datePublished":"2024-05-23T12:29:23+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, May 23rd 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"106858698","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":106858698,"brand":"cnbc","eyebrow":"Sustainable Future","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","assets":[{"id":107427037,"title":"Norway discovers Europe's largest deposit of rare earth metals","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Norway discovers Europe's largest deposit of rare earth metals","shorterHeadline":"Norway discovers Europe's largest deposit of rare earth metals","premium":false,"native":false,"promoImage":{"id":102737188,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F102737188-GettyImages-104551001.jpg?v=1718102081","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F11\u002Fnorway-discovers-europes-largest-deposit-of-rare-earth-metals.html","creatorOverwrite":null,"datePublished":"2024-06-11T11:01:46+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jun 11th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107422221,"title":"With EVs, Honda may be North America's most committed automaker, for the moment","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"With EVs, Honda may be North America's most committed automaker, for the moment","shorterHeadline":"With EVs, Honda may be North America's most committed automaker, for the moment","premium":false,"native":false,"promoImage":{"id":107425502,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107425502-1717717916944-gettyimages-1814050628-jl3_6365_c952fd8b-d2e1-40de-96a8-2d4c0f2c1446.jpeg?v=1717761204","__typename":"infographic"},"author":[{"id":107345540,"name":"Kevin Williams","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkevin-williams\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F09\u002Fhonda-may-be-americas-most-committed-ev-automaker-for-the-moment.html","creatorOverwrite":null,"datePublished":"2024-06-09T13:29:03+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sun, Jun 9th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107418109,"title":"EV slump, Hertz fire sale take used Teslas to 'no haggle' $25,000 price","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"EV slump, Hertz fire sale take used Teslas to 'no haggle' $25,000 price","shorterHeadline":"The race to $25,000 EV has been won, at least in the used car market ","premium":false,"native":false,"promoImage":{"id":107424825,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107424825-1717622125192-gettyimages-1556857132-2d9a1884_h71wu0er_woqnxuv1.jpeg?v=1717622155","__typename":"infographic"},"author":[{"id":102097875,"name":"Bob Woods","url":"https:\u002F\u002Fwww.cnbc.com\u002Fbob-woods\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F06\u002Fev-sales-slump-hertz-dump-take-used-tesla-to-no-haggle-25000-price.html","creatorOverwrite":null,"datePublished":"2024-06-06T16:02:55+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Jun 10th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107424326,"title":"World likely to blast beyond grim warming milestone in the next 5 years, UN weather agency says","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"World likely to blast beyond grim warming milestone in the next 5 years, UN weather agency says","shorterHeadline":"World likely to blast beyond grim warming milestone in the next 5 years, UN says","premium":false,"native":false,"promoImage":{"id":107374663,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107374663-1708077097981-gettyimages-1976101261-AFP_34HL6YK.jpeg?v=1717609521","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F05\u002Fun-world-to-briefly-hit-1point5-degree-warming-threshold-in-next-5-years.html","creatorOverwrite":null,"datePublished":"2024-06-05T14:43:55+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Jun 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107423331,"title":"Khosla Ventures backs weather balloon startup that uses AI to upend forecasts","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Khosla Ventures backs weather balloon startup that uses AI to upend forecasts","shorterHeadline":"Khosla Ventures backs weather balloon startup that uses AI to upend forecasts","premium":false,"native":false,"promoImage":{"id":107423328,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107423328-1717425245249-Coastal_WB_Balloon.jpg?v=1717426657","__typename":"infographic"},"author":[{"id":15838025,"name":"Diana Olick","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdiana-olick\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F03\u002Fkhosla-ventures-backs-wineborne-a-startup-using-ai-to-upend-forecasts.html","creatorOverwrite":null,"datePublished":"2024-06-03T19:19:28+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Jun 3rd 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107420699,"title":"In the struggle against pollution, the humble mushroom could prove to be a valuable tool","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"In the struggle against pollution, the humble mushroom could prove to be a valuable tool","shorterHeadline":"In the struggle against pollution, the mushroom could prove to be a valuable tool","premium":false,"native":false,"promoImage":{"id":104916842,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F104916842-GettyImages-686666966.jpg?v=1716909791","__typename":"infographic"},"author":[{"id":106152463,"name":"Vicky McKeever","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvicky-mckeever\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F31\u002Fhow-mushrooms-can-help-deal-with-water-pollution-.html","creatorOverwrite":null,"datePublished":"2024-05-31T05:12:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, May 31st 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107421837,"title":"Temperatures in India hover at record highs as heatwave grips the country","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Temperatures in India hover at record highs as heatwave grips the country","shorterHeadline":"Temperatures in India hover at record highs as heatwave grips the country","premium":false,"native":false,"promoImage":{"id":107421835,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107421835-1717068784382-gettyimages-2154655867-INDIA_HEAT.jpeg?v=1717069027","__typename":"infographic"},"author":[{"id":107102341,"name":"Sophie Kiderlin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsophie-kiderlin\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F30\u002Findias-delhi-sees-near-record-temperatures-as-heatwave-grips-india.html","creatorOverwrite":null,"datePublished":"2024-05-30T12:17:47+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, May 30th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107421183,"title":"Orange juice prices are going through the roof — forcing some makers to consider alternative fruits","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Orange juice prices are going through the roof — forcing some makers to consider alternative fruits","shorterHeadline":"Orange juice makers turn to alternative fruits as prices hit all-time highs","premium":false,"native":false,"promoImage":{"id":107421186,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107421186-1716982430316-gettyimages-1249917201-AFP_33BG6Z7.jpeg?v=1716982661","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F30\u002Forange-juice-makers-turn-to-alternative-fruits-amid-record-high-prices.html","creatorOverwrite":null,"datePublished":"2024-05-30T07:29:02+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, May 30th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"105749512","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":105749512,"brand":"cnbc","eyebrow":"CNBC Travel","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-travel\u002F","assets":[{"id":107427030,"title":"Hong Kong wants more smiles for tourists but prices and Shenzhen are bigger issues, experts warn","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Hong Kong wants residents to smile more but prices and competition pose bigger threat to tourism","shorterHeadline":"Hong Kong tourism struggles amid high prices, competition from Shenzhen","premium":false,"native":false,"promoImage":{"id":107427036,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107427036-1718090120181-gettyimages-2155319235-yuen-hongkong240603_npHrm.jpeg?v=1718090269","__typename":"infographic"},"author":[{"id":107370027,"name":"Dylan Butts","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdylan-butts\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F14\u002Fhong-kong-tourism-struggles-amid-high-prices-shenzhen-competition.html","creatorOverwrite":null,"datePublished":"2024-06-13T23:56:36+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jun 14th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107423041,"title":"'Everyone is too scared to come': Taiwan's earthquake deals a blow to top tourism hotspot","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"'Everyone is too scared to come' — April's earthquake deals a blow to Taiwan's tourism industry ","shorterHeadline":"'Everyone is too scared to come': Taiwan tourism struggles after April earthquake","premium":false,"native":false,"promoImage":{"id":107423048,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107423048-1717333334053-Liang_Shiun_Chu_Hualien_Tour_Guide_Outside_Of_Taroko_Gorge_Entrance.png?v=1717334732","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F04\u002Ftaiwans-april-earthquake-deals-another-blow-to-its-tourism-industry.html","creatorOverwrite":"Jan Camenzind Broomby, contributor","datePublished":"2024-06-04T00:44:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sun, Jun 9th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107422398,"title":"Here are the top 25 airlines in the world, according to AirlineRatings.com","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Here are the top 25 airlines in the world, according to AirlineRatings.com","shorterHeadline":"Here are the top 25 airlines in the world, according to AirlineRatings.com","premium":false,"native":false,"promoImage":{"id":106967744,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106967744-1635517498930-gettyimages-1270904789-dsc00876a.jpeg?v=1717128362","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F31\u002F-here-are-the-worlds-top-25-airlines-according-to-airlineratingscom.html","creatorOverwrite":null,"datePublished":"2024-05-31T05:07:27+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, May 31st 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107420335,"title":"Gen Zs are traveling big this summer — how they're paying for it may surprise you","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Gen Zs are traveling big this summer — how they're paying for it may surprise you","shorterHeadline":"Gen Zs are traveling big this summer — how they're paying for it may surprise you","premium":false,"native":false,"promoImage":{"id":107251064,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107251064-1685981535045-gettyimages-1444443250-be3i0731.jpeg?v=1716957565","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F30\u002Fgens-zs-are-traveling-this-summer-and-going-into-debt-to-pay-for-trips.html","creatorOverwrite":null,"datePublished":"2024-05-29T23:45:10+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jun 14th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107418240,"title":"Chinese travelers are opting for lower-cost domestic destinations over foreign tourist spots","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Chinese travelers are opting for lower-cost domestic destinations over foreign tourist spots","shorterHeadline":"Chinese tourists pick cheaper destinations, fueling local spending","premium":false,"native":false,"promoImage":{"id":107420368,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420368-1716857183022-gettyimages-2084796444-cfoto-cliffhot240317_npYsj.jpeg?v=1716857946","__typename":"infographic"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F29\u002Fchinese-tourists-pick-cheaper-destinations-fueling-local-spending.html","creatorOverwrite":null,"datePublished":"2024-05-28T23:06:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, May 28th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107411931,"title":"Safaris aren't the only tourist attraction in Africa. From cruises to wine tasting, here's what else you can do","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Safaris aren't the only tourist attraction in Africa. From cruises to wine tours, here's what else to do","shorterHeadline":"Beyond safaris: From cruises to wine tasting, here's what else to do in Africa","premium":false,"native":false,"promoImage":{"id":107420379,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420379-1716859290949-gettyimages-1472303539-g2232_0755.jpeg?v=1716859326","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F28\u002Fbest-things-to-do-in-africa-beyond-safaris-cruises-wine-tours-hikes.html","creatorOverwrite":"Harriet Akinyi, contributor ","datePublished":"2024-05-28T03:36:28+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, May 27th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107418342,"title":"Bhutan turns to 'Gross National Happiness 2.0' as crisis deepens","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Bhutan turns to 'Gross National Happiness 2.0' as crisis deepens","shorterHeadline":"Bhutan turns to 'Gross National Happiness 2.0' as economic crisis deepens","premium":false,"native":false,"promoImage":{"id":107418356,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107418356-1716376712482-gettyimages-1500111983-_z8d7597.jpeg?v=1716376748","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F24\u002Fbhutan-introduces-gross-national-happiness-2point0-to-help-economic-crisis.html","creatorOverwrite":null,"datePublished":"2024-05-24T00:07:44+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, May 24th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107416969,"title":"Think Bhutan’s $100 daily tourism fee is pricey? It could go even higher, says prime minister","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Think Bhutan’s $100 daily tourism fee is pricey? It could go even higher, says prime minister","shorterHeadline":"Think Bhutan’s $100 daily tourism fee is pricey? It could go higher, says prime minister","premium":false,"native":false,"promoImage":{"id":107416970,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107416970-1716177702500-gettyimages-466588204-TOBGAY_BHUTAN.jpeg?v=1716195334","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F21\u002Fbhutan-may-revise-its-sustainable-development-fee-if-travel-picks-up.html","creatorOverwrite":null,"datePublished":"2024-05-21T01:09:45+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, May 20th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"103395579","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":103395579,"brand":"makeit","eyebrow":"Make It","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002F","assets":[{"id":107429190,"title":"Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"Steve Jobs built Apple using a simple piece of advice from his dad: ‘He loved doing things right’","shorterHeadline":"Steve Jobs built Apple using a simple piece of advice from his dad","premium":false,"native":false,"promoImage":{"id":107117277,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107117277-1663016951447-GettyImages-98329977.jpg?v=1718392161","__typename":"infographic"},"author":[{"id":106988472,"name":"Megan Sauer","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmegan-sauer\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002Fadvice-from-dads-of-steve-jobs-mark-cuban-sara-blakely-and-more.html","creatorOverwrite":null,"datePublished":"2024-06-16T13:15:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Sun, Jun 16th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107428884,"title":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","shorterHeadline":"3 in-demand remote jobs hiring now that pay $100,000 in 2024","premium":false,"native":false,"promoImage":{"id":107428889,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107428889-1718308209360-gettyimages-606349449-bld180435.jpeg?v=1718308254","__typename":"infographic"},"author":[{"id":106913175,"name":"Morgan Smith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmorgan-smith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F16\u002F3-in-demand-remote-jobs-hiring-now-that-pay-100000-in-2024.html","creatorOverwrite":null,"datePublished":"2024-06-16T13:10:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Sun, Jun 16th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429437,"title":"I dropped out of a group vacation—do I still have to pay for the hotel?: Tips from travel experts","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"I dropped out of a group vacation—do I still have to pay for the hotel?: Tips from travel experts","shorterHeadline":"Advice: I dropped out of a group vacation—do I still have to pay for the hotel?","premium":false,"native":false,"promoImage":{"id":107429461,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429461-1718395375875-gettyimages-1086841152-backpack-hostel21sep18_133.jpeg?v=1718395433","__typename":"infographic"},"author":[{"id":107090826,"name":"Aditi Shrikant","url":"https:\u002F\u002Fwww.cnbc.com\u002Faditi-shrikant-bio\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fi-dropped-out-of-a-group-tripdo-i-still-have-to-pay-for-the-hotel.html","creatorOverwrite":null,"datePublished":"2024-06-15T16:15:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107427925,"title":"This couple lives in a vintage 940-square-foot trailer by the beach for $5,100 a month: It's 'the California dream'","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"We live 'the California dream' in a 940-sq-ft trailer by the beach for $5,100 a month","shorterHeadline":"We live in a 940-sq-ft trailer by the beach for $5,100\u002Fmonth: Take a look inside","premium":false,"native":false,"promoImage":{"id":107429408,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429408-1718389592982-Jaclyn_and_Brian_posing_in_backyard_240524-mi-10-un-jaclyn-trailer-rough-v400_00_36_19Still021.jpg?v=1718389804","__typename":"infographic"},"author":[{"id":107427915,"name":"Jaclyn Westlake, Contributor","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjaclyn-westlake\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fwe-live-in-a-940-sq-ft-trailer-in-laguna-beach-take-a-look-inside.html","creatorOverwrite":null,"datePublished":"2024-06-15T14:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107415307,"title":"The ultimate guide to becoming a master communicator and public speaker","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"The ultimate guide to becoming a master communicator and public speaker","shorterHeadline":"The ultimate guide to becoming a master communicator and public speaker","premium":false,"native":false,"promoImage":{"id":107414931,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107414931-GettyImages-1348871022.jpg?v=1715718864","__typename":"infographic"},"author":[{"id":104072488,"name":"Jenna Goudreau","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenna-goudreau\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F05\u002F15\u002Fultimate-guide-to-becoming-master-communicator-public-speaker.html","creatorOverwrite":"CNBC Make It staff","datePublished":"2024-05-15T15:48:00+0000","coverageEndDate":null,"contentClassification":["evergreen"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, May 22nd 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429222,"title":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"A nutritionist shares 2 unusual tips to get the most benefit from immunity-boosting foods","shorterHeadline":"2 unusual tips for getting the most nutrients from immunity-boosting foods","premium":false,"native":false,"promoImage":{"id":107429312,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429312-1718380807549-gettyimages-1422476469-dsc00237.jpeg?v=1718380869","__typename":"infographic"},"author":[{"id":107077230,"name":"Renée Onque","url":"https:\u002F\u002Fwww.cnbc.com\u002Frenee-onque\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002F2-unusual-tips-to-get-the-most-nutrients-from-immunity-boosting-foods.html","creatorOverwrite":null,"datePublished":"2024-06-15T14:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107429333,"title":"We bought a home by the ocean for $212K in Laguna Beach, CA","type":"cnbcvideo","brand":"makeit","linkHeadline":"We bought a home by the ocean for $212K in Laguna Beach, CA","shorterHeadline":"We bought a home by the ocean for $212K in Laguna Beach, CA","premium":false,"native":false,"promoImage":{"id":107429444,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429444-A7901MP419_53_09_21Still001.jpg?v=1718392401","__typename":"infographic"},"author":[{"id":106985188,"name":"Lauren Shamo","url":"https:\u002F\u002Fwww.cnbc.com\u002Flauren-shamo-bio\u002F","__typename":"creator","tagName":"Lauren Shamo","tagNameFormatted":"lauren shamo"},{"id":106168157,"name":"Gene Kim","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgene-kim\u002F","__typename":"creator","tagName":"Gene Kim","tagNameFormatted":"gene kim"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F15\u002Fwe-bought-a-home-by-the-ocean-for-212k-in-laguna-beach-ca.html","creatorOverwrite":null,"datePublished":"2024-06-15T13:50:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source","slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source"}],"seoTitle":"We bought a home by the ocean for $212K in Laguna Beach, CA","headline":"We bought a home by the ocean for $212K in Laguna Beach, CA","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"We bought an oceanfront home for $212K in Laguna Beach, CA - 107429333","description":"Jaclyn Westlake, 38, and Brian Westlake, 42, live in a 1960s aluminum trailer in Laguna Beach, CA. They purchased the 940-square-foot trailer for $212,000 in 2022.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbb0b98f37d6e4b8ba5d4a5b24e58e75a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM06D14\u002F7000343307\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000343307\u002FMBR\u002Fd90703e0-2a84-11ef-aadb-0b3f4cfe07a4\u002F1718393411797-240524-mi-10-un-jaclyn-trailer-dirty_SRT.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbb0b98f37d6e4b8ba5d4a5b24e58e75a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105326775,"headline":null,"tagName":"CNBC Digital Original Video ","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","__typename":"team"}],"relatedTags":[{"id":105056641,"headline":null,"tagName":"Real estate","tagNameFormatted":"real estate","tagNameFormattedFull":"real estate","type":"tag","__typename":"tag"},{"id":10000551,"headline":null,"tagName":"California","tagNameFormatted":"california","tagNameFormattedFull":"california","type":"place","__typename":"tag"},{"id":107319197,"headline":null,"tagName":"Positive","tagNameFormatted":"positive","tagNameFormattedFull":"positive","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"real estate|california|positive","relatedTagsFilteredFormattedFull":"real estate|california|positive","additionalSectionContent":[{"id":103395617,"headline":"Inspire","tagName":"Make It - Inspire","tagNameFormatted":"make it inspire","tagNameFormattedFull":"make it inspire","type":"franchise","__typename":"tag"},{"id":105368881,"headline":"Make It Digital Original Video","tagName":"Make It Digital Original Video","tagNameFormatted":"make it digital","tagNameFormattedFull":"make it digital original video","type":"franchise","__typename":"tag"},{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":103395611,"headline":"Make It - Guide","tagName":"Make It Guide","tagNameFormatted":"make it guide","tagNameFormattedFull":"make it guide","type":"franchise","__typename":"tag"},{"id":103395579,"headline":"Make It","tagName":"Make It","tagNameFormatted":"make it","tagNameFormattedFull":"make it","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"make it inspire|make it digital|cnbc digital or|make it guide|make it","additionalSectionContentFormattedFull":"make it inspire|make it digital original video|cnbc digital original video|make it guide|make it","relatedVideoContent":[],"dateLastPublished":"2024-06-15T13:50:01+0000","sectionHierarchy":[{"id":103395579,"tagName":"Make It","tagNameFormatted":"make it","tagNameFormattedFull":"make it","order":3,"__typename":"sectionHierarchy"},{"id":104909889,"tagName":"Make It - Life","tagNameFormatted":"make it life","tagNameFormattedFull":"make it life","order":2,"__typename":"sectionHierarchy"},{"id":106769525,"tagName":"Make It - Unlocked","tagNameFormatted":"make it unlocke","tagNameFormattedFull":"make it unlocked","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"make it|make it life|make it unlocke","sectionHierarchyFormattedFull":"make it|make it life|make it unlocked","projectContent":[],"image":null,"section":{"headline":"Unlocked","id":106769525,"subType":"section","tagName":"Make It - Unlocked","tagNameFormatted":"make it unlocke","tagNameFormattedFull":"make it unlocked","title":"Unlocked","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002Funlocked\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc digital or","projectTeamContentFormattedFull":"cnbc digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"lauren shamo|gene kim","authorFormattedFull":"lauren shamo|gene kim","dateFirstPublished":"2024-06-15T13:50:01+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F06\u002F15\u002Fwe-bought-a-home-by-the-ocean-for-212k-in-laguna-beach-ca.html","pageName":"7000343306|video\u002F2024\u002F06\u002F15\u002Fwe-bought-a-home-by-the-ocean-for-212k-in-laguna-beach-ca","shortDatePublished":"06\u002F15\u002F2024","shortDateLastPublished":"06\u002F15\u002F2024","shortDateFirstPublished":"06\u002F15\u002F2024","airDate":"6\u002F15\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com Make It VOD","comScoreC6":"*null","dayPart":"Others","duration":539,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbb0b98f37d6e4b8ba5d4a5b24e58e75a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000343306","mediaid":"cnbc_7000343306","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F06\u002F15\u002Fwe-bought-a-home-by-the-ocean-for-212k-in-laguna-beach-ca.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343306 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000343306 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107429444-A7901MP419_53_09_21Still001.jpg?v=1718392401","usageRule":"NA","vcpsId":7000343306,"videoStatus":"Unrestricted","uploadDate":"2024-06-14T16:20:26+0000","__typename":"cnbcvideo"},{"id":107429452,"title":"Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener—how it made me successful","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"Nvidia CEO Jensen Huang: One of the most 'profound learnings in my life' came from a gardener","shorterHeadline":"Nvidia CEO: One of the most 'profound learnings in my life' came from a gardener","premium":false,"native":false,"promoImage":{"id":107417952,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107417952-1716311635058-gettyimages-2089849654-NVIDIA_GTC_CONFERENCE.jpeg?v=1718394579","__typename":"infographic"},"author":[{"id":106964777,"name":"Ashton Jackson","url":"https:\u002F\u002Fwww.cnbc.com\u002Fashton-jackson\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F15\u002Fnvidia-ceo-one-of-my-most-profound-learnings-came-from-a-gardener.html","creatorOverwrite":null,"datePublished":"2024-06-15T13:45:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Jun 15th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"41585735","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":41585735,"brand":"cnbc","eyebrow":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","assets":[{"id":107421981,"title":"What is the internet of bodies?","type":"cnbcvideo","brand":"cnbc","linkHeadline":"What is the internet of bodies?","shorterHeadline":"What is the internet of bodies?","premium":false,"native":false,"promoImage":{"id":107422026,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220","__typename":"infographic"},"author":[{"id":101091325,"name":"Arjun Kharpal","url":"https:\u002F\u002Fwww.cnbc.com\u002Farjun-kharpal\u002F","__typename":"creator","tagName":"Arjun Kharpal","tagNameFormatted":"arjun kharpal"},{"id":107421225,"name":"Maria Gomez De Sicart","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmaria-gomez-de-sicart\u002F","__typename":"creator","tagName":"Maria Gomez De Sicart","tagNameFormatted":"maria gomez de "}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","creatorOverwrite":null,"datePublished":"2024-05-31T03:31:20+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, May 31st 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"What is the internet of bodies?","headline":"What is the internet of bodies?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"What is the internet of bodies?","description":"Technological devices and the human body are no strangers. From glasses to hearing aids to pacemakers, we've been wearing, ingesting and implanting technology for decades. But soon, these devices will have the capacity to completely merge with the body while maintaining a real-time connection to an external machine. CNBC explains the \"Internet of Bodies.\"","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000341687\u002FMBR\u002F57e7bed0-1ea4-11ef-ae31-15af24cb1af5\u002F1717087570992-TechExplains_IOB_FINALv1.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105059757,"headline":null,"tagName":"Internet technology","tagNameFormatted":"internet techno","tagNameFormattedFull":"internet technology","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"internet techno|technology|business|neutral","relatedTagsFilteredFormattedFull":"internet technology|technology|business|neutral","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":106376905,"headline":"Tech Trends","tagName":"Tech Trends","tagNameFormatted":"tech trends","tagNameFormattedFull":"tech trends","type":"franchise","__typename":"tag"},{"id":49242736,"headline":"Tech Edge ","tagName":"Tech Edge ","tagNameFormatted":"tech edge","tagNameFormattedFull":"tech edge","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|cnbc explains|technology|tech trends|tech edge","additionalSectionContentFormattedFull":"digital original|international digital originals|cnbc explains|technology|tech trends|tech edge","relatedVideoContent":[],"dateLastPublished":"2024-05-31T17:16:26+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":101003572,"tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|the edge","sectionHierarchyFormattedFull":"technology|the edge","projectContent":[],"image":null,"section":{"headline":"The Edge","id":101003572,"subType":"special_report","tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","title":"The Edge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fthe-edge\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"arjun kharpal|maria gomez de ","authorFormattedFull":"arjun kharpal|maria gomez de sicart","dateFirstPublished":"2024-05-31T03:31:20+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","pageName":"7000341687|video\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies","shortDatePublished":"05\u002F30\u002F2024","shortDateLastPublished":"05\u002F31\u002F2024","shortDateFirstPublished":"05\u002F30\u002F2024","airDate":"5\u002F30\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":258,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000341687","mediaid":"cnbc_7000341687","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341687 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341687 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220","usageRule":"NA","vcpsId":7000341687,"videoStatus":"Unrestricted","uploadDate":"2024-05-30T14:52:27+0000","__typename":"cnbcvideo"},{"id":107415030,"title":"How the world got into $315 trillion of debt","type":"cnbcvideo","brand":"cnbc","linkHeadline":"How the world got into $315 trillion of debt","shorterHeadline":"How the world got into $315 trillion of debt","premium":false,"native":false,"promoImage":{"id":107420405,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317","__typename":"infographic"},"author":[{"id":106229681,"name":"Nessa Anwar","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnessa-anwar-profile---cnbc\u002F","__typename":"creator","tagName":"Nessa Anwar","tagNameFormatted":"nessa anwar"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","creatorOverwrite":null,"datePublished":"2024-05-28T04:06:07+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, May 28th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"How the world got into $315 trillion of debt","headline":"How the world got into $315 trillion of debt","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"How the world got into $315 trillion of debt","description":"According to the Institute of International Finance, the world is $315 trillion in debt. This combines borrowings from households, businesses and governments. With global debt at a record high, should we be concerned?","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000341370\u002FMBR\u002F2d584050-1cc8-11ef-a69d-cf0e16660a12\u002F1716882947473-GlobalDebt_FinalDraftmp4.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|intl digital vi","relatedTagsFilteredFormattedFull":"neutral|intl digital video","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|international d","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|international digital originals","relatedVideoContent":[],"dateLastPublished":"2024-05-28T09:55:11+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"nessa anwar","authorFormattedFull":"nessa anwar","dateFirstPublished":"2024-05-28T04:06:07+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","pageName":"7000341360|video\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt","shortDatePublished":"05\u002F28\u002F2024","shortDateLastPublished":"05\u002F28\u002F2024","shortDateFirstPublished":"05\u002F28\u002F2024","airDate":"5\u002F28\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":398,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000341360","mediaid":"cnbc_7000341360","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341360 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341360 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317","usageRule":"NA","vcpsId":7000341360,"videoStatus":"Unrestricted","uploadDate":"2024-05-15T03:09:15+0000","__typename":"cnbcvideo"},{"id":107393688,"title":"eVTOLS: Are flying cars finally becoming reality?","type":"cnbcvideo","brand":"cnbc","linkHeadline":"eVTOLS: Are flying cars finally becoming reality?","shorterHeadline":"eVTOLS: Are flying cars finally becoming reality?","premium":false,"native":false,"promoImage":{"id":107396455,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926","__typename":"infographic"},"author":[{"id":101091325,"name":"Arjun Kharpal","url":"https:\u002F\u002Fwww.cnbc.com\u002Farjun-kharpal\u002F","__typename":"creator","tagName":"Arjun Kharpal","tagNameFormatted":"arjun kharpal"},{"id":107104352,"name":"Cristy Garratt","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcristy-garratt\u002F","__typename":"creator","tagName":"Cristy Garratt","tagNameFormatted":"cristy garratt"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","creatorOverwrite":null,"datePublished":"2024-03-28T03:15:17+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Apr 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"eVTOLS: How flying cars are becoming reality","headline":"eVTOLS: Are flying cars finally becoming reality?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"eVTOLS: Are flying cars finally becoming reality?","description":"Most innovators and investors tend to reject the term flying car. Instead, the acronym eVTOL, which stands for electric vertical take-off and landing, has taken off.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD_.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000335697\u002FMBR\u002Fb9235170-ec5c-11ee-85ad-2d39a8f954a1\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD_.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105060143,"headline":null,"tagName":"Electric vehicles","tagNameFormatted":"electric vehicl","tagNameFormattedFull":"electric vehicles","type":"tag","__typename":"tag"},{"id":105056933,"headline":null,"tagName":"Autos","tagNameFormatted":"autos","tagNameFormattedFull":"autos","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|business|technology|electric vehicl|autos","relatedTagsFilteredFormattedFull":"neutral|business|technology|electric vehicles|autos","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":106376905,"headline":"Tech Trends","tagName":"Tech Trends","tagNameFormatted":"tech trends","tagNameFormattedFull":"tech trends","type":"franchise","__typename":"tag"},{"id":49242736,"headline":"Tech Edge ","tagName":"Tech Edge ","tagNameFormatted":"tech edge","tagNameFormattedFull":"tech edge","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|china politics|cnbc explains|technology|tech trends|tech edge","additionalSectionContentFormattedFull":"digital original|international digital originals|china politics|cnbc explains|technology|tech trends|tech edge","relatedVideoContent":[],"dateLastPublished":"2024-04-04T06:14:24+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":101003572,"tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|the edge","sectionHierarchyFormattedFull":"technology|the edge","projectContent":[],"image":null,"section":{"headline":"The Edge","id":101003572,"subType":"special_report","tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","title":"The Edge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fthe-edge\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"arjun kharpal|cristy garratt","authorFormattedFull":"arjun kharpal|cristy garratt","dateFirstPublished":"2024-03-28T03:15:17+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","pageName":"7000335697|video\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality","shortDatePublished":"03\u002F27\u002F2024","shortDateLastPublished":"04\u002F04\u002F2024","shortDateFirstPublished":"03\u002F27\u002F2024","airDate":"3\u002F27\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":359,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000335697","mediaid":"cnbc_7000335697","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000335697 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000335697 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926","usageRule":"NA","vcpsId":7000335697,"videoStatus":"Unrestricted","uploadDate":"2024-03-27T16:25:22+0000","__typename":"cnbcvideo"},{"id":107379819,"title":"How China's property bubble burst","type":"cnbcvideo","brand":"cnbc","linkHeadline":"How China's property bubble burst","shorterHeadline":"How China's property bubble burst","premium":false,"native":false,"promoImage":{"id":107381660,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772","__typename":"infographic"},"author":[{"id":107223011,"name":"Gaelle Legrand","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgaelle-legrand\u002F","__typename":"creator","tagName":"Gaelle Legrand","tagNameFormatted":"gaelle legrand"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","creatorOverwrite":null,"datePublished":"2024-02-29T02:59:29+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Mar 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"How China's property bubble burst","headline":"How China's property bubble burst","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"How China's property bubble burst","description":"China's top real estate developers, Evergrande and Country Garden, have defaulted on their debts. But the issues in China's property market have much deeper roots.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000333141\u002FMBR\u002Fd1dfcc30-d7ed-11ee-a8e3-e32e186e2161\u002F1709312599616-ChinaPropertyBubbleFINAL2.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105056579,"headline":null,"tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056593,"headline":null,"tagName":"Leadership","tagNameFormatted":"leadership","tagNameFormattedFull":"leadership","type":"tag","__typename":"tag"},{"id":105056641,"headline":null,"tagName":"Real estate","tagNameFormatted":"real estate","tagNameFormattedFull":"real estate","type":"tag","__typename":"tag"},{"id":10000018,"headline":null,"tagName":"China","tagNameFormatted":"china","tagNameFormattedFull":"china","type":"place","__typename":"tag"},{"id":105073432,"headline":null,"tagName":"Housing policy","tagNameFormatted":"housing policy","tagNameFormattedFull":"housing policy","type":"tag","__typename":"tag"},{"id":106829078,"headline":null,"tagName":"Evergrande Property Services Group Ltd","tagNameFormatted":"evergrande prop","tagNameFormattedFull":"evergrande property services group ltd","type":"company","__typename":"tag"},{"id":1516409,"headline":null,"tagName":"Country Garden Holdings Co Ltd","tagNameFormatted":"country garden ","tagNameFormattedFull":"country garden holdings co ltd","type":"company","__typename":"tag"},{"id":1516404,"headline":null,"tagName":"China Evergrande Group","tagNameFormatted":"china evergrand","tagNameFormattedFull":"china evergrande group","type":"company","__typename":"tag"}],"relatedTagsFilteredFormatted":"asia economy|neutral|business|leadership|real estate|china|housing policy|evergrande prop|country garden |china evergrand","relatedTagsFilteredFormattedFull":"asia economy|neutral|business|leadership|real estate|china|housing policy|evergrande property services group ltd|country garden holdings co ltd|china evergrande group","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":105228996,"headline":"China Economy","tagName":"China Economy","tagNameFormatted":"china economy","tagNameFormattedFull":"china economy","type":"franchise","__typename":"tag"},{"id":10000115,"headline":"Real Estate","tagName":"Real Estate","tagNameFormatted":"real estate","tagNameFormattedFull":"real estate","type":"franchise","__typename":"tag"},{"id":10001092,"headline":"Real Estate Development","tagName":"Real Estate Development","tagNameFormatted":"real estate dev","tagNameFormattedFull":"real estate development","type":"franchise","__typename":"tag"},{"id":19832390,"headline":"Asia-Pacific News","tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"id":10000008,"headline":"Asia Economy","tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"franchise","__typename":"tag"},{"id":105229295,"headline":"Asia Politics","tagName":"Asia Politics","tagNameFormatted":"asia politics","tagNameFormattedFull":"asia politics","type":"franchise","__typename":"tag"},{"id":10000807,"headline":"Existing Home Sales","tagName":"Existing Home Sales","tagNameFormatted":"existing home s","tagNameFormattedFull":"existing home sales","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|china politics|china economy|real estate|real estate dev|asia news|asia economy|asia politics|existing home s","additionalSectionContentFormattedFull":"digital original|international digital originals|china politics|china economy|real estate|real estate development|asia news|asia economy|asia politics|existing home sales","relatedVideoContent":[],"dateLastPublished":"2024-03-04T12:37:15+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"gaelle legrand","authorFormattedFull":"gaelle legrand","dateFirstPublished":"2024-02-29T02:59:29+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","pageName":"7000332893|video\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst","shortDatePublished":"02\u002F28\u002F2024","shortDateLastPublished":"03\u002F04\u002F2024","shortDateFirstPublished":"02\u002F28\u002F2024","airDate":"2\u002F28\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":525,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000332893","mediaid":"cnbc_7000332893","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000332893 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000332893 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772","usageRule":"NA","vcpsId":7000332893,"videoStatus":"Unrestricted","uploadDate":"2024-02-28T18:07:49+0000","__typename":"cnbcvideo"},{"id":107358912,"title":"What is the World Economic Forum?","type":"cnbcvideo","brand":"cnbc","linkHeadline":"What is the World Economic Forum?","shorterHeadline":"What is the World Economic Forum?","premium":false,"native":false,"promoImage":{"id":107381642,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581","__typename":"infographic"},"author":[{"id":107223011,"name":"Gaelle Legrand","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgaelle-legrand\u002F","__typename":"creator","tagName":"Gaelle Legrand","tagNameFormatted":"gaelle legrand"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","creatorOverwrite":null,"datePublished":"2024-01-15T14:38:11+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Mar 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"What is the World Economic Forum?","headline":"What is the World Economic Forum?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"What is the World Economic Forum?","description":"What does the World Economic Forum do once its annual meeting in Davos is over? CNBC explains.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000328451\u002FMBR\u002F1b09c600-b3b2-11ee-9898-39c5e5b871dd\u002F1705328759934-WhatisWEFFINAL.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056600,"headline":null,"tagName":"Davos - World Economic Forum","tagNameFormatted":"davos world eco","tagNameFormattedFull":"davos world economic forum","type":"organization","__typename":"tag"},{"id":105633551,"headline":null,"tagName":"Klaus Schwab","tagNameFormatted":"klaus schwab","tagNameFormattedFull":"klaus schwab","type":"tag","__typename":"tag"},{"id":105670795,"headline":null,"tagName":"Davos","tagNameFormatted":"davos","tagNameFormattedFull":"davos","type":"place","__typename":"tag"},{"id":105632958,"headline":null,"tagName":"World Economic Forum Annual Meeting","tagNameFormatted":"world economic ","tagNameFormattedFull":"world economic forum annual meeting","type":"tag","__typename":"tag"},{"id":105058481,"headline":null,"tagName":"Taxes","tagNameFormatted":"taxes","tagNameFormattedFull":"taxes","type":"tag","__typename":"tag"},{"id":105355965,"headline":null,"tagName":"Events","tagNameFormatted":"events","tagNameFormattedFull":"events","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056593,"headline":null,"tagName":"Leadership","tagNameFormatted":"leadership","tagNameFormattedFull":"leadership","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|davos world eco|klaus schwab|davos|world economic |taxes|events|business|leadership","relatedTagsFilteredFormattedFull":"neutral|davos world economic forum|klaus schwab|davos|world economic forum annual meeting|taxes|events|business|leadership","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|cnbc explains|international d","additionalSectionContentFormattedFull":"digital original|cnbc explains|international digital originals","relatedVideoContent":[],"dateLastPublished":"2024-03-04T12:00:04+0000","sectionHierarchy":[{"id":16903222,"tagName":"Special Reports","tagNameFormatted":"special reports","tagNameFormattedFull":"special reports","order":2,"__typename":"sectionHierarchy"},{"id":102314545,"tagName":"Davos WEF","tagNameFormatted":"davos wef","tagNameFormattedFull":"davos wef","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"special reports|davos wef","sectionHierarchyFormattedFull":"special reports|davos wef","projectContent":[],"image":null,"section":{"headline":"Davos 2024: World Economic Forum","id":102314545,"subType":"special_report","tagName":"Davos WEF","tagNameFormatted":"davos wef","tagNameFormattedFull":"davos wef","title":"Davos 2024: World Economic Forum","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdavos-world-economic-forum\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"gaelle legrand","authorFormattedFull":"gaelle legrand","dateFirstPublished":"2024-01-15T14:38:11+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","pageName":"7000328451|video\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum","shortDatePublished":"01\u002F15\u002F2024","shortDateLastPublished":"03\u002F04\u002F2024","shortDateFirstPublished":"01\u002F15\u002F2024","airDate":"1\u002F15\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":421,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000328451","mediaid":"cnbc_7000328451","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000328451 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000328451 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581","usageRule":"NA","vcpsId":7000328451,"videoStatus":"Unrestricted","uploadDate":"2024-01-15T14:06:44+0000","__typename":"cnbcvideo"},{"id":107082944,"title":"The Quad is going beyond military exercises — and China is watching","type":"cnbcvideo","brand":"cnbc","linkHeadline":"The Quad is going beyond military exercises — and China is watching","shorterHeadline":"The Quad is going beyond military exercises — and China is watching","premium":false,"native":false,"promoImage":{"id":107082945,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107082945-Thumbnail_Digital_Originals_QUAD_V3_Clean.jpg?v=1656576009","__typename":"infographic"},"author":[{"id":106229681,"name":"Nessa Anwar","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnessa-anwar-profile---cnbc\u002F","__typename":"creator","tagName":"Nessa Anwar","tagNameFormatted":"nessa anwar"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","creatorOverwrite":null,"datePublished":"2022-07-04T01:39:09+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Oct 24th 2023","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"The Quad expands beyond naval military exercises — and China watches","headline":"The Quad is going beyond military exercises — and China is watching","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Quad - the big security alignment China is worried about - 107082944","description":"Over the years, the Quad has been incorrectly called an \"Asian NATO,\" especially when it comes to security concerns about another big power in the region — China.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000251960\u002FMBR\u002F0e51a640-2289-11ee-9d01-6f3d7e5db76c\u002F1656897859287-NAQuad_Final.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":10001247,"headline":null,"tagName":"Ukraine","tagNameFormatted":"ukraine","tagNameFormattedFull":"ukraine","type":"place","__typename":"tag"},{"id":105056579,"headline":null,"tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"tag","__typename":"tag"},{"id":105056941,"headline":null,"tagName":"Aerospace and defense industry","tagNameFormatted":"aerospace and d","tagNameFormattedFull":"aerospace and defense industry","type":"tag","__typename":"tag"},{"id":105056610,"headline":null,"tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"},{"id":10000385,"headline":null,"tagName":"United States","tagNameFormatted":"united states","tagNameFormattedFull":"united states","type":"place","__typename":"tag"},{"id":10000019,"headline":null,"tagName":"India","tagNameFormatted":"india","tagNameFormattedFull":"india","type":"place","__typename":"tag"},{"id":10000020,"headline":null,"tagName":"Japan","tagNameFormatted":"japan","tagNameFormattedFull":"japan","type":"place","__typename":"tag"},{"id":10000018,"headline":null,"tagName":"China","tagNameFormatted":"china","tagNameFormattedFull":"china","type":"place","__typename":"tag"},{"id":105060810,"headline":null,"tagName":"Australia","tagNameFormatted":"australia","tagNameFormattedFull":"australia","type":"place","__typename":"tag"},{"id":105876642,"headline":null,"tagName":"Shinzo Abe","tagNameFormatted":"shinzo abe","tagNameFormattedFull":"shinzo abe","type":"tag","__typename":"tag"},{"id":105314466,"headline":null,"tagName":"Kevin Rudd","tagNameFormatted":"kevin rudd","tagNameFormattedFull":"kevin rudd","type":"tag","__typename":"tag"},{"id":105876643,"headline":null,"tagName":"Narendra Modi","tagNameFormatted":"narendra modi","tagNameFormattedFull":"narendra modi","type":"tag","__typename":"tag"},{"id":105877117,"headline":null,"tagName":"Joe Biden","tagNameFormatted":"joe biden","tagNameFormattedFull":"joe biden","type":"tag","__typename":"tag"},{"id":105876935,"headline":null,"tagName":"Xi Jinping","tagNameFormatted":"xi jinping","tagNameFormattedFull":"xi jinping","type":"tag","__typename":"tag"},{"id":105140593,"headline":null,"tagName":"U.S. Navy","tagNameFormatted":"us navy","tagNameFormattedFull":"us navy","type":"organization","__typename":"tag"},{"id":105116134,"headline":null,"tagName":"East China Sea","tagNameFormatted":"east china sea","tagNameFormattedFull":"east china sea","type":"place","__typename":"tag"},{"id":105084885,"headline":null,"tagName":"South China Sea","tagNameFormatted":"south china sea","tagNameFormattedFull":"south china sea","type":"place","__typename":"tag"},{"id":105223066,"headline":null,"tagName":"Military events","tagNameFormatted":"military events","tagNameFormattedFull":"military events","type":"tag","__typename":"tag"},{"id":105140592,"headline":null,"tagName":"Navy","tagNameFormatted":"navy","tagNameFormattedFull":"navy","type":"tag","__typename":"tag"},{"id":105234580,"headline":null,"tagName":"Territorial disputes","tagNameFormatted":"territorial dis","tagNameFormattedFull":"territorial disputes","type":"tag","__typename":"tag"},{"id":105056897,"headline":null,"tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"tag","__typename":"tag"},{"id":105217841,"headline":null,"tagName":"Pacific Ocean","tagNameFormatted":"pacific ocean","tagNameFormattedFull":"pacific ocean","type":"place","__typename":"tag"},{"id":105562424,"headline":null,"tagName":"Indian Ocean","tagNameFormatted":"indian ocean","tagNameFormattedFull":"indian ocean","type":"place","__typename":"tag"},{"id":105090501,"headline":null,"tagName":"2004 Indian Ocean tsunami","tagNameFormatted":"2004 indian oce","tagNameFormattedFull":"2004 indian ocean tsunami","type":"tag","__typename":"tag"},{"id":10000054,"headline":null,"tagName":"Russia","tagNameFormatted":"russia","tagNameFormattedFull":"russia","type":"place","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"ukraine|asia economy|aerospace and d|defense|intl digital vi|united states|india|japan|china|australia|shinzo abe|kevin rudd|narendra modi|joe biden|xi jinping|us navy|east china sea|south china sea|military events|navy|territorial dis|economy|pacific ocean|indian ocean|2004 indian oce|russia|politics","relatedTagsFilteredFormattedFull":"ukraine|asia economy|aerospace and defense industry|defense|intl digital video|united states|india|japan|china|australia|shinzo abe|kevin rudd|narendra modi|joe biden|xi jinping|us navy|east china sea|south china sea|military events|navy|territorial disputes|economy|pacific ocean|indian ocean|2004 indian ocean tsunami|russia|politics","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":10001059,"headline":"Defense","tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"franchise","__typename":"tag"},{"id":10000693,"headline":"Aerospace & Defense","tagName":"Aerospace & Defense","tagNameFormatted":"aerospace defen","tagNameFormattedFull":"aerospace defense","type":"franchise","__typename":"tag"},{"id":41369691,"headline":"CNBC Asia-Pacific","tagName":"Asia-Pacific Homepage","tagNameFormatted":"asiapacific hom","tagNameFormattedFull":"asiapacific homepage","type":"franchise","__typename":"tag"},{"id":10000004,"headline":"Asia-Pacific Markets Headlines","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","type":"franchise","__typename":"tag"},{"id":19794221,"headline":"Europe News","tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":105228996,"headline":"China Economy","tagName":"China Economy","tagNameFormatted":"china economy","tagNameFormattedFull":"china economy","type":"franchise","__typename":"tag"},{"id":19832390,"headline":"Asia-Pacific News","tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"id":10000008,"headline":"Asia Economy","tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"franchise","__typename":"tag"},{"id":105229295,"headline":"Asia Politics","tagName":"Asia Politics","tagNameFormatted":"asia politics","tagNameFormattedFull":"asia politics","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":20910258,"headline":"Economy","tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"franchise","__typename":"tag"},{"id":10001034,"headline":"Political Leaders","tagName":"Political Leaders","tagNameFormatted":"political leade","tagNameFormattedFull":"political leaders","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|defense|aerospace defen|asiapacific hom|europe news|china politics|china economy|asia news|asia economy|asia politics|cnbc explains|politics|economy|political leade","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|defense|aerospace defense|asiapacific homepage|europe news|china politics|china economy|asia news|asia economy|asia politics|cnbc explains|politics|economy|political leaders","relatedVideoContent":[],"dateLastPublished":"2023-10-25T01:38:53+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":5,"__typename":"sectionHierarchy"},{"id":15839263,"tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","order":4,"__typename":"sectionHierarchy"},{"id":100004038,"tagName":"Video: All","tagNameFormatted":"video all","tagNameFormattedFull":"video all","order":3,"__typename":"sectionHierarchy"},{"id":100004035,"tagName":"Europe Video","tagNameFormatted":"europe video","tagNameFormattedFull":"europe video","order":2,"__typename":"sectionHierarchy"},{"id":103470373,"tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|top videos|video all|europe video|international d","sectionHierarchyFormattedFull":"cnbc tv|top videos|video all|europe video|international digital originals","projectContent":[],"image":null,"section":{"headline":"International Digital Originals","id":103470373,"subType":"special_report","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","title":"International Digital Originals","url":"https:\u002F\u002Fwww.cnbc.com\u002Finternational-digital-originals\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"nessa anwar","authorFormattedFull":"nessa anwar","dateFirstPublished":"2022-07-04T01:39:09+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","pageName":"7000251960|video\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches","shortDatePublished":"07\u002F03\u002F2022","shortDateLastPublished":"10\u002F24\u002F2023","shortDateFirstPublished":"07\u002F03\u002F2022","airDate":"7\u002F3\u002F2022","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":825,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000251960","mediaid":"cnbc_7000251960","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000251960 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000251960 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107082945-Thumbnail_Digital_Originals_QUAD_V3_Clean.jpg?v=1656576009","usageRule":"NA","vcpsId":7000251960,"videoStatus":"Unrestricted","uploadDate":"2022-06-30T07:13:24+0000","__typename":"cnbcvideo"},{"id":106989446,"title":"Why a coup in Guinea was felt around the world","type":"cnbcvideo","brand":"cnbc","linkHeadline":"Why a coup in Guinea was felt around the world","shorterHeadline":"Why a coup in Guinea was felt around the world","premium":false,"native":false,"promoImage":{"id":106990143,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106990143-GettyImages-1235315196.jpg?v=1707312666","__typename":"infographic"},"author":[{"id":105841342,"name":"Timothyna Afua Duncan","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftimothyna-duncan\u002F","__typename":"creator","tagName":"Timothyna Duncan","tagNameFormatted":"timothyna dunca"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","creatorOverwrite":null,"datePublished":"2021-12-16T08:33:46+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 14th 2023","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"Why a coup in Guinea was felt around the world","headline":"Why a coup in Guinea was felt around the world","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Why a coup in Guinea was felt around the world","description":"A coup in mineral-rich Guinea has rattled markets and disrupted mining operations beyond West Africa. The coastal country boasts some of the world's largest reserves of many minerals, including bauxite and iron ore. The military's overthrow of Guinea's long-serving president, Alpha Conde, has added further pressure to already strained supply chains.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000224309\u002FMBR\u002F9382f080-2289-11ee-9d01-6f3d7e5db76c\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105056599,"headline":null,"tagName":"World economy","tagNameFormatted":"world economy","tagNameFormattedFull":"world economy","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"},{"id":105056669,"headline":null,"tagName":"Metal Commodities","tagNameFormatted":"metal commoditi","tagNameFormattedFull":"metal commodities","type":"tag","__typename":"tag"},{"id":105056674,"headline":null,"tagName":"Metals and minerals industry","tagNameFormatted":"metals and mine","tagNameFormattedFull":"metals and minerals industry","type":"tag","__typename":"tag"},{"id":105638309,"headline":null,"tagName":"Guinea","tagNameFormatted":"guinea","tagNameFormattedFull":"guinea","type":"place","__typename":"tag"},{"id":106480095,"headline":null,"tagName":"African Union","tagNameFormatted":"african union","tagNameFormattedFull":"african union","type":"organization","__typename":"tag"},{"id":105060986,"headline":null,"tagName":"West Africa","tagNameFormatted":"west africa","tagNameFormattedFull":"west africa","type":"place","__typename":"tag"},{"id":105058746,"headline":null,"tagName":"Aluminum mining and refining","tagNameFormatted":"aluminum mining","tagNameFormattedFull":"aluminum mining and refining","type":"tag","__typename":"tag"},{"id":105178564,"headline":null,"tagName":"Base metal markets","tagNameFormatted":"base metal mark","tagNameFormattedFull":"base metal markets","type":"tag","__typename":"tag"},{"id":105654930,"headline":null,"tagName":"Precious metals industry","tagNameFormatted":"precious metals","tagNameFormattedFull":"precious metals industry","type":"tag","__typename":"tag"},{"id":105065737,"headline":null,"tagName":"Metals","tagNameFormatted":"metals","tagNameFormattedFull":"metals","type":"tag","__typename":"tag"},{"id":105222403,"headline":null,"tagName":"Iron markets","tagNameFormatted":"iron markets","tagNameFormattedFull":"iron markets","type":"tag","__typename":"tag"},{"id":105882821,"headline":null,"tagName":"Coups d'etat","tagNameFormatted":"coups detat","tagNameFormattedFull":"coups detat","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"world economy|intl digital vi|metal commoditi|metals and mine|guinea|african union|west africa|aluminum mining|base metal mark|precious metals|metals|iron markets|coups detat","relatedTagsFilteredFormattedFull":"world economy|intl digital video|metal commodities|metals and minerals industry|guinea|african union|west africa|aluminum mining and refining|base metal markets|precious metals industry|metals|iron markets|coups detat","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":10001019,"headline":"Precious Metals and Mining","tagName":"Precious Metals and Minerals Mining","tagNameFormatted":"precious metals","tagNameFormattedFull":"precious metals and minerals mining","type":"franchise","__typename":"tag"},{"id":10001016,"headline":"Aluminum Producers","tagName":"Aluminum Producers","tagNameFormatted":"aluminum produc","tagNameFormattedFull":"aluminum producers","type":"franchise","__typename":"tag"},{"id":10000681,"headline":"Supply Chain Management","tagName":"Supply Chain Management","tagNameFormatted":"supply chain ma","tagNameFormattedFull":"supply chain management","type":"franchise","__typename":"tag"},{"id":10000824,"headline":"Supply and Demand","tagName":"Supply and Demand","tagNameFormatted":"supply and dema","tagNameFormattedFull":"supply and demand","type":"franchise","__typename":"tag"},{"id":33057388,"headline":"Metal Commodities","tagName":"Metal Commodities","tagNameFormatted":"metal commoditi","tagNameFormattedFull":"metal commodities","type":"franchise","__typename":"tag"},{"id":10001004,"headline":"Metals","tagName":"Metals","tagNameFormatted":"metals","tagNameFormattedFull":"metals","type":"franchise","__typename":"tag"},{"id":10001017,"headline":"Diversified Metals and Mining","tagName":"Diversified Metals and Mining","tagNameFormatted":"diversified met","tagNameFormattedFull":"diversified metals and mining","type":"franchise","__typename":"tag"},{"id":10001136,"headline":"Semiconductors and Semiconductor Equipment","tagName":"Semiconductors and Semiconductor Equipment","tagNameFormatted":"semiconductors ","tagNameFormattedFull":"semiconductors and semiconductor equipment","type":"franchise","__typename":"tag"},{"id":10000074,"headline":"Semiconductors","tagName":"Semiconductors","tagNameFormatted":"semiconductors","tagNameFormattedFull":"semiconductors","type":"franchise","__typename":"tag"},{"id":10001106,"headline":"Semiconductor Equipment","tagName":"Semiconductor Equipment","tagNameFormatted":"semiconductor e","tagNameFormattedFull":"semiconductor equipment","type":"franchise","__typename":"tag"},{"id":104958552,"headline":"Along the Belt and Road","tagName":"Along the Belt and Road","tagNameFormatted":"along the belt ","tagNameFormattedFull":"along the belt and road","type":"franchise","__typename":"tag"},{"id":101758233,"headline":"World News","tagName":"World News","tagNameFormatted":"world news","tagNameFormattedFull":"world news","type":"franchise","__typename":"tag"},{"id":10000834,"headline":"World Economy","tagName":"World Economy","tagNameFormatted":"world economy","tagNameFormattedFull":"world economy","type":"franchise","__typename":"tag"},{"id":105229305,"headline":"World Politics","tagName":"World Politics","tagNameFormatted":"world politics","tagNameFormattedFull":"world politics","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|international d|precious metals|aluminum produc|supply chain ma|supply and dema|metal commoditi|metals|diversified met|semiconductors |semiconductors|semiconductor e|along the belt |world news|world economy|world politics","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|international digital originals|precious metals and minerals mining|aluminum producers|supply chain management|supply and demand|metal commodities|metals|diversified metals and mining|semiconductors and semiconductor equipment|semiconductors|semiconductor equipment|along the belt and road|world news|world economy|world politics","relatedVideoContent":[],"dateLastPublished":"2023-07-14T21:11:01+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"timothyna dunca","authorFormattedFull":"timothyna duncan","dateFirstPublished":"2021-12-16T08:33:46+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","pageName":"7000224309|video\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world","shortDatePublished":"12\u002F16\u002F2021","shortDateLastPublished":"07\u002F14\u002F2023","shortDateFirstPublished":"12\u002F16\u002F2021","airDate":"12\u002F16\u002F2021","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":584,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000224309","mediaid":"cnbc_7000224309","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000224309 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000224309 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106990143-GettyImages-1235315196.jpg?v=1707312666","usageRule":"NA","vcpsId":7000224309,"videoStatus":"Unrestricted","uploadDate":"2021-12-15T09:09:27+0000","__typename":"cnbcvideo"},{"id":106977328,"title":"COP26 had big ambitions — here's why it fell short","type":"cnbcvideo","brand":"cnbc","linkHeadline":"COP26 had big ambitions — here's why it fell short","shorterHeadline":"COP26 had big ambitions — here's why it fell short","premium":false,"native":false,"promoImage":{"id":106977330,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106977330-Thumbnail_Explains_COP_26_Fell_Short_Clean.jpg?v=1637238006","__typename":"infographic"},"author":[{"id":104418030,"name":"Tom Chitty","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftom-chitty\u002F","__typename":"creator","tagName":"Tom Chitty","tagNameFormatted":"tom chitty"},{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator","tagName":"Sam Meredith","tagNameFormatted":"sam meredith"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F11\u002F19\u002Fcop26-had-big-ambitions-heres-why-it-fell-short.html","creatorOverwrite":null,"datePublished":"2021-11-19T08:52:20+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 14th 2023","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"COP26 had big ambitions; here's why it fell short","headline":"COP26 had big ambitions — here's why it fell short","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"COP26 had big ambitions — here's why it fell short","description":"COP26 was billed as the last, best chance to save the planet. So what happened inside the conference center, and will it really solve our climate emergency?","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbf3ad7b243694bfb88d0d020c13d69ea\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM11D18\u002F7000220186\u002F1637245792312-COPfailed_explains_final_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000220186\u002FMBR\u002F6e47fea0-2289-11ee-9d01-6f3d7e5db76c\u002F1637245792312-COPfailed_explains_final.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbf3ad7b243694bfb88d0d020c13d69ea\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105056889,"headline":null,"tagName":"Environment","tagNameFormatted":"environment","tagNameFormattedFull":"environment","type":"tag","__typename":"tag"},{"id":10000938,"headline":null,"tagName":"United Nations","tagNameFormatted":"united nations","tagNameFormattedFull":"united nations","type":"organization","__typename":"tag"},{"id":105067437,"headline":null,"tagName":"Climate","tagNameFormatted":"climate","tagNameFormattedFull":"climate","type":"tag","__typename":"tag"},{"id":105062775,"headline":null,"tagName":"Climate change","tagNameFormatted":"climate change","tagNameFormattedFull":"climate change","type":"tag","__typename":"tag"},{"id":106945704,"headline":null,"tagName":"COP 26","tagNameFormatted":"cop 26","tagNameFormattedFull":"cop 26","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"environment|united nations|climate|climate change|cop 26|intl digital vi","relatedTagsFilteredFormattedFull":"environment|united nations|climate|climate change|cop 26|intl digital video","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|cnbc explains","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|cnbc explains","relatedVideoContent":[],"dateLastPublished":"2023-07-14T21:11:01+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":3,"__typename":"sectionHierarchy"},{"id":106915556,"tagName":"Climate","tagNameFormatted":"climate","tagNameFormattedFull":"climate","order":2,"__typename":"sectionHierarchy"},{"id":106936664,"tagName":"The Road to COP26","tagNameFormatted":"the road to cop","tagNameFormattedFull":"the road to cop26","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|climate|the road to cop","sectionHierarchyFormattedFull":"technology|climate|the road to cop26","projectContent":[],"image":null,"section":{"headline":"The Road to COP26","id":106936664,"subType":"special_report","tagName":"The Road to COP26","tagNameFormatted":"the road to cop","tagNameFormattedFull":"the road to cop26","title":"The Road to COP26","url":"https:\u002F\u002Fwww.cnbc.com\u002Fthe-road-to-cop26\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"tom chitty|sam meredith","authorFormattedFull":"tom chitty|sam meredith","dateFirstPublished":"2021-11-19T08:52:20+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2021\u002F11\u002F19\u002Fcop26-had-big-ambitions-heres-why-it-fell-short.html","pageName":"7000220186|video\u002F2021\u002F11\u002F19\u002Fcop26-had-big-ambitions-heres-why-it-fell-short","shortDatePublished":"11\u002F19\u002F2021","shortDateLastPublished":"07\u002F14\u002F2023","shortDateFirstPublished":"11\u002F19\u002F2021","airDate":"11\u002F19\u002F2021","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":581,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fbf3ad7b243694bfb88d0d020c13d69ea\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000220186","mediaid":"cnbc_7000220186","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F11\u002F19\u002Fcop26-had-big-ambitions-heres-why-it-fell-short.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000220186 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000220186 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106977330-Thumbnail_Explains_COP_26_Fell_Short_Clean.jpg?v=1637238006","usageRule":"NA","vcpsId":7000220186,"videoStatus":"Unrestricted","uploadDate":"2021-11-18T12:13:39+0000","__typename":"cnbcvideo"}],"__typename":"twoColumnImageDense"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"halfHalfBreaker","source":"100004038","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"}],"aboutThisSection":null,"additionalMetadata":null,"additionalSectionContentFormatted":"NA","additionalSectionContentFormattedFull":"NA","authorFormatted":"NA","authorFormattedFull":"NA","brand":"cnbc","color":null,"contentClassification":[],"cmsTemplate":"Topic Template","creatorOverwrite":null,"creatorOverwriteFormatted":"NA","dateFirstPublished":"2013-05-10T14:41:50+0000","dateLastPublished":"2024-06-16T13:41:55+0000","datePublished":"2016-09-27T13:00:09+0000","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","expires":null,"headline":"World News & Analysis","id":100727362,"liveURL":"\u002Fworld-top-news\u002F","native":false,"pageName":"100727362|world-top-news","premium":false,"projectContentFormatted":"NA","projectContentFormattedFull":"NA","projectTeamContentFormatted":"cnbc europe tea|cnbc asia team","projectTeamContentFormattedFull":"cnbc europe team|cnbc asia team","relatedTagsFilteredFormatted":"cnbc meets|charting asia","relatedTagsFilteredFormattedFull":"cnbc meets|charting asia","sectionHierarchyFormatted":"international t","sectionHierarchyFormattedFull":"international top news and analysis","seoTitle":"International Business, World News & Global Stock Market Analysis","shortDateFirstPublished":"05\u002F10\u002F2013","shortDateLastPublished":"06\u002F16\u002F2024","shortDatePublished":"9\u002F27\u002F2016","shortenedUrls":null,"slug":"International: Top News and Analysis","sourceOrganizationFormatted":"NA","sourceOrganizationFormattedFull":"NA","subDomain":"https:\u002F\u002Fwww.cnbc.com","subType":"section","tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","template":"Home Page International","title":"International: Top News And Analysis","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F","canonicalUrlOverride":null,"vcpsId":null,"additionalSectionContent":[],"author":[],"featuredMedia":null,"projectContent":[],"projectTeamContent":[{"headline":null,"id":100002778,"tagName":"CNBC Europe Team","tagNameFormatted":"cnbc europe tea","tagNameFormattedFull":"cnbc europe team","__typename":"team"},{"headline":null,"id":100002784,"tagName":"CNBC Asia Team","tagNameFormatted":"cnbc asia team","tagNameFormattedFull":"cnbc asia team","__typename":"team"}],"promoImage":null,"publisher":{"logo":"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png","name":"CNBC","__typename":"publisher"},"relatedContent":[{"headline":"U.S. News","id":15837362,"tagName":"US: News","tagNameFormatted":"us news","tagNameFormattedFull":"us news","type":"franchise","__typename":"tag"},{"headline":"Asia-Pacific News","id":19832390,"tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"headline":"Europe News","id":19794221,"tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"}],"relatedTags":[{"id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","__typename":"tag"},{"id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","__typename":"tag"}],"relatedTagsFiltered":[{"headline":"CNBC Meets","id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","tagNameFormatted":"cnbc meets","tagNameFormattedFull":"cnbc meets","type":"franchise","__typename":"tag"},{"headline":"Charting Asia with Daryl Guppy","id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","tagNameFormatted":"charting asia","tagNameFormattedFull":"charting asia","type":"franchise","__typename":"tag"}],"section":{"eyebrow":"CNBC Utilities Page","headline":"CNBC Utilities Page","id":101050794,"subType":"section","tagName":"CNBC Utilities Page","tagNameFormatted":"cnbc utilities ","tagNameFormattedFull":"cnbc utilities page","title":"CNBC Utilities Page","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F","__typename":"franchise"},"sectionHierarchy":[{"id":100727362,"order":1,"tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","__typename":"sectionHierarchy"}],"sourceOrganization":null,"__typename":"page","queryParams":{}}},"menu":{"menu":{"header":{"expanded":[{"hideInSitemap":true,"name":"subscribe","label":"Subscribe","host":"","path":"","items":[{"name":"subscribe_investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002Fsubscribe\u002F?__source=InvestingClub%7Consite%7Cmarketing%7Csignup%7Cglobalnav&tpcc=InvestingClub%7Consite%7Cmarketing%7Csignup%7Cglobalnav%7Csubscribebutton"},{"name":"subscribe_pro","label":"Pro","host":"","path":"\u002Fapplication\u002Fpro?__source=Pro%7Consite%7Cmarketing%7Csignup%7Cglobalnav&tpcc=Pro%7Consite%7Cmarketing%7Csignup%7Cglobalnav%7Csubscribebutton"}]},{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"sports","label":"Sports","host":"","path":"\u002Fsports\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[{"name":"advisor_council","label":"Advisor Council","path":"\u002Fadvisor-council\u002F","host":"","items":[]},{"name":"ask_an_advisor","label":"Ask an Advisor","path":"\u002Fask-an-advisor\u002F","host":"","items":[]},{"name":"etf_strategist","label":"ETF Strategist","path":"\u002Fetf-strategist\u002F","host":"","items":[]},{"name":"fa_hub","label":"FA Hub","path":"\u002Ffinancial-advisors\u002F","host":"","items":[]},{"name":"fa_100","label":"FA 100","path":"\u002Ftop-rated-wealth-management-firms\u002F","host":"","items":[]},{"name":"fa_playbook","label":"FA Playbook","path":"\u002Ffa-playbook\u002F","host":"","items":[]},{"name":"life_changes","label":"Life Changes","path":"\u002Flife-changes\u002F","host":"","items":[]},{"name":"the_new_road_to_retirement","label":"The New Road to Retirement","path":"\u002Fnew-road-to-retirement\u002F","host":"","items":[]},{"name":"year-end_planning","label":"Year-End Planning","path":"\u002Fyear-end-planning\u002F","host":"","items":[]},{"name":"your_money","label":"Your Money","path":"\u002Fyour-money\u002F","host":"","items":[]},{"name":"women_and_health","label":"Women and Wealth","path":"\u002Fwomen-and-wealth\u002F","host":"","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"cnbc_tv","label":"CNBC TV","host":"","path":"\u002Ftv\u002F","items":[{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Ftrade-alerts\u002F","items":[]},{"name":"meeting_videos","label":"Meeting Videos","host":"","path":"\u002Finvestingclub\u002Fvideo\u002F","items":[]},{"name":"homestretch","label":"Homestretch","host":"","path":"\u002Finvestingclub\u002Fhomestretch\u002F","items":[]},{"name":"jims_comlumns","label":"Jim's Columns","host":"","path":"\u002Finvestingclub\u002Fjim-cramer-columns\u002F","items":[]},{"name":"education","label":"Education","host":"","path":"\u002Finvestingclub\u002Feducation\u002F","items":[]},{"name":"subscribe_to_investing_club","label":"Subscribe","host":"","path":"\u002Finvestingclub\u002Fsubscribe","items":[]},{"name":"user_signin_investing_club","label":"Sign In","host":"","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_live","label":"Pro Live","host":"","path":"\u002Fpro\u002F","items":[]},{"name":"pro_full_episodes","label":"Full Episodes","host":"","path":"\u002Fpro\u002Ffull-business-day-episodes\u002F","items":[]},{"name":"pro_stock_screener","label":"Stock Screener","host":"","path":"\u002Fpro-stock-screener\u002F","items":[]},{"name":"market_forecast","label":"Market Forecast","host":"","path":"\u002F2023\u002F05\u002F11\u002Fmarket-strategist-survey-forecast.html","items":[]},{"name":"options_investing","label":"Options Investing","host":"","path":"\u002Fpro\u002Foptions-investing\u002F","items":[]},{"name":"chart_investing_pro","label":"Chart Investing","host":"","path":"\u002Fcnbc-pro-chart-investing\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin_pro","label":"Sign In","host":"","items":[]}]},{"name":"newsletters","label":"Newsletters","host":"","path":"\u002Fsign-up-for-cnbc-newsletters\u002F","items":[]},{"name":"select","label":"Select","host":"","path":"\u002Fselect\u002F","items":[{"name":"credit-cards","label":"Credit Cards","host":"","path":"\u002Fselect\u002Fcredit-cards\u002F","items":[{"name":"find-the-credit-card-for-you","label":"Find the Credit Card for You","host":"","path":"\u002Fselect\u002Fcredit-card-marketplace\u002F","items":[]},{"name":"best-credit-cards","label":"Best Credit Cards","host":"","path":"\u002Fselect\u002Fbest-credit-cards\u002F","items":[]},{"name":"best-rewards-credit-cards","label":"Best Rewards Credit Cards","host":"","path":"\u002Fselect\u002Fbest-rewards-credit-cards\u002F","items":[]},{"name":"best-travel-credit-cards","label":"Best Travel Credit Cards","host":"","path":"\u002Fselect\u002Fbest-travel-credit-cards\u002F","items":[]},{"name":"best-0%-apr-credit-cards","label":"Best 0% APR Credit Cards","host":"","path":"\u002Fselect\u002Fbest-zero-interest-credit-cards\u002F","items":[]},{"name":"best-balance-transfer-credit-cards","label":"Best Balance Transfer Credit Cards","host":"","path":"\u002Fselect\u002Fbest-balance-transfer-credit-cards\u002F","items":[]},{"name":"best-cash-back-credit-cards","label":"Best Cash Back Credit Cards","host":"","path":"\u002Fselect\u002Fbest-cash-back-credit-cards\u002F","items":[]},{"name":"best-credit-card-welcome-bonuses","label":"Best Credit Card Welcome Bonuses","host":"","path":"\u002Fselect\u002Fbest-credit-card-sign-up-bonuses\u002F","items":[]},{"name":"best-credit-cards-to-build-credit","label":"Best Credit Cards to Build Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]}]},{"name":"loans","label":"Loans","host":"","path":"\u002Fselect\u002Floans\u002F","items":[{"name":"find-the-best-personal-loan-for-you","label":"Find the Best Personal Loan for You","host":"","path":"\u002Fselect\u002Fpersonal-loan-marketplace\u002F","items":[]},{"name":"best-personal-loans","label":"Best Personal Loans","host":"","path":"\u002Fselect\u002Fbest-personal-loans\u002F","items":[]},{"name":"best-debt-consolidation-loans","label":"Best Debt Consolidation Loans","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans\u002F","items":[]},{"name":"best-loans-to-refinance-credit-card-debt","label":"Best Loans to Refinance Credit Card Debt","host":"","path":"\u002Fselect\u002Fbest-loans-for-refinancing-credit-card-debt\u002F","items":[]},{"name":"best-loans-with-fast-funding","label":"Best Loans with Fast Funding","host":"","path":"\u002Fselect\u002F6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day\u002F","items":[]},{"name":"best-small-personal-loans","label":"Best Small Personal Loans","host":"","path":"\u002Fselect\u002Fbest-small-personal-loans\u002F","items":[]},{"name":"best-large-personal-loans","label":"Best Large Personal Loans","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-borrow-50000\u002F","items":[]},{"name":"best-personal-loans-to-apply-online-","label":"Best Personal Loans to Apply Online","host":"","path":"\u002Fselect\u002Fpersonal-loan-online-applications\u002F","items":[]},{"name":"best-student-loan-refinance","label":"Best Student Loan Refinance","host":"","path":"\u002Fselect\u002Fbest-student-loan-refinance-companies\u002F","items":[]}]},{"name":"banking","label":"Banking","host":"","path":"\u002Fselect\u002Fbanking\u002F","items":[{"name":"find-the-savings-account-for-you","label":"Find the Savings Account for You","host":"","path":"\u002Fselect\u002Fsavings-marketplace\u002F","items":[]},{"name":"best-high-yield-savings-accounts","label":"Best High Yield Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-high-yield-savings-accounts\u002F","items":[]},{"name":"best-big-bank-savings-accounts-","label":"Best Big Bank Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-and-mortar-savings-accounts\u002F","items":[]},{"name":"best-big-bank-checking-accounts","label":"Best Big Bank Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-mortar-checking-accounts\u002F","items":[]},{"name":"best-no-fee-checking-accounts","label":"Best No Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-no-fee-checking-accounts\u002F","items":[]},{"name":"no-overdraft-fee-checking-accounts-","label":"No Overdraft Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fchecking-accounts-with-no-overdraft-fees\u002F","items":[]},{"name":"best-checking-account-bonuses","label":"Best Checking Account Bonuses","host":"","path":"\u002Fselect\u002Fbest-checking-account-bonuses\u002F","items":[]},{"name":"best-money-market-accounts","label":"Best Money Market Accounts","host":"","path":"\u002Fselect\u002Fbest-money-market-accounts\u002F","items":[]},{"name":"best-cds","label":"Best CDs","host":"","path":"\u002Fselect\u002Fbest-certificates-of-deposits\u002F","items":[]},{"name":"best-credit-unions","label":"Best Credit Unions","host":"","path":"\u002Fselect\u002Fbest-credit-unions\u002F","items":[]}]},{"name":"mortgages","label":"Mortgages","host":"","path":"\u002Fselect\u002Fmortgages\u002F","items":[{"name":"best-mortgages","label":"Best Mortgages","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders\u002F","items":[]},{"name":"best-mortgages-for-small-down-payment","label":"Best Mortgages for Small Down Payment","host":"","path":"\u002Fselect\u002Fmortgage-lenders-for-a-small-down-payment\u002F","items":[]},{"name":"best-mortgages-for-no-down-payment","label":"Best Mortgages for No Down Payment","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-va-loans-usda-loans\u002F","items":[]},{"name":"best-mortgages-with-no-origination-fee","label":"Best Mortgages with No Origination Fee","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-that-dont-charge-origination-fees\u002F","items":[]},{"name":"best-mortgages-for-average-credit-score","label":"Best Mortgages for Average Credit Score","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-average-credit-score\u002F","items":[]},{"name":"adjustable-rate-mortgages","label":"Adjustable Rate Mortgages","host":"","path":"\u002Fselect\u002Fadjustable-rate-mortgage-pros-and-cons\u002F","items":[]},{"name":"affording-a-mortgage-","label":"Affording a Mortgage","host":"","path":"\u002Fselect\u002Fmortgage-affordability\u002F","items":[]}]},{"name":"insurance","label":"Insurance","host":"","path":"\u002Fselect\u002Finsurance\u002F","items":[{"name":"best-life-insurance-","label":"Best Life Insurance","host":"","path":"\u002Fselect\u002Fbest-life-insurance-companies\u002F","items":[]},{"name":"best-homeowners-insurance-","label":"Best Homeowners Insurance","host":"","path":"\u002Fselect\u002Fbest-homeowners-insurance-companies\u002F","items":[]},{"name":"best-renters-insurance-","label":"Best Renters Insurance","host":"","path":"\u002Fselect\u002Fbest-renters-insurance-companies\u002F","items":[]},{"name":"best-car-insurance-","label":"Best Car Insurance","host":"","path":"\u002Fselect\u002Fbest-car-insurance-companies\u002F","items":[]},{"name":"travel-insurance-","label":"Travel Insurance","host":"","path":"\u002Fselect\u002Ftravel-insurance-guide\u002F","items":[]}]},{"name":"credit-monitoring","label":"Credit Monitoring","host":"","path":"\u002Fselect\u002Fcredit-monitoring\u002F","items":[{"name":"best-credit-monitoring-services","label":"Best Credit Monitoring Services","host":"","path":"\u002Fselect\u002Fbest-credit-monitoring-services\u002F","items":[]},{"name":"best-identity-theft-protection","label":"Best Identity Theft Protection","host":"","path":"\u002Fselect\u002Fbest-identity-theft-protection-services\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]},{"name":"credit-repair-services","label":"Credit Repair Services","host":"","path":"\u002Fselect\u002Fhow-do-credit-repair-services-work\u002F","items":[]}]},{"name":"personal-finance","label":"Personal Finance","host":"","path":"\u002Fselect\u002Fpersonal-finance\u002F","items":[{"name":"best-budgeting-apps","label":"Best Budgeting Apps","host":"","path":"\u002Fselect\u002Fbest-budgeting-apps\u002F","items":[]},{"name":"best-expense-tracker-apps","label":"Best Expense Tracker Apps","host":"","path":"\u002Fselect\u002Fbest-expense-tracker-apps\u002F","items":[]},{"name":"best-money-transfer-apps","label":"Best Money Transfer Apps","host":"","path":"\u002Fselect\u002Fbest-money-transfer-payment-apps\u002F","items":[]},{"name":"best-resale-apps-and-sites","label":"Best Resale Apps and Sites","host":"","path":"\u002Fselect\u002Fbest-resale-apps-and-websites\u002F","items":[]},{"name":"buy-now-pay-later-(bnpl)-apps","label":"Buy Now Pay Later (BNPL) Apps","host":"","path":"\u002Fselect\u002Fbest-buy-now-pay-later-apps\u002F","items":[]},{"name":"best-debt-relief-","label":"Best Debt Relief","host":"","path":"\u002Fselect\u002Fbest-debt-relief-companies\u002F","items":[]}]},{"name":"small-business","label":"Small Business","host":"","path":"\u002Fselect\u002Fsmall-business\u002F","items":[{"name":"best-small-business-savings-accounts","label":"Best Small Business Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-small-business-savings-accounts\u002F","items":[]},{"name":"best-small-business-checking-accounts","label":"Best Small Business Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-business-checking-accounts\u002F","items":[]},{"name":"best-credit-cards-for-small-business","label":"Best Credit Cards for Small Business","host":"","path":"\u002Fselect\u002Fbest-small-business-credit-cards\u002F","items":[]},{"name":"best-small-business-loans","label":"Best Small Business Loans","host":"","path":"\u002Fselect\u002Fbest-small-business-loans\u002F","items":[]},{"name":"best-tax-software-for-small-business","label":"Best Tax Software for Small Business","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]}]},{"name":"taxes","label":"Taxes","host":"","path":"\u002Fselect\u002Ftaxes\u002F","items":[{"name":"filing-for-free","label":"Filing For Free","host":"","path":"\u002Fselect\u002Fhow-to-file-your-taxes-for-free\u002F","items":[]},{"name":"best-tax-software","label":"Best Tax Software","host":"","path":"\u002Fselect\u002Fbest-tax-software\u002F","items":[]},{"name":"best-tax-software-for-small-businesses","label":"Best Tax Software for Small Businesses","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]},{"name":"tax-refunds","label":"Tax Refunds","host":"","path":"\u002Fselect\u002Fhow-to-check-the-status-of-your-2020-tax-refund\u002F","items":[]},{"name":"tax-brackets","label":"Tax Brackets","host":"","path":"\u002Fselect\u002Ffederal-income-tax-brackets-tax-rates\u002F","items":[]},{"name":"tax-tips","label":"Tax Tips","host":"","path":"\u002Fselect\u002Fhow-to-reduce-taxable-income\u002F","items":[]},{"name":"tax-by-state","label":"Tax By State","host":"","path":"\u002Fselect\u002Fstates-with-no-income-tax\u002F","items":[]},{"name":"tax-payment-plans","label":"Tax Payment Plans","host":"","path":"\u002Fselect\u002Ftax-payment-plan-options\u002F","items":[]}]},{"name":"help-for-low-credit-scores","label":"Help for Low Credit Scores","host":"","path":"\u002Fselect\u002Flow-credit-scores\u002F","items":[{"name":"best-credit-cards-for-bad-credit","label":"Best Credit Cards for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-credit-cards-for-bad-credit\u002F","items":[]},{"name":"best-personal-loans-for-bad-credit","label":"Best Personal Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-personal-loans-for-bad-credit\u002F","items":[]},{"name":"best-debt-consolidation-loans-for-bad-credit","label":"Best Debt Consolidation Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans-for-bad-credit\u002F","items":[]},{"name":"personal-loans-if-you-don't-have-credit","label":"Personal Loans if You Don't Have Credit","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-to-consider-if-you-dont-have-credit-score\u002F","items":[]},{"name":"best-credit-cards-for-building-credit","label":"Best Credit Cards for Building Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]},{"name":"personal-loans-for-580-credit-score-or-lower","label":"Personal Loans for 580 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loans-to-apply-credit-score-580-or-lower\u002F","items":[]},{"name":"personal-loans-for-670-credit-score-or-lower","label":"Personal Loans for 670 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-credit-score-below-670\u002F","items":[]},{"name":"best-mortgages-for-bad-credit","label":"Best Mortgages for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-bad-credit-score\u002F","items":[]},{"name":"best-hardship-loans","label":"Best Hardship Loans","host":"","path":"\u002Fselect\u002Fbest-hardship-loans\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Fselect\u002Finvesting\u002F","items":[{"name":"best-ira-accounts","label":"Best IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-ira-accounts\u002F","items":[]},{"name":"best-roth-ira-accounts","label":"Best Roth IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-roth-ira-accounts\u002F","items":[]},{"name":"best-investing-apps","label":"Best Investing Apps","host":"","path":"\u002Fselect\u002Fbest-investing-apps\u002F","items":[]},{"name":"best-free-stock-trading-platforms","label":"Best Free Stock Trading Platforms","host":"","path":"\u002Fselect\u002Fbest-brokerage-free-stock-trading\u002F","items":[]},{"name":"best-robo-advisors","label":"Best Robo-Advisors","host":"","path":"\u002Fselect\u002Fbest-robo-advisors\u002F","items":[]},{"name":"index-funds","label":"Index Funds","host":"","path":"\u002Fselect\u002Fwhat-are-index-funds\u002F","items":[]},{"name":"mutual-funds","label":"Mutual Funds","host":"","path":"\u002Fselect\u002Fwhat-are-mutual-funds\u002F","items":[]},{"name":"etfs","label":"ETFs","host":"","path":"\u002Fselect\u002Fwhat-are-etfs-should-you-invest\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fselect\u002Fwhat-are-bonds\u002F","items":[]}]}]},{"name":"make-it","label":"Make It","host":"","path":"\u002Fmake-it\u002F","items":[]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"user_signin","label":"Sign In","host":"","path":"javascript:void(0);","items":[]},{"hideInSitemap":true,"name":"user_notifications","label":"Notifications","host":"","path":"#","items":[]},{"name":"account","label":"My Account","host":"","path":"","items":[{"name":"email","label":"","host":"","path":"","items":[]},{"name":"profile","label":"Profile","host":"","path":"\u002Faccount\u002F#profile","items":[]},{"name":"notifications","label":"Notifications","host":"","path":"\u002Faccount\u002F#notifications","items":[]},{"name":"subscriptions","label":"Subscriptions","host":"","path":"\u002Faccount\u002F#subscriptions","items":[]},{"name":"help","label":"Help","host":"","path":"\u002Faccount\u002F#help","items":[]},{"name":"user_signout","label":"Sign Out","host":"","path":"\u002Fpro\u002F","items":[]}]},{"name":"advertise_with_us","label":"Advertise With Us","host":"https:\u002F\u002Ftogether.nbcuni.com\u002Fadvertise\u002F?utm_source=cnbc&utm_medium=referral&utm_campaign=property_ad_pages&utm_content=header","path":"","items":[]},{"name":"Events","label":"Events","host":"www.cnbc.com","path":"\u002Fevents-nav-menu\u002F","items":[{"name":"Game Plan","label":"Game Plan","host":"www.cnbcevents.com","path":"\u002Fgame-plan-2024\u002F?__source=meganav|events","capacity":0,"items":[]},{"name":"CNBC Your Money","label":"CNBC Your Money","host":"www.cnbcevents.com","path":"\u002Fyour-money-2024\u002F?__source=meganav|events","capacity":0,"items":[]},{"name":"Delivering Alpha","label":"Delivering Alpha","host":"www.cnbcevents.com","path":"\u002Fdelivering-alpha-2023\u002F?__source=meganav|events","capacity":0,"startDate":"2023-09-28T04:00:00+0000","items":[]}]},{"name":"Special Reports","label":"Special Reports","host":"www.cnbc.com","path":"\u002Fspecial-reports\u002F","items":[{"name":"CNBC Changemakers","label":"CNBC Changemakers","host":"www.cnbc.com","path":"\u002Fcnbc-changemakers\u002F","items":[]},{"name":"CNBC Disruptor 50","label":"CNBC Disruptor 50","host":"www.cnbc.com","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"Sustainable Future","label":"Sustainable Future","host":"www.cnbc.com","path":"\u002Fsustainable-future\u002F","items":[]},{"name":"Cyber Report","label":"Cyber Report","host":"www.cnbc.com","path":"\u002Fcyber-report\u002F","items":[]},{"name":"Crypto World","label":"Crypto World","host":"www.cnbc.com","path":"\u002Fcryptoworld\u002F","items":[]},{"name":"The Bottom Line","label":"The Bottom Line","host":"www.cnbc.com","path":"\u002Fglobal-cfo-council\u002F","items":[]},{"name":"ETF Edge","label":"ETF Edge","host":"www.cnbc.com","path":"\u002Fetf-edge\u002F","items":[]},{"name":"Leadership Insights","label":"Leadership Insights","host":"www.cnbc.com","path":"\u002Fleadership-insights\u002F","items":[]},{"name":"Executive Edge","label":"Executive Edge","host":"www.cnbc.com","path":"\u002Fexecutive-edge\u002F","items":[]},{"name":"Technology Executive Council","label":"Technology Executive Council","host":"www.cnbc.com","path":"\u002Ftec\u002F","items":[]},{"name":"CNBC Work","label":"CNBC Work","host":"www.cnbc.com","path":"\u002Fwork\u002F","items":[]},{"name":"Small Business Playbook","label":"Small Business Playbook","host":"www.cnbc.com","path":"\u002Fsmall-business-playbook\u002F","items":[]},{"name":"Your Money","label":"Your Money","host":"www.cnbc.com","path":"\u002Fyour-money\u002F","items":[]},{"name":"Equity and Opportunity","label":"Equity and Opportunity","host":"www.cnbc.com","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"The Javers Files","label":"The Javers Files","host":"www.cnbc.com","path":"\u002Fthe-javers-files\u002F","items":[]},{"name":"AI Impact","label":"AI Impact","host":"www.cnbc.com","path":"\u002Fai-impact\u002F","items":[]},{"name":"TechCheck","label":"TechCheck","host":"www.cnbc.com","path":"\u002Ftechcheck\u002F","items":[]},{"name":"State of Freight","label":"State of Freight","host":"www.cnbc.com","path":"\u002Fstate-of-freight\u002F","items":[]},{"name":"Davos 2024: World Economic Forum","label":"Davos 2024: World Economic Forum","host":"www.cnbc.com","path":"\u002Fdavos-world-economic-forum\u002F","items":[]},{"name":"Tech Drivers","label":"Tech Drivers","host":"www.cnbc.com","path":"\u002Ftech-drivers\u002F","items":[]}]},{"name":"Podcasts","label":"Podcasts","host":"www.cnbc.com","path":"\u002Fpodcast\u002F","items":[{"label":"Worldwide Exchange Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F12\u002F11\u002Fworldwide-exchange-podcast.html","items":[]},{"label":"Squawk Pod","host":"www.cnbc.com","path":"\u002F2019\u002F09\u002F24\u002Fsquawk-pod.html","items":[]},{"label":"Squawk on the Street Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F08\u002F01\u002Fsquawk-on-the-street-podcast.html","items":[]},{"label":"Money Movers Podcast","host":"www.cnbc.com","path":"\u002F2023\u002F12\u002F11\u002Fmoney-movers-podcast.html","items":[]},{"label":"Halftime Report Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F07\u002F28\u002Fhalftime-report-podcast.html","items":[]},{"label":"The Exchange Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F12\u002F30\u002Fthe-exchange-podcast.html","items":[]},{"label":"Power Lunch Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F04\u002F11\u002Fpower-lunch-podcast.html","items":[]},{"label":"Closing Bell Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F03\u002F10\u002Fclosing-bell-podcast.html","items":[]},{"label":"Fast Money Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Ffast-money-podcast.html","items":[]},{"label":"Mad Money with Jim Cramer Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Fmad-money-with-jim-cramer-podcast.html","items":[]},{"label":"Last Call Podcast","host":"www.cnbc.com","path":"\u002F2023\u002F03\u002F03\u002Flast-call-podcast.html","items":[]},{"label":"Business News Update Podcast","host":"www.cnbc.com","path":"\u002F2024\u002F01\u002F15\u002Fbusiness-news-update-podcast.html","items":[]},{"label":"American Greed Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F09\u002F04\u002Famerican-greed-podcast.html","items":[]},{"label":"Manifest Space with Morgan Brennan","host":"www.cnbc.com","path":"\u002F2023\u002F04\u002F13\u002Fmanifest-space-with-morgan-brennan.html","items":[]},{"label":"TechCheck Podcast","host":"www.cnbc.com","path":"\u002F2021\u002F04\u002F09\u002Ftechcheck-podcast.html","items":[]},{"label":"Your Money Minute","host":"www.cnbc.com","path":"\u002F2020\u002F06\u002F05\u002Fyour-money-minute.html","items":[]},{"label":"ETF Edge Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F04\u002F21\u002Fetf-edge-podcast.html","items":[]},{"label":"The Keynote by CNBC Events","host":"www.cnbc.com","path":"\u002F2020\u002F01\u002F06\u002Fthe-keynote-by-cnbc-events.html","items":[]},{"label":"CNBC Special Podcast: China’s Corporate Spy War","host":"www.cnbc.com","path":"\u002F2024\u002F02\u002F06\u002Fcnbc-special-podcast-chinas-corporate-spy-war.html","items":[]},{"label":"CNBC Special Podcast: Charlie Munger - A Life of Wit and Wisdom","host":"www.cnbc.com","path":"\u002F2023\u002F12\u002F12\u002Fcnbc-special-podcast-charlie-munger-a-life-of-wit-and-wisdom.html","items":[]}]}],"collapsed":[{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"sports","label":"Sports","host":"","path":"\u002Fsports\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[]},{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"cnbc_tv","label":"CNBC TV","host":"","path":"\u002Ftv\u002F","items":[{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Ftrade-alerts\u002F","items":[]},{"name":"meeting_videos","label":"Meeting Videos","host":"","path":"\u002Finvestingclub\u002Fvideo\u002F","items":[]},{"name":"homestretch","label":"Homestretch","host":"","path":"\u002Finvestingclub\u002Fhomestretch\u002F","items":[]},{"name":"jims_comlumns","label":"Jim's Columns","host":"","path":"\u002Finvestingclub\u002Fjim-cramer-columns\u002F","items":[]},{"name":"education","label":"Education","host":"","path":"\u002Finvestingclub\u002Feducation\u002F","items":[]},{"name":"subscribe_to_investing_club","label":"Subscribe","host":"","path":"\u002Finvestingclub\u002Fsubscribe","items":[]},{"name":"user_signin_investing_club","label":"Sign In","host":"","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_live","label":"Pro Live","host":"","path":"\u002Fpro\u002F","items":[]},{"name":"pro_full_episodes","label":"Full Episodes","host":"","path":"\u002Fpro\u002Ffull-business-day-episodes\u002F","items":[]},{"name":"pro_stock_screener","label":"Stock Screener","host":"","path":"\u002Fpro-stock-screener\u002F","items":[]},{"name":"market_forecast","label":"Market Forecast","host":"","path":"\u002F2023\u002F05\u002F11\u002Fmarket-strategist-survey-forecast.html","items":[]},{"name":"options_investing","label":"Options Investing","host":"","path":"\u002Fpro\u002Foptions-investing\u002F","items":[]},{"name":"chart_investing_pro","label":"Chart Investing","host":"","path":"\u002Fcnbc-pro-chart-investing\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin_pro","label":"Sign In","host":"","items":[]}]}],"edition":[{"name":"us_edition","label":"USA","host":"","path":"\u002F?region=usa","items":[]},{"name":"international_edition","label":"INTL","host":"","path":"\u002Fworld\u002F","items":[]}],"featured":[{"name":"makeit","label":"Make It","host":"","path":"\u002Fmake-it\u002F","items":[]},{"name":"select","label":"Select","host":"","path":"\u002Fselect\u002F","items":[{"name":"credit-cards","label":"Credit Cards","host":"","path":"\u002Fselect\u002Fcredit-cards\u002F","items":[{"name":"find-the-credit-card-for-you","label":"Find the Credit Card for You","host":"","path":"\u002Fselect\u002Fcredit-card-marketplace\u002F","items":[]},{"name":"best-credit-cards","label":"Best Credit Cards","host":"","path":"\u002Fselect\u002Fbest-credit-cards\u002F","items":[]},{"name":"best-rewards-credit-cards","label":"Best Rewards Credit Cards","host":"","path":"\u002Fselect\u002Fbest-rewards-credit-cards\u002F","items":[]},{"name":"best-travel-credit-cards","label":"Best Travel Credit Cards","host":"","path":"\u002Fselect\u002Fbest-travel-credit-cards\u002F","items":[]},{"name":"best-0%-apr-credit-cards","label":"Best 0% APR Credit Cards","host":"","path":"\u002Fselect\u002Fbest-zero-interest-credit-cards\u002F","items":[]},{"name":"best-balance-transfer-credit-cards","label":"Best Balance Transfer Credit Cards","host":"","path":"\u002Fselect\u002Fbest-balance-transfer-credit-cards\u002F","items":[]},{"name":"best-cash-back-credit-cards","label":"Best Cash Back Credit Cards","host":"","path":"\u002Fselect\u002Fbest-cash-back-credit-cards\u002F","items":[]},{"name":"best-credit-card-welcome-bonuses","label":"Best Credit Card Welcome Bonuses","host":"","path":"\u002Fselect\u002Fbest-credit-card-sign-up-bonuses\u002F","items":[]},{"name":"best-credit-cards-to-build-credit","label":"Best Credit Cards to Build Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]}]},{"name":"loans","label":"Loans","host":"","path":"\u002Fselect\u002Floans\u002F","items":[{"name":"find-the-best-personal-loan-for-you","label":"Find the Best Personal Loan for You","host":"","path":"\u002Fselect\u002Fpersonal-loan-marketplace\u002F","items":[]},{"name":"best-personal-loans","label":"Best Personal Loans","host":"","path":"\u002Fselect\u002Fbest-personal-loans\u002F","items":[]},{"name":"best-debt-consolidation-loans","label":"Best Debt Consolidation Loans","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans\u002F","items":[]},{"name":"best-loans-to-refinance-credit-card-debt","label":"Best Loans to Refinance Credit Card Debt","host":"","path":"\u002Fselect\u002Fbest-loans-for-refinancing-credit-card-debt\u002F","items":[]},{"name":"best-loans-with-fast-funding","label":"Best Loans with Fast Funding","host":"","path":"\u002Fselect\u002F6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day\u002F","items":[]},{"name":"best-small-personal-loans","label":"Best Small Personal Loans","host":"","path":"\u002Fselect\u002Fbest-small-personal-loans\u002F","items":[]},{"name":"best-large-personal-loans","label":"Best Large Personal Loans","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-borrow-50000\u002F","items":[]},{"name":"best-personal-loans-to-apply-online-","label":"Best Personal Loans to Apply Online","host":"","path":"\u002Fselect\u002Fpersonal-loan-online-applications\u002F","items":[]},{"name":"best-student-loan-refinance","label":"Best Student Loan Refinance","host":"","path":"\u002Fselect\u002Fbest-student-loan-refinance-companies\u002F","items":[]}]},{"name":"banking","label":"Banking","host":"","path":"\u002Fselect\u002Fbanking\u002F","items":[{"name":"find-the-savings-account-for-you","label":"Find the Savings Account for You","host":"","path":"\u002Fselect\u002Fsavings-marketplace\u002F","items":[]},{"name":"best-high-yield-savings-accounts","label":"Best High Yield Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-high-yield-savings-accounts\u002F","items":[]},{"name":"best-big-bank-savings-accounts-","label":"Best Big Bank Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-and-mortar-savings-accounts\u002F","items":[]},{"name":"best-big-bank-checking-accounts","label":"Best Big Bank Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-mortar-checking-accounts\u002F","items":[]},{"name":"best-no-fee-checking-accounts","label":"Best No Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-no-fee-checking-accounts\u002F","items":[]},{"name":"no-overdraft-fee-checking-accounts-","label":"No Overdraft Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fchecking-accounts-with-no-overdraft-fees\u002F","items":[]},{"name":"best-checking-account-bonuses","label":"Best Checking Account Bonuses","host":"","path":"\u002Fselect\u002Fbest-checking-account-bonuses\u002F","items":[]},{"name":"best-money-market-accounts","label":"Best Money Market Accounts","host":"","path":"\u002Fselect\u002Fbest-money-market-accounts\u002F","items":[]},{"name":"best-cds","label":"Best CDs","host":"","path":"\u002Fselect\u002Fbest-certificates-of-deposits\u002F","items":[]},{"name":"best-credit-unions","label":"Best Credit Unions","host":"","path":"\u002Fselect\u002Fbest-credit-unions\u002F","items":[]}]},{"name":"mortgages","label":"Mortgages","host":"","path":"\u002Fselect\u002Fmortgages\u002F","items":[{"name":"best-mortgages","label":"Best Mortgages","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders\u002F","items":[]},{"name":"best-mortgages-for-small-down-payment","label":"Best Mortgages for Small Down Payment","host":"","path":"\u002Fselect\u002Fmortgage-lenders-for-a-small-down-payment\u002F","items":[]},{"name":"best-mortgages-for-no-down-payment","label":"Best Mortgages for No Down Payment","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-va-loans-usda-loans\u002F","items":[]},{"name":"best-mortgages-with-no-origination-fee","label":"Best Mortgages with No Origination Fee","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-that-dont-charge-origination-fees\u002F","items":[]},{"name":"best-mortgages-for-average-credit-score","label":"Best Mortgages for Average Credit Score","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-average-credit-score\u002F","items":[]},{"name":"adjustable-rate-mortgages","label":"Adjustable Rate Mortgages","host":"","path":"\u002Fselect\u002Fadjustable-rate-mortgage-pros-and-cons\u002F","items":[]},{"name":"affording-a-mortgage-","label":"Affording a Mortgage","host":"","path":"\u002Fselect\u002Fmortgage-affordability\u002F","items":[]}]},{"name":"insurance","label":"Insurance","host":"","path":"\u002Fselect\u002Finsurance\u002F","items":[{"name":"best-life-insurance-","label":"Best Life Insurance","host":"","path":"\u002Fselect\u002Fbest-life-insurance-companies\u002F","items":[]},{"name":"best-homeowners-insurance-","label":"Best Homeowners Insurance","host":"","path":"\u002Fselect\u002Fbest-homeowners-insurance-companies\u002F","items":[]},{"name":"best-renters-insurance-","label":"Best Renters Insurance","host":"","path":"\u002Fselect\u002Fbest-renters-insurance-companies\u002F","items":[]},{"name":"best-car-insurance-","label":"Best Car Insurance","host":"","path":"\u002Fselect\u002Fbest-car-insurance-companies\u002F","items":[]},{"name":"travel-insurance-","label":"Travel Insurance","host":"","path":"\u002Fselect\u002Ftravel-insurance-guide\u002F","items":[]}]},{"name":"credit-monitoring","label":"Credit Monitoring","host":"","path":"\u002Fselect\u002Fcredit-monitoring\u002F","items":[{"name":"best-credit-monitoring-services","label":"Best Credit Monitoring Services","host":"","path":"\u002Fselect\u002Fbest-credit-monitoring-services\u002F","items":[]},{"name":"best-identity-theft-protection","label":"Best Identity Theft Protection","host":"","path":"\u002Fselect\u002Fbest-identity-theft-protection-services\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]},{"name":"credit-repair-services","label":"Credit Repair Services","host":"","path":"\u002Fselect\u002Fhow-do-credit-repair-services-work\u002F","items":[]}]},{"name":"personal-finance","label":"Personal Finance","host":"","path":"\u002Fselect\u002Fpersonal-finance\u002F","items":[{"name":"best-budgeting-apps","label":"Best Budgeting Apps","host":"","path":"\u002Fselect\u002Fbest-budgeting-apps\u002F","items":[]},{"name":"best-expense-tracker-apps","label":"Best Expense Tracker Apps","host":"","path":"\u002Fselect\u002Fbest-expense-tracker-apps\u002F","items":[]},{"name":"best-money-transfer-apps","label":"Best Money Transfer Apps","host":"","path":"\u002Fselect\u002Fbest-money-transfer-payment-apps\u002F","items":[]},{"name":"best-resale-apps-and-sites","label":"Best Resale Apps and Sites","host":"","path":"\u002Fselect\u002Fbest-resale-apps-and-websites\u002F","items":[]},{"name":"buy-now-pay-later-(bnpl)-apps","label":"Buy Now Pay Later (BNPL) Apps","host":"","path":"\u002Fselect\u002Fbest-buy-now-pay-later-apps\u002F","items":[]},{"name":"best-debt-relief-","label":"Best Debt Relief","host":"","path":"\u002Fselect\u002Fbest-debt-relief-companies\u002F","items":[]}]},{"name":"small-business","label":"Small Business","host":"","path":"\u002Fselect\u002Fsmall-business\u002F","items":[{"name":"best-small-business-savings-accounts","label":"Best Small Business Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-small-business-savings-accounts\u002F","items":[]},{"name":"best-small-business-checking-accounts","label":"Best Small Business Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-business-checking-accounts\u002F","items":[]},{"name":"best-credit-cards-for-small-business","label":"Best Credit Cards for Small Business","host":"","path":"\u002Fselect\u002Fbest-small-business-credit-cards\u002F","items":[]},{"name":"best-small-business-loans","label":"Best Small Business Loans","host":"","path":"\u002Fselect\u002Fbest-small-business-loans\u002F","items":[]},{"name":"best-tax-software-for-small-business","label":"Best Tax Software for Small Business","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]}]},{"name":"taxes","label":"Taxes","host":"","path":"\u002Fselect\u002Ftaxes\u002F","items":[{"name":"filing-for-free","label":"Filing For Free","host":"","path":"\u002Fselect\u002Fhow-to-file-your-taxes-for-free\u002F","items":[]},{"name":"best-tax-software","label":"Best Tax Software","host":"","path":"\u002Fselect\u002Fbest-tax-software\u002F","items":[]},{"name":"best-tax-software-for-small-businesses","label":"Best Tax Software for Small Businesses","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]},{"name":"tax-refunds","label":"Tax Refunds","host":"","path":"\u002Fselect\u002Fhow-to-check-the-status-of-your-2020-tax-refund\u002F","items":[]},{"name":"tax-brackets","label":"Tax Brackets","host":"","path":"\u002Fselect\u002Ffederal-income-tax-brackets-tax-rates\u002F","items":[]},{"name":"tax-tips","label":"Tax Tips","host":"","path":"\u002Fselect\u002Fhow-to-reduce-taxable-income\u002F","items":[]},{"name":"tax-by-state","label":"Tax By State","host":"","path":"\u002Fselect\u002Fstates-with-no-income-tax\u002F","items":[]},{"name":"tax-payment-plans","label":"Tax Payment Plans","host":"","path":"\u002Fselect\u002Ftax-payment-plan-options\u002F","items":[]}]},{"name":"help-for-low-credit-scores","label":"Help for Low Credit Scores","host":"","path":"\u002Fselect\u002Flow-credit-scores\u002F","items":[{"name":"best-credit-cards-for-bad-credit","label":"Best Credit Cards for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-credit-cards-for-bad-credit\u002F","items":[]},{"name":"best-personal-loans-for-bad-credit","label":"Best Personal Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-personal-loans-for-bad-credit\u002F","items":[]},{"name":"best-debt-consolidation-loans-for-bad-credit","label":"Best Debt Consolidation Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans-for-bad-credit\u002F","items":[]},{"name":"personal-loans-if-you-don't-have-credit","label":"Personal Loans if You Don't Have Credit","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-to-consider-if-you-dont-have-credit-score\u002F","items":[]},{"name":"best-credit-cards-for-building-credit","label":"Best Credit Cards for Building Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]},{"name":"personal-loans-for-580-credit-score-or-lower","label":"Personal Loans for 580 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loans-to-apply-credit-score-580-or-lower\u002F","items":[]},{"name":"personal-loans-for-670-credit-score-or-lower","label":"Personal Loans for 670 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-credit-score-below-670\u002F","items":[]},{"name":"best-mortgages-for-bad-credit","label":"Best Mortgages for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-bad-credit-score\u002F","items":[]},{"name":"best-hardship-loans","label":"Best Hardship Loans","host":"","path":"\u002Fselect\u002Fbest-hardship-loans\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Fselect\u002Finvesting\u002F","items":[{"name":"best-ira-accounts","label":"Best IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-ira-accounts\u002F","items":[]},{"name":"best-roth-ira-accounts","label":"Best Roth IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-roth-ira-accounts\u002F","items":[]},{"name":"best-investing-apps","label":"Best Investing Apps","host":"","path":"\u002Fselect\u002Fbest-investing-apps\u002F","items":[]},{"name":"best-free-stock-trading-platforms","label":"Best Free Stock Trading Platforms","host":"","path":"\u002Fselect\u002Fbest-brokerage-free-stock-trading\u002F","items":[]},{"name":"best-robo-advisors","label":"Best Robo-Advisors","host":"","path":"\u002Fselect\u002Fbest-robo-advisors\u002F","items":[]},{"name":"index-funds","label":"Index Funds","host":"","path":"\u002Fselect\u002Fwhat-are-index-funds\u002F","items":[]},{"name":"mutual-funds","label":"Mutual Funds","host":"","path":"\u002Fselect\u002Fwhat-are-mutual-funds\u002F","items":[]},{"name":"etfs","label":"ETFs","host":"","path":"\u002Fselect\u002Fwhat-are-etfs-should-you-invest\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fselect\u002Fwhat-are-bonds\u002F","items":[]}]}]}]}}},"request":{"cookies":{"region":"WORLD"},"hostname":"web.cnbc.com","query":{},"headers":{"partner":"cnbc01"},"site":"cnbc","path":"\u002Fworld-top-news\u002F"},"quote":{},"sailthru":{"sailthruLoaded":false},"relatedVideos":{},"videoPlaceholders":{"activeVideoPlaceholderKey":null,"placeholders":{}},"marketSummary":{}}; window.__c_data={}; window.styles={"containers\u002FApp\u002Fstyles.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","articleBody":"App-articleBody","bodyText":"App-bodyText","listWrapper":"App-listWrapper","listTitle":"App-listTitle","contentWrapper":"App-contentWrapper","contentWrapperClock":"App-contentWrapperClock","containerClick":"App-containerClick","proContentRecommendation":"App-proContentRecommendation","makeit":"App-makeit","buttonContainer":"App-buttonContainer","buttonLink":"App-buttonLink"},"_style":undefined},"containers\u002FBrandPageWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","contentWrapper":"BrandPageWrapper-contentWrapper","xfinity":"BrandPageWrapper-xfinity","countDownClock":"BrandPageWrapper-countDownClock","fiveThings":"BrandPageWrapper-fiveThings","darkTheme":"BrandPageWrapper-darkTheme","newsAlert":"BrandPageWrapper-newsAlert","liveAlert":"BrandPageWrapper-liveAlert","liveAlertAd":"BrandPageWrapper-liveAlertAd","contentWrapperClock":"BrandPageWrapper-contentWrapperClock","mobileWebview":"BrandPageWrapper-mobileWebview"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002Fnav-menu\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","navMenuAllAccess":"nav-menu-navMenuAllAccess","navMenuPro":"nav-menu-navMenuPro","navMenuIC":"nav-menu-navMenuIC","navMenu":"nav-menu-navMenu","navMenuLoggedIn":"nav-menu-navMenuLoggedIn","navMenuSticky":"nav-menu-navMenuSticky nav-menu-navMenu","navMenuStickyAllAccess":"nav-menu-navMenuStickyAllAccess nav-menu-navMenu","navMenuStickyPro":"nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuStickyIC":"nav-menu-navMenuStickyIC nav-menu-navMenu","navMenuStickyLoggedIn":"nav-menu-navMenuStickyLoggedIn nav-menu-navMenu","navMenuArticle":"nav-menu-navMenuArticle nav-menu-navMenu","withOpenSearch":"nav-menu-withOpenSearch","subLinks":"nav-menu-subLinks","navMenuArticleSticky":"nav-menu-navMenuArticleSticky nav-menu-navMenuSticky nav-menu-navMenu","navMenuArticleStickyAllAccess":"nav-menu-navMenuArticleStickyAllAccess nav-menu-navMenuStickyAllAccess nav-menu-navMenu","navMenuArticleStickyOneAccess":"nav-menu-navMenuArticleStickyOneAccess nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuArticleStickyIC":"nav-menu-navMenuArticleStickyIC nav-menu-navMenuStickyIC nav-menu-navMenu","logoStickyContainer":"nav-menu-logoStickyContainer","buttonAllAccess":"nav-menu-buttonAllAccess","buttonText":"nav-menu-buttonText","subLink":"nav-menu-subLink","buttonPro":"nav-menu-buttonPro","buttonIC":"nav-menu-buttonIC","button":"nav-menu-button","hamburgerIC":"nav-menu-hamburgerIC nav-menu-button","hamburgerAllAccess":"nav-menu-hamburgerAllAccess nav-menu-button","hamburgerPro":"nav-menu-hamburgerPro nav-menu-button","hamburger":"nav-menu-hamburger nav-menu-button","articleHamburger":"nav-menu-articleHamburger nav-menu-hamburger nav-menu-button","articleHamburgerAllAccess":"nav-menu-articleHamburgerAllAccess nav-menu-hamburgerAllAccess nav-menu-button","articleHamburgerPro":"nav-menu-articleHamburgerPro nav-menu-hamburgerPro nav-menu-button","desktopHamburger":"nav-menu-desktopHamburger nav-menu-button","desktopHamburgerAllAccess":"nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerIC":"nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerPro":"nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerSticky":"nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerStickyAllAccess":"nav-menu-desktopHamburgerStickyAllAccess nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerStickyPro":"nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerStickyIC":"nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerArticleSticky":"nav-menu-desktopHamburgerArticleSticky nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerArticleStickyAllAccess":"nav-menu-desktopHamburgerArticleStickyAllAccess nav-menu-desktopHamburgerStickyAllAccess nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerArticleStickyOneAccess":"nav-menu-desktopHamburgerArticleStickyOneAccess nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerArticleStickyIC":"nav-menu-desktopHamburgerArticleStickyIC nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","articleButtonText":"nav-menu-articleButtonText nav-menu-buttonText","articleButtonTextAllAccess":"nav-menu-articleButtonTextAllAccess nav-menu-buttonText","articleButtonTextPro":"nav-menu-articleButtonTextPro nav-menu-buttonText","articleButtonTextIC":"nav-menu-articleButtonTextIC nav-menu-buttonText","logo":"nav-menu-logo","logoSticky":"nav-menu-logoSticky nav-menu-logo","logoStickyMobilePro":"nav-menu-logoStickyMobilePro nav-menu-logo","logoStickyMobileAllAccess":"nav-menu-logoStickyMobileAllAccess","logoStickyMobileIC":"nav-menu-logoStickyMobileIC","mainLinks":"nav-menu-mainLinks","mainLinksSticky":"nav-menu-mainLinksSticky nav-menu-mainLinks","mainLinksWrapper":"nav-menu-mainLinksWrapper","mainLinksWrapperStart":"nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper","articleMainWrapper":"nav-menu-articleMainWrapper","articleContent":"nav-menu-articleContent","articleTitle":"nav-menu-articleTitle","articleTitleWithoutShareComponent":"nav-menu-articleTitleWithoutShareComponent","articleSocial":"nav-menu-articleSocial","articleHidden":"nav-menu-articleHidden","navLinks":"nav-menu-navLinks","linksSticky":"nav-menu-linksSticky","articleNavLinks":"nav-menu-articleNavLinks","primaryLink":"nav-menu-primaryLink","active":"nav-menu-active","navUnderline":"nav-menu-navUnderline","navUnderlineAllAccess":"nav-menu-navUnderlineAllAccess","navUnderlineIC":"nav-menu-navUnderlineIC","navUnderlinePro":"nav-menu-navUnderlinePro","progressBarContainer":"nav-menu-progressBarContainer","logoContainer":"nav-menu-logoContainer","navDropdownWrap":"nav-menu-navDropdownWrap","subLinks-enter":"nav-menu-subLinks-enter","subLinks-enter-active":"nav-menu-subLinks-enter-active","proLockIcon":"nav-menu-proLockIcon","investingClubLockIcon":"nav-menu-investingClubLockIcon","proPillIcon":"nav-menu-proPillIcon","investingClubPillIcon":"nav-menu-investingClubPillIcon","berkshireWatchLive":"nav-menu-berkshireWatchLive","liveText":"nav-menu-liveText","pulse":"nav-menu-pulse","watchLive":"nav-menu-watchLive","showTitle":"nav-menu-showTitle","wrapperButton":"nav-menu-wrapperButton","signupBtnStickyNav":"nav-menu-signupBtnStickyNav","WatchLiveWithSignUpBtn":"nav-menu-WatchLiveWithSignUpBtn","menuPromotion":"nav-menu-menuPromotion","subMenuPromotion":"nav-menu-subMenuPromotion","menuPromotionNoLockIcon":"nav-menu-menuPromotionNoLockIcon"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002FSearchToggle\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","button":"SearchToggle-button","signinButton":"SearchToggle-signinButton","signinButtonBtn":"SearchToggle-signinButtonBtn","closeButtonText":"SearchToggle-closeButtonText","searchOpen":"SearchToggle-searchOpen","megaMenuSearchToggler":"SearchToggle-megaMenuSearchToggler","megaMenuSearchTogglerAllAccess":"SearchToggle-megaMenuSearchTogglerAllAccess","megaMenuSearchTogglerIC":"SearchToggle-megaMenuSearchTogglerIC","megaMenuSearchTogglerPro":"SearchToggle-megaMenuSearchTogglerPro","mega-menu":"SearchToggle-mega-menu","articleButton":"SearchToggle-articleButton","buttonSticky":"SearchToggle-buttonSticky SearchToggle-button","megaMenuButton":"SearchToggle-megaMenuButton","megaMenuButtonAllAccess":"SearchToggle-megaMenuButtonAllAccess","megaMenuButtonPro":"SearchToggle-megaMenuButtonPro","megaMenuButtonIC":"SearchToggle-megaMenuButtonIC"},"_style":undefined},"containers\u002FPageBuilder\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"PageBuilder-containerFluidWidths","containerWidth100":"PageBuilder-containerWidth100","page":"PageBuilder-page","pageGrid":"PageBuilder-pageGrid","pageWrapper":"PageBuilder-pageWrapper","pageRow":"PageBuilder-pageRow","pageRowFlex":"PageBuilder-pageRowFlex PageBuilder-pageRow","rowUnderAd":"PageBuilder-rowUnderAd PageBuilder-pageRow","rowWithBackground":"PageBuilder-rowWithBackground PageBuilder-pageRow","flipRowOrder":"PageBuilder-flipRowOrder PageBuilder-pageRow","col":"PageBuilder-col","col-3":"PageBuilder-col-3 PageBuilder-col","col-6":"PageBuilder-col-6 PageBuilder-col","col-9":"PageBuilder-col-9 PageBuilder-col","article":"PageBuilder-article","col-12":"PageBuilder-col-12 PageBuilder-col","col-full":"PageBuilder-col-full PageBuilder-col","clear-col-padding":"PageBuilder-clear-col-padding","paddedWrapper":"PageBuilder-paddedWrapper","hasBanner":"PageBuilder-hasBanner","sidebar":"PageBuilder-sidebar","sidebarLeft":"PageBuilder-sidebarLeft PageBuilder-sidebar","sidebarLeftNav":"PageBuilder-sidebarLeftNav","sidebarPro":"PageBuilder-sidebarPro"},"_style":undefined},"components\u002Fshared\u002FMps\u002FAdUnits\u002FSponsorLogo\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SponsorLogo-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FTopBanner\u002Fstyles.cnbc.scss":{"default":{"container":"TopBanner-container","berkshireEvent":"TopBanner-berkshireEvent"},"_style":undefined},"components\u002FPcmModule\u002FLatestNews\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","header":"LatestNews-header","item":"LatestNews-item","iconCleared":"LatestNews-iconCleared","container":"LatestNews-container","headline":"LatestNews-headline","videoIcon":"LatestNews-videoIcon","wrapper":"LatestNews-wrapper","timestamp":"LatestNews-timestamp","source":"LatestNews-source","proPill":"LatestNews-proPill","investingClubPill":"LatestNews-investingClubPill","watchLivePill":"LatestNews-watchLivePill","isHomePage":"LatestNews-isHomePage","hideGradient":"LatestNews-hideGradient","list":"LatestNews-list","headlineWrapper":"LatestNews-headlineWrapper","visitedIcon":"LatestNews-visitedIcon","buttonContainer":"LatestNews-buttonContainer","isIntlHomepage":"LatestNews-isIntlHomepage","noWatchLiveAbove":"LatestNews-noWatchLiveAbove","button":"LatestNews-button","newsTabButton":"LatestNews-newsTabButton","tradeAlertLabel":"LatestNews-tradeAlertLabel"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxInline\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxInline-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxRail\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxRail-container","container-right":"BoxRail-container-right","container-left":"BoxRail-container-left","adWrapperSticky":"BoxRail-adWrapperSticky","adWrapperStickyNewsAlert":"BoxRail-adWrapperStickyNewsAlert","ad":"BoxRail-ad"},"_style":undefined},"components\u002Fshared\u002FTable\u002FTableHeader\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TableHeader-container","title":"TableHeader-title","themeTitle":"TableHeader-themeTitle TableHeader-title","link":"TableHeader-link"},"_style":undefined},"components\u002Fshared\u002FTable\u002FBasicTable\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","basicTable":"BasicTable-basicTable","tableWrapper":"BasicTable-tableWrapper","portfolioTableWrapper":"BasicTable-portfolioTableWrapper","table":"BasicTable-table","tableHeadingSortable":"BasicTable-tableHeadingSortable","portfolioTd":"BasicTable-portfolioTd","portfolioHeader":"BasicTable-portfolioHeader","portfolioHeaderJustify":"BasicTable-portfolioHeaderJustify","watchlistTableHeaderJustify":"BasicTable-watchlistTableHeaderJustify","portfolioHeaderName":"BasicTable-portfolioHeaderName","portfolioHeaderSortIcon":"BasicTable-portfolioHeaderSortIcon","articleContainer":"BasicTable-articleContainer","tableHeading":"BasicTable-tableHeading","tableBody":"BasicTable-tableBody","container":"BasicTable-container","portfolioTableHeading":"BasicTable-portfolioTableHeading","portfolioHeaderTh":"BasicTable-portfolioHeaderTh","textData":"BasicTable-textData","numData":"BasicTable-numData","floatingTable":"BasicTable-floatingTable BasicTable-container","portfolioScroll":"BasicTable-portfolioScroll","scrollGradient":"BasicTable-scrollGradient","quoteGain":"BasicTable-quoteGain","quoteDecline":"BasicTable-quoteDecline","watchlistTableQuote":"BasicTable-watchlistTableQuote","changePositive":"BasicTable-changePositive","changeNegative":"BasicTable-changeNegative BasicTable-changePositive","symbol":"BasicTable-symbol","name":"BasicTable-name","unchanged":"BasicTable-unchanged BasicTable-numData","portfolioSummary":"BasicTable-portfolioSummary","portfolioSummaryPositive":"BasicTable-portfolioSummaryPositive","portfolioSummaryNegative":"BasicTable-portfolioSummaryNegative","symbolName":"BasicTable-symbolName","addWatchlist":"BasicTable-addWatchlist","desktopOnly":"BasicTable-desktopOnly","dropdownStyles":"BasicTable-dropdownStyles","dataRow":"BasicTable-dataRow","fairValueQuote":"BasicTable-fairValueQuote"},"_style":undefined},"components\u002Fshared\u002FCard\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","card":"Card-card","title":"Card-title","package":"Card-package","titleAndFooter":"Card-titleAndFooter","rectangleToLeftSquareMedia":"Card-rectangleToLeftSquareMedia Card-card","leftSquareMedia":"Card-leftSquareMedia Card-card","mediaContainer":"Card-mediaContainer","textContent":"Card-textContent","aboveImageTitle":"Card-aboveImageTitle","mediaContainerPackage":"Card-mediaContainerPackage","squareMediaContainer":"Card-squareMediaContainer","rectangleMediaContainer":"Card-rectangleMediaContainer","imageGradient":"Card-imageGradient","videoFooter":"Card-videoFooter","videoFooterContent":"Card-videoFooterContent","videoLabel":"Card-videoLabel","videoTime":"Card-videoTime Card-videoLabel","totalTime":"Card-totalTime Card-videoTime Card-videoLabel","byline":"Card-byline","threeUpCardFooterStyle":"Card-threeUpCardFooterStyle","threeUpBylineStyle":"Card-threeUpBylineStyle","bylinePackage":"Card-bylinePackage Card-byline","time":"Card-time","timePackage":"Card-timePackage Card-time","sponsoredLogo":"Card-sponsoredLogo","packageTitle":"Card-packageTitle","live":"Card-live","titleOnly":"Card-titleOnly Card-card","pro":"Card-pro","titleOnlyUltraDense":"Card-titleOnlyUltraDense Card-card","titleOnlyImageDense":"Card-titleOnlyImageDense Card-titleOnly Card-card","titleOnlyPackage":"Card-titleOnlyPackage Card-titleOnly Card-card Card-package","titleOnlyTopBorder":"Card-titleOnlyTopBorder Card-titleOnly Card-card","titleOnlyNoBorder":"Card-titleOnlyNoBorder Card-titleOnly Card-card","titleOnlyTopSolidBorder":"Card-titleOnlyTopSolidBorder Card-titleOnly Card-card","titleOnlyHalf":"Card-titleOnlyHalf Card-titleOnly Card-card","titleOnlyHalfPackage":"Card-titleOnlyHalfPackage Card-titleOnlyHalf Card-titleOnly Card-card Card-package","titleByline":"Card-titleByline Card-card","titleBylinePackage":"Card-titleBylinePackage Card-titleByline Card-card Card-package","titleBylineNoBorder":"Card-titleBylineNoBorder Card-card","titleBylineRight":"Card-titleBylineRight Card-card","largeTitleByline":"Card-largeTitleByline Card-card","proPill":"Card-proPill","watchLivePill":"Card-watchLivePill","investingClubPill":"Card-investingClubPill","titleBylineHalf":"Card-titleBylineHalf Card-card","featuredRectangleMedia":"Card-featuredRectangleMedia Card-card","imageContainer":"Card-imageContainer","specialReportsRiver":"Card-specialReportsRiver Card-card","cardFooter":"Card-cardFooter","bylineContainer":"Card-bylineContainer","bylineDivider":"Card-bylineDivider","titleContainer":"Card-titleContainer","featuredRectangleMediaImagedense":"Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card","featuredRectangleMediaPackage":"Card-featuredRectangleMediaPackage Card-featuredRectangleMedia Card-card Card-package","featuredSecondaryRectangleMedia":"Card-featuredSecondaryRectangleMedia Card-card","featuredSecondaryRectangleMediaPackage":"Card-featuredSecondaryRectangleMediaPackage Card-featuredSecondaryRectangleMedia Card-card Card-package","rectangleMedia":"Card-rectangleMedia Card-card","standardBreakerCard":"Card-standardBreakerCard","rectangleMediaUltraDense":"Card-rectangleMediaUltraDense Card-rectangleMedia Card-card","bylinePosition":"Card-bylinePosition","rectangleMediaPackage":"Card-rectangleMediaPackage Card-rectangleMedia Card-card Card-package","rectangleMediaHalf":"Card-rectangleMediaHalf Card-card","rectangleMediaHalfNoBorder":"Card-rectangleMediaHalfNoBorder Card-card","leftRectangleToTopMedia":"Card-leftRectangleToTopMedia Card-card","rectangleToRectangleMediaHalf":"Card-rectangleToRectangleMediaHalf Card-card","recToRecMediaHalf":"Card-recToRecMediaHalf Card-card","squareMedia":"Card-squareMedia Card-card","squareMediaImageDense":"Card-squareMediaImageDense Card-squareMedia Card-card","rectangleToLeftSquareMediaUltraDense":"Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card","mediaContainerInner":"Card-mediaContainerInner","featuredSquareToRectangleMedia":"Card-featuredSquareToRectangleMedia Card-card","squareLeadMediaLeft":"Card-squareLeadMediaLeft Card-card","featuredRectangleToRectangleMedia":"Card-featuredRectangleToRectangleMedia Card-featuredSquareToRectangleMedia Card-card","squareToRectangleMediaPackage":"Card-squareToRectangleMediaPackage Card-card Card-package","placeholder":"Card-placeholder","eyebrow":"Card-eyebrow","eyebrowContainer":"Card-eyebrowContainer","titleOnlyFourUp":"Card-titleOnlyFourUp Card-titleOnly Card-card","cnbcvideo":"Card-cnbcvideo","webresource":"Card-webresource","proSmall":"Card-proSmall","proIcon":"Card-proIcon","threeUpStackRectangleSquareMedia":"Card-threeUpStackRectangleSquareMedia Card-rectangleToLeftSquareMedia Card-card","description":"Card-description","threeUpRectangleSquareMediaDescription":"Card-threeUpRectangleSquareMediaDescription Card-rectangleToLeftSquareMedia Card-card","titleOnlyThreeUpStack":"Card-titleOnlyThreeUpStack Card-titleOnly Card-card","titleOnlyThreeUpStackLast":"Card-titleOnlyThreeUpStackLast Card-titleOnlyThreeUpStack Card-titleOnly Card-card","videoIcon":"Card-videoIcon","aboveImageContent":"Card-aboveImageContent","specialReportTimestamp":"Card-specialReportTimestamp"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FMidResponsive\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","midResponsiveContainer":"MidResponsive-midResponsiveContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TrendingNowBreaker-containerFluidWidths","containerWidth100":"TrendingNowBreaker-containerWidth100","page":"TrendingNowBreaker-page","pageGrid":"TrendingNowBreaker-pageGrid","pageWrapper":"TrendingNowBreaker-pageWrapper","pageRow":"TrendingNowBreaker-pageRow","pageRowFlex":"TrendingNowBreaker-pageRowFlex TrendingNowBreaker-pageRow","rowUnderAd":"TrendingNowBreaker-rowUnderAd TrendingNowBreaker-pageRow","rowWithBackground":"TrendingNowBreaker-rowWithBackground TrendingNowBreaker-pageRow","flipRowOrder":"TrendingNowBreaker-flipRowOrder TrendingNowBreaker-pageRow","col":"TrendingNowBreaker-col","col-3":"TrendingNowBreaker-col-3 TrendingNowBreaker-col","col-6":"TrendingNowBreaker-col-6 TrendingNowBreaker-col","col-9":"TrendingNowBreaker-col-9 TrendingNowBreaker-col","article":"TrendingNowBreaker-article","col-12":"TrendingNowBreaker-col-12 TrendingNowBreaker-col","col-full":"TrendingNowBreaker-col-full TrendingNowBreaker-col","clear-col-padding":"TrendingNowBreaker-clear-col-padding","paddedWrapper":"TrendingNowBreaker-paddedWrapper","hasBanner":"TrendingNowBreaker-hasBanner","sidebar":"TrendingNowBreaker-sidebar","sidebarLeft":"TrendingNowBreaker-sidebarLeft TrendingNowBreaker-sidebar","sidebarLeftNav":"TrendingNowBreaker-sidebarLeftNav","sidebarPro":"TrendingNowBreaker-sidebarPro"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TrendingNow-container","heading":"TrendingNow-heading","storyContainer":"TrendingNow-storyContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002FTrendingNowItem\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","linkWrap":"TrendingNowItem-linkWrap","title":"TrendingNowItem-title","number":"TrendingNowItem-number","storyItem":"TrendingNowItem-storyItem"},"_style":undefined},"components\u002FPcmModule\u002FTwoColumnImageDense\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TwoColumnImageDense-containerFluidWidths","containerWidth100":"TwoColumnImageDense-containerWidth100","page":"TwoColumnImageDense-page","pageGrid":"TwoColumnImageDense-pageGrid","pageWrapper":"TwoColumnImageDense-pageWrapper","pageRow":"TwoColumnImageDense-pageRow","pageRowFlex":"TwoColumnImageDense-pageRowFlex TwoColumnImageDense-pageRow","rowUnderAd":"TwoColumnImageDense-rowUnderAd TwoColumnImageDense-pageRow","rowWithBackground":"TwoColumnImageDense-rowWithBackground TwoColumnImageDense-pageRow","flipRowOrder":"TwoColumnImageDense-flipRowOrder TwoColumnImageDense-pageRow","col":"TwoColumnImageDense-col","col-3":"TwoColumnImageDense-col-3 TwoColumnImageDense-col","col-6":"TwoColumnImageDense-col-6 TwoColumnImageDense-col","col-9":"TwoColumnImageDense-col-9 TwoColumnImageDense-col","article":"TwoColumnImageDense-article","col-12":"TwoColumnImageDense-col-12 TwoColumnImageDense-col","col-full":"TwoColumnImageDense-col-full TwoColumnImageDense-col","clear-col-padding":"TwoColumnImageDense-clear-col-padding","paddedWrapper":"TwoColumnImageDense-paddedWrapper","hasBanner":"TwoColumnImageDense-hasBanner","sidebar":"TwoColumnImageDense-sidebar","sidebarLeft":"TwoColumnImageDense-sidebarLeft TwoColumnImageDense-sidebar","sidebarLeftNav":"TwoColumnImageDense-sidebarLeftNav","sidebarPro":"TwoColumnImageDense-sidebarPro","imageDense":"TwoColumnImageDense-imageDense"},"_style":undefined},"components\u002Fshared\u002FSectionWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SectionWrapper-container","twoThirds":"SectionWrapper-twoThirds SectionWrapper-container","header":"SectionWrapper-header","decoration":"SectionWrapper-decoration","title":"SectionWrapper-title","titleImage":"SectionWrapper-titleImage","sponsorIcon":"SectionWrapper-sponsorIcon","link":"SectionWrapper-link","content":"SectionWrapper-content","latestContent":"SectionWrapper-latestContent","latestNews":"SectionWrapper-latestNews"},"_style":undefined},"components\u002FColumn\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","cardRow":"Column-cardRow","dualLeadLeft":"Column-dualLeadLeft","dualLeadLeftPackage":"Column-dualLeadLeftPackage","dualLeadRight":"Column-dualLeadRight","dualLeadRightPackage":"Column-dualLeadRightPackage","dynamicContentLeft":"Column-dynamicContentLeft","dynamicContentRight":"Column-dynamicContentRight","singleLeadLeft":"Column-singleLeadLeft","imageDenseModRight":"Column-imageDenseModRight","featuredRectangleMedia":"Column-featuredRectangleMedia","singleLeadLeftPackage":"Column-singleLeadLeftPackage","singleLeadRight":"Column-singleLeadRight","imageDenseModLeft":"Column-imageDenseModLeft","standardBreakerCard":"Column-standardBreakerCard","squareMedia":"Column-squareMedia","card":"Column-card","singleLeadRightPackage":"Column-singleLeadRightPackage","miniHeroLeft":"Column-miniHeroLeft","miniHeroRight":"Column-miniHeroRight","squareLeadLeft":"Column-squareLeadLeft","squareImageDenseLeft":"Column-squareImageDenseLeft","rectangleLeadLeft":"Column-rectangleLeadLeft Column-squareLeadLeft","squareLeadLeftPackage":"Column-squareLeadLeftPackage","squareLeadRight":"Column-squareLeadRight","squareImageDenseRight":"Column-squareImageDenseRight","rectangleLeadRight":"Column-rectangleLeadRight Column-squareLeadRight","squareLeadRightPackage":"Column-squareLeadRightPackage","threeUpUltraDense":"Column-threeUpUltraDense","threeUp":"Column-threeUp","dense":"Column-dense","fourUp":"Column-fourUp","threeUpStack":"Column-threeUpStack","twoUp":"Column-twoUp","imageDenseLeft":"Column-imageDenseLeft","imageDenseRight":"Column-imageDenseRight","dynamicContentMobile":"Column-dynamicContentMobile","oneImageDense":"Column-oneImageDense","flexibleLabel":"Column-flexibleLabel","topBorder":"Column-topBorder","topMargin":"Column-topMargin","videoFeatured":"Column-videoFeatured"},"_style":undefined},"components\u002Fshared\u002FPlayButton\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"PlayButton-container","base":"PlayButton-base","featured":"PlayButton-featured PlayButton-base","featuredMediaPlaybutton":"PlayButton-featuredMediaPlaybutton","icon":"PlayButton-icon","flyout":"PlayButton-flyout","suppressFlyout":"PlayButton-suppressFlyout","hover":"PlayButton-hover","iconHover":"PlayButton-iconHover","playlistWrapper":"PlayButton-playlistWrapper","playlist":"PlayButton-playlist","featuredPlaylist":"PlayButton-featuredPlaylist PlayButton-playlist","sizeVariationOne":"PlayButton-sizeVariationOne","sizeVariationFive":"PlayButton-sizeVariationFive","smallVersion":"PlayButton-smallVersion"},"_style":undefined}}; window.__ff_data={"1w23e432we34rtrefallback":false,"3gswv8f8":false,"3s9ma3n1":false,"4rj3orcxu":true,"ALL_ACCESS":true,"EMBEDDED_CHARTS_REFRESH":false,"FEATURE_FLAG_BACKUP_STREAM":false,"FEATURE_FLAG_ENABLE_BREAKING_NEWS_SPONSOR":false,"FEATURE_FLAG_ENABLE_CNBC_PLUS":false,"FEATURE_FLAG_ENABLE_DATA_STREAM":false,"FEATURE_FLAG_ENABLE_GLOBAL_STREAM":false,"FEATURE_FLAG_ENABLE_SR_AND_BD_LARGE_HEADER":false,"FEATURE_FLAG_MARKETS_BANNER":true,"FEATURE_FLAG_MENU_PROMOTION":{},"FEATURE_FLAG_PORTFOLIO":false,"FEATURE_FLAG_RELEASE_PRO_DAI":false,"FEATURE_FLAG_SET_LDJSON_CREATED_DATE_TO_UPDATED_DATE":{"evergreen":[107083232,107372396,107369267]},"FEATURE_FLAG_SET_STRUCTURED_DATA_CREATED_DATE_TO_UPDATED_DATE":false,"FEATURE_FLAG_SHOW_NEW_STOCK_SCREENER":false,"FEATURE_FLAG_SIDE_DRAWER":true,"FEATURE_FLAG_SS_URL":true,"FEATURE_FLAG_STOCK_SCREENER":true,"FEATURE_FLAG_STOCK_SCREENER_ATTR_PROMO":{},"FEATURE_FLAG_STOCK_SCREENER_LINKS":true,"FEATURE_FLAG_STOCK_SCREENER_SAVE":true,"FEATURE_FLAG_WATCHLIST_NOTIFICATIONS":false,"GATED_ARTICLE_PASS_REFERRER":true,"LIVE_ALERTS_BANNER_AD":false,"MARKET_MOVERS_QUOTE_DROPDOWN":true,"MOST_ACTIVE_UNUSUAL_VOLUME_QUOTE_DROPDOWN":true,"STOCK_SCREENER_FILTER_CONFIG":"","TIPRANKS_ANALYST_FORECAST":true,"TIPRANKS_ANALYST_FORECAST_QUOTE":true,"TUNE_IN_TEXT_STRUCTURED":true,"ajs283so32":true,"b9t8er7t":false,"bionicflag1234":false,"coreVideo":"\u002FNimSmuMOlcc1shKlcyjhFglzgkIpuYb5\u002FipCmVvA\u002FenHvedfO+Wjp9HW4W\u002F9Uj1","credit-card-ratings-display":false,"crfaccOnArt":true,"d1qp45cb":true,"e9vq3e7c":true,"enable-livetv-autoplay":true,"esn1c5ma":true,"f3t2ngps":false,"g1pcp62":true,"gwthaaliga":false,"hfdas89":true,"ic1mp2tcd3":true,"j9dpb393":false,"jrxcxwx":true,"most-popular-query-ids-by-vertical":{"news":"nccl00011223344","today":"tdcl00055667799","msnbc":"nccl00088112233"},"new-watchlist-landing-page":true,"qssltb.123":true,"quoteModuleCreateAccount":true,"s7dfahu9":true,"signBtnArtColl":true,"signupBtn.1":false,"signupBtnG":false,"test-json":{},"test-ops":false,"use-core-video":true,"xbzkxvk":true,"$flagsState":{"1w23e432we34rtrefallback":{"version":3,"variation":1},"3gswv8f8":{"version":4,"variation":1},"3s9ma3n1":{"version":4,"variation":1},"4rj3orcxu":{"version":3,"variation":0},"ALL_ACCESS":{"version":3,"variation":0},"EMBEDDED_CHARTS_REFRESH":{"version":2,"variation":1},"FEATURE_FLAG_BACKUP_STREAM":{"version":4,"variation":1},"FEATURE_FLAG_ENABLE_BREAKING_NEWS_SPONSOR":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_CNBC_PLUS":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_DATA_STREAM":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_GLOBAL_STREAM":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_SR_AND_BD_LARGE_HEADER":{"version":2,"variation":1},"FEATURE_FLAG_MARKETS_BANNER":{"version":5,"variation":0},"FEATURE_FLAG_MENU_PROMOTION":{"version":20,"variation":1},"FEATURE_FLAG_PORTFOLIO":{"version":3,"variation":1},"FEATURE_FLAG_RELEASE_PRO_DAI":{"version":2,"variation":1},"FEATURE_FLAG_SET_LDJSON_CREATED_DATE_TO_UPDATED_DATE":{"version":18,"variation":0},"FEATURE_FLAG_SET_STRUCTURED_DATA_CREATED_DATE_TO_UPDATED_DATE":{"version":2,"variation":1},"FEATURE_FLAG_SHOW_NEW_STOCK_SCREENER":{"version":6,"variation":1},"FEATURE_FLAG_SIDE_DRAWER":{"version":5,"variation":0},"FEATURE_FLAG_SS_URL":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER_ATTR_PROMO":{"version":5,"variation":1},"FEATURE_FLAG_STOCK_SCREENER_LINKS":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER_SAVE":{"version":3,"variation":0},"FEATURE_FLAG_WATCHLIST_NOTIFICATIONS":{"version":2,"variation":1},"GATED_ARTICLE_PASS_REFERRER":{"version":5,"variation":0},"LIVE_ALERTS_BANNER_AD":{"version":2,"variation":1},"MARKET_MOVERS_QUOTE_DROPDOWN":{"version":3,"variation":0},"MOST_ACTIVE_UNUSUAL_VOLUME_QUOTE_DROPDOWN":{"version":3,"variation":0},"STOCK_SCREENER_FILTER_CONFIG":{"version":3,"variation":1},"TIPRANKS_ANALYST_FORECAST":{"version":3,"variation":0},"TIPRANKS_ANALYST_FORECAST_QUOTE":{"version":3,"variation":0},"TUNE_IN_TEXT_STRUCTURED":{"version":3,"variation":0},"ajs283so32":{"version":8,"variation":0},"b9t8er7t":{"version":5,"variation":1},"bionicflag1234":{"version":2,"variation":1},"coreVideo":{"version":6,"variation":0},"credit-card-ratings-display":{"version":2,"variation":1},"crfaccOnArt":{"version":3,"variation":0},"d1qp45cb":{"version":3,"variation":0},"e9vq3e7c":{"version":3,"variation":0},"enable-livetv-autoplay":{"version":3,"variation":0},"esn1c5ma":{"version":3,"variation":0},"f3t2ngps":{"version":2,"variation":1},"g1pcp62":{"version":3,"variation":0},"gwthaaliga":{"version":2,"variation":1},"hfdas89":{"version":3,"variation":0},"ic1mp2tcd3":{"version":3,"variation":0},"j9dpb393":{"version":8,"variation":1},"jrxcxwx":{"version":3,"variation":0},"most-popular-query-ids-by-vertical":{"version":2,"variation":0},"new-watchlist-landing-page":{"version":3,"variation":0},"qssltb.123":{"version":6,"variation":0},"quoteModuleCreateAccount":{"version":3,"variation":0},"s7dfahu9":{"version":4,"variation":0},"signBtnArtColl":{"version":3,"variation":0},"signupBtn.1":{"version":2,"variation":1},"signupBtnG":{"version":4,"variation":1},"test-json":{"version":5,"variation":1},"test-ops":{"version":2,"variation":1},"use-core-video":{"version":3,"variation":0},"xbzkxvk":{"version":4,"variation":0}},"$valid":true}; window.PARSELY={"video":{"autotrack":false}};
</script>
<script charset="UTF-8">
var onLoadScripts = [{"text":"var __CNBC_META_DATA={\"layout\":[],\"aboutThisSection\":null,\"additionalMetadata\":null,\"additionalSectionContentFormatted\":\"NA\",\"additionalSectionContentFormattedFull\":\"NA\",\"authorFormatted\":\"NA\",\"authorFormattedFull\":\"NA\",\"brand\":\"cnbc\",\"color\":null,\"contentClassification\":[],\"cmsTemplate\":\"Topic Template\",\"creatorOverwrite\":null,\"creatorOverwriteFormatted\":\"NA\",\"dateFirstPublished\":\"2013-05-10T14:41:50+0000\",\"dateLastPublished\":\"2024-06-16T13:41:55+0000\",\"datePublished\":\"2016-09-27T13:00:09+0000\",\"description\":\"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.\",\"expires\":null,\"headline\":\"World News & Analysis\",\"id\":100727362,\"liveURL\":\"\u002Fworld-top-news\u002F\",\"native\":false,\"pageName\":\"100727362|world-top-news\",\"premium\":false,\"projectContentFormatted\":\"NA\",\"projectContentFormattedFull\":\"NA\",\"projectTeamContentFormatted\":\"cnbc europe tea|cnbc asia team\",\"projectTeamContentFormattedFull\":\"cnbc europe team|cnbc asia team\",\"relatedTagsFilteredFormatted\":\"cnbc meets|charting asia\",\"relatedTagsFilteredFormattedFull\":\"cnbc meets|charting asia\",\"sectionHierarchyFormatted\":\"international t\",\"sectionHierarchyFormattedFull\":\"international top news and analysis\",\"seoTitle\":\"International Business, World News & Global Stock Market Analysis\",\"shortDateFirstPublished\":\"05\u002F10\u002F2013\",\"shortDateLastPublished\":\"06\u002F16\u002F2024\",\"shortDatePublished\":\"9\u002F27\u002F2016\",\"shortenedUrls\":null,\"slug\":\"International: Top News and Analysis\",\"sourceOrganizationFormatted\":\"NA\",\"sourceOrganizationFormattedFull\":\"NA\",\"subDomain\":\"https:\u002F\u002Fwww.cnbc.com\",\"subType\":\"section\",\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"template\":\"Home Page International\",\"title\":\"International: Top News And Analysis\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F\",\"canonicalUrlOverride\":null,\"vcpsId\":null,\"additionalSectionContent\":[],\"author\":[],\"featuredMedia\":null,\"projectContent\":[],\"projectTeamContent\":[{\"headline\":null,\"id\":100002778,\"tagName\":\"CNBC Europe Team\",\"tagNameFormatted\":\"cnbc europe tea\",\"tagNameFormattedFull\":\"cnbc europe team\",\"__typename\":\"team\"},{\"headline\":null,\"id\":100002784,\"tagName\":\"CNBC Asia Team\",\"tagNameFormatted\":\"cnbc asia team\",\"tagNameFormattedFull\":\"cnbc asia team\",\"__typename\":\"team\"}],\"promoImage\":null,\"publisher\":{\"logo\":\"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png\",\"name\":\"CNBC\",\"__typename\":\"publisher\"},\"relatedContent\":[{\"headline\":\"U.S. News\",\"id\":15837362,\"tagName\":\"US: News\",\"tagNameFormatted\":\"us news\",\"tagNameFormattedFull\":\"us news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Asia-Pacific News\",\"id\":19832390,\"tagName\":\"Asia News\",\"tagNameFormatted\":\"asia news\",\"tagNameFormattedFull\":\"asia news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Europe News\",\"id\":19794221,\"tagName\":\"Europe News\",\"tagNameFormatted\":\"europe news\",\"tagNameFormattedFull\":\"europe news\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"relatedTags\":[{\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"__typename\":\"tag\"},{\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"__typename\":\"tag\"}],\"relatedTagsFiltered\":[{\"headline\":\"CNBC Meets\",\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"tagNameFormatted\":\"cnbc meets\",\"tagNameFormattedFull\":\"cnbc meets\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Charting Asia with Daryl Guppy\",\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"tagNameFormatted\":\"charting asia\",\"tagNameFormattedFull\":\"charting asia\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"section\":{\"eyebrow\":\"CNBC Utilities Page\",\"headline\":\"CNBC Utilities Page\",\"id\":101050794,\"subType\":\"section\",\"tagName\":\"CNBC Utilities Page\",\"tagNameFormatted\":\"cnbc utilities \",\"tagNameFormattedFull\":\"cnbc utilities page\",\"title\":\"CNBC Utilities Page\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F\",\"__typename\":\"franchise\"},\"sectionHierarchy\":[{\"id\":100727362,\"order\":1,\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"__typename\":\"sectionHierarchy\"}],\"sourceOrganization\":null,\"__typename\":\"page\",\"queryParams\":{}};var mpscall = {\"id\":100727362,\"slug\":\"International: Top News and Analysis\",\"type\":\"franchise\",\"title\":\"International: Top News And Analysis\",\"headline\":\"World News & Analysis\",\"pubdate\":1368196910,\"cat\":\"International: Top News And Analysis\",\"adunits\":\"Top Banner|Box Rail|Box Inline|Logo|Mid Responsive|Countdown Clock|Sponsor Logo|Native Ultra Dense|Native Three Up|Native Ticker|Box Search\",\"dateline\":1474981209,\"nid\":100727362,\"site\":\"cnbc-web\",\"content_id\":100727362,\"path\":\"\u002Fid\u002F100727362\",\"cag[template]\":\"Home Page International\",\"is_sponsored\":0,\"is_premium\":0,\"cag[source]\":\"\",\"cag[brand]\":\"cnbc\",\"cag[creator]\":\"\",\"cag[company]\":\"\",\"cag[team]\":\"CNBC Europe Team|CNBC Asia Team\",\"cag[section]\":\"International: Top News And Analysis\",\"cag[tags]\":\"CNBC Meets|Charting Asia\",\"cag[additional_sections]\":\"\",\"subtype\":\"section\",\"cag[datePublished]\":1474981209,\"cag[dateLastPublished]\":1718545315,\"cag[dateFirstPublished]\":1368196910,\"cag[creator_overwrite]\":null,\"cag[project]\":\"\"} || {};mpscall.path = mpscall.path || window.location.pathname + (window.location.search ? '?' + window.location.search : ''); var mpsopts = mpsopts || {\"host\":\"mps.cnbc.com\",\"updatecorrelator\":true,\"callback\":\"mpsCallback\"} || {};var mps=mps||{};mps._ext=mps._ext||{};mps._adsheld=[];mps._queue=mps._queue||{};mps._queue.mpsloaded=mps._queue.mpsloaded||[];mps._queue.mpsinit=mps._queue.mpsinit||[];mps._queue.gptloaded=mps._queue.gptloaded||[];mps._queue.adload=mps._queue.adload||[];mps._queue.adclone=mps._queue.adclone||[];mps._queue.adview=mps._queue.adview||[];mps._queue.refreshads=mps._queue.refreshads||[];mps.__timer=Date.now?Date.now():(function(){return+new Date})();mps.__intcode=\"v2\";if(typeof mps.getAd!=\"function\")mps.getAd=function(adunit){if(typeof adunit!=\"string\")return false;var slotid=\"mps-getad-\"+adunit.replace(\u002FW\u002Fg,\"\");if(!mps._ext||!mps._ext.loaded){mps._queue.gptloaded.push(function(){typeof mps._gptfirst==\"function\"&&mps._gptfirst(adunit,slotid);mps.insertAd(\"#\"+slotid,adunit)});mps._adsheld.push(adunit)}return'\u003Cdiv id=\"'+slotid+'\" class=\"mps-wrapper\" data-mps-fill-slot=\"'+adunit+'\"\u003E\u003C\u002Fdiv\u003E'};(function(){head=document.head||document.getElementsByTagName(\"head\")[0],mpsload=document.createElement(\"script\");mpsload.src=\"\u002F\u002F\"+mpsopts.host+\"\u002Ffetch\u002Fext\u002Fload-\"+mpscall.site+\".js?nowrite=2\";mpsload.id=\"mps-load\";head.insertBefore(mpsload,head.firstChild)})();"}].concat([{"id":"__LOADABLE_REQUIRED_CHUNKS__","dangerouslySetInnerHTML":{"__html":"[54711,39232,22143,98051,32427,12497,93855,60424,98132,23787,31018,46961,74134,84851,84502,14984,79386,15641,49181,10472,12532,33082,79815,56646,32243,5519,7486,41741,3182]"},"type":"application\u002Fjson","text":"[54711,39232,22143,98051,32427,12497,93855,60424,98132,23787,31018,46961,74134,84851,84502,14984,79386,15641,49181,10472,12532,33082,79815,56646,32243,5519,7486,41741,3182]"},{"id":"__LOADABLE_REQUIRED_CHUNKS___ext","dangerouslySetInnerHTML":{"__html":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-EventSignUpHP\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},"type":"application\u002Fjson","text":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-EventSignUpHP\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},{"async":true,"data-chunk":"main","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fmain-09b41d63009d1df9de02.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F54711-074183786c75107fe881.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F39232-441ed94f5c408157935b.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F22143-4818d858ea3753e6d62d.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F98051-4cf79fb82e574840589d.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002FCNBCGlobalNav-0327cba46e3c76791d57.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsBanner","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsBanner-8ed25baeb6bd97bfe29c.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-TopBanner","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-TopBanner-49cafaed04d8f2398a82.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuickLinks","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuickLinks-2105370d4aff6d8063f7.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-LegacyPlayerContainer","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-LegacyPlayerContainer-8e123518274866fdf5ef.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-FeaturedNewsHero","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-FeaturedNewsHero-7a16c1bd13899f7b51fb.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-EventSignUpHP","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-EventSignUpHP-80d51d1998ae50700902.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuoteFinder","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuoteFinder-91f558be1c0d6d72632a.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketMoversPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketMoversPlus-d67df7da8a9c21a664f8.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-RiverPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-RiverPlus-4a85afc7a4d15085eba2.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-BoxRail","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-BoxRail-52538b38237c85bdf9b8.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F14984-9e2722daee66a458e141.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsModule-7bb8108fdf6a537fa441.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F15641-0b2544545cd713227ada.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F49181-d643991cc2ce39c692a4.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-MidResponsive","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-MidResponsive-bc87b053dac023714862.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F12532-2f3f00a9d7512f1ebaea.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F33082-851f19e555aa4c73f6e0.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F79815-e0a482865780a80174e3.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Column-89937bf3c6ef23714ff2.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-VideoBreakerFeatured-405ec7989789a41a2745.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Breakers-FeaturedBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Breakers-FeaturedBreaker-4cec6d8733513e8d5480.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TrendingNowBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TrendingNowBreaker-9b38e6c3595fb43e51e3.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TwoColumnImageDense","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TwoColumnImageDense-2f2518773b98d3b24ae6.js","text":undefined},{"async":true,"data-chunk":"components-Footer-CNBCFooter","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Footer-CNBCFooter-87ebd0091b97e0929d32.js","text":undefined}]);
if (window.addEventListener) window.addEventListener('load', loadScripts, false);
else if (window.attachEvent) window.attachEvent('onload', loadScripts);
function loadScripts() {
(onLoadScripts || []).map(function(onLoadScript) {
var script = document.createElement('script');
Object.keys(onLoadScript).map(function(key) {
const value = onLoadScript[key];
if (key.includes('data-')) script.setAttribute(key, value);
else script[key] = value;
});
document.body.appendChild(script);
});
}
</script>
<script src="https://zephr-templates.cnbc.com/integration.js" type="text/javascript">
</script>
<link href="https://zephr-templates.cnbc.com/integration.css" rel="stylesheet" type="text/css"/>
<div id="zephr-outcome">
</div>
</body>
</html>
In [67]:
headings=soup.find_all('h2', class_='FeaturedCard-packagedCardTitle')
headings
Out[67]:
[<h2 class="FeaturedCard-packagedCardTitle"><a href="https://www.cnbc.com/2024/06/16/advisors-wary-of-bitcoin-etfs-are-on-slow-adoption-journey-says-blackrock-exec.html" title="Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec">Advisors ‘wary’ of bitcoin ETFs are on a slow adoption journey, says BlackRock exec</a></h2>]
In [72]:
import requests
from bs4 import BeautifulSoup
r=requests.get('https://www.keaipublishing.com/en/journals/artificial-intelligence-in-agriculture/most-downloadedarticles/', headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36'})
print(r)
<Response [404]>
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]: